From 9888f4cd98f1a401cd5cdb29490b99173cc28045 Mon Sep 17 00:00:00 2001 From: Caleb White Date: Tue, 5 Dec 2023 19:27:55 -0600 Subject: [PATCH 1/2] Fix comment --- corpus/comment.txt | 3 +- corpus/conflicts.txt | 12 +- grammar.js | 3 +- src/grammar.json | 41 +- src/node-types.json | 27 +- src/parser.c | 261175 ++++++++++++++++++------------------ src/tree_sitter/parser.h | 12 +- 7 files changed, 127792 insertions(+), 133481 deletions(-) diff --git a/corpus/comment.txt b/corpus/comment.txt index 650149b..4f02130 100644 --- a/corpus/comment.txt +++ b/corpus/comment.txt @@ -7,5 +7,4 @@ -------------------------------------------------------------------------------- (blade - (comment - (text))) + (comment)) diff --git a/corpus/conflicts.txt b/corpus/conflicts.txt index 03dfe55..430760c 100644 --- a/corpus/conflicts.txt +++ b/corpus/conflicts.txt @@ -45,11 +45,7 @@ Comments Ending with Punctuation Conflict -------------------------------------------------------------------------------- (blade - (comment - (text)) - (comment - (text)) - (comment - (text)) - (comment - (text))) + (comment) + (comment) + (comment) + (comment)) diff --git a/grammar.js b/grammar.js index 2003218..58baf30 100644 --- a/grammar.js +++ b/grammar.js @@ -16,7 +16,8 @@ module.exports = grammar({ $.text ), - comment: ($) => seq('{{--', optional($.text), '--}}'), + // https://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 + comment: $ => token(seq('{{--', /[^-]*-+([^}-][^-]*-+)*/, '}}')), // !keywords keyword: ($) => diff --git a/src/grammar.json b/src/grammar.json index ca55f46..c4e7de3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -46,29 +46,24 @@ ] }, "comment": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{{--" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "text" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "--}}" - } - ] + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{{--" + }, + { + "type": "PATTERN", + "value": "[^-]*-+([^}-][^-]*-+)*" + }, + { + "type": "STRING", + "value": "}}" + } + ] + } }, "keyword": { "type": "ALIAS", diff --git a/src/node-types.json b/src/node-types.json index 3dde1ac..17434cc 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -228,21 +228,6 @@ ] } }, - { - "type": "comment", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "text", - "named": true - } - ] - } - }, { "type": "conditional", "named": true, @@ -1568,10 +1553,6 @@ "type": ",", "named": false }, - { - "type": "--}}", - "named": false - }, { "type": "bracket_end", "named": true @@ -1580,6 +1561,10 @@ "type": "bracket_start", "named": true }, + { + "type": "comment", + "named": true + }, { "type": "directive", "named": true @@ -1591,9 +1576,5 @@ { "type": "directive_start", "named": true - }, - { - "type": "{{--", - "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 3195216..5cf03b7 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 @@ -14,214 +14,211 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6882 +#define STATE_COUNT 6740 #define LARGE_STATE_COUNT 658 -#define SYMBOL_COUNT 192 +#define SYMBOL_COUNT 190 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 107 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 #define PRODUCTION_ID_COUNT 7 -enum { - anon_sym_LBRACE_LBRACE_DASH_DASH = 1, - anon_sym_DASH_DASH_RBRACE_RBRACE = 2, - aux_sym_keyword_token1 = 3, - anon_sym_LBRACE_LBRACE = 4, - anon_sym_RBRACE_RBRACE = 5, - anon_sym_LBRACE_BANG_BANG = 6, - anon_sym_BANG_BANG_RBRACE = 7, - anon_sym_ATphp = 8, - anon_sym_ATendphp = 9, - aux_sym_attribute_token1 = 10, - aux_sym__inline_directive_token1 = 11, - anon_sym_ATfragment = 12, - anon_sym_ATendfragment = 13, - anon_sym_ATsection = 14, - anon_sym_LPAREN = 15, - anon_sym_RPAREN = 16, - aux_sym_section_token1 = 17, - anon_sym_COMMA = 18, - anon_sym_ATonce = 19, - anon_sym_ATendonce = 20, - anon_sym_ATverbatim = 21, - anon_sym_ATendverbatim = 22, - anon_sym_ATpush = 23, - anon_sym_ATendpush = 24, - anon_sym_ATpushOnce = 25, - anon_sym_ATendPushOnce = 26, - anon_sym_ATpushIf = 27, - anon_sym_ATendPushIf = 28, - anon_sym_ATprepend = 29, - anon_sym_ATendprepend = 30, - anon_sym_ATprependOnce = 31, - anon_sym_ATendPrependOnce = 32, - anon_sym_ATelse = 33, - aux_sym_conditional_keyword_token1 = 34, - anon_sym_ATif = 35, - anon_sym_ATendif = 36, - anon_sym_ATunless = 37, - anon_sym_ATendunless = 38, - anon_sym_ATisset = 39, - anon_sym_ATendisset = 40, - anon_sym_ATempty = 41, - anon_sym_ATendempty = 42, - anon_sym_ATauth = 43, - anon_sym_ATendauth = 44, - anon_sym_ATguest = 45, - anon_sym_ATendguest = 46, - anon_sym_ATproduction = 47, - anon_sym_ATendproduction = 48, - anon_sym_ATenv = 49, - anon_sym_ATendenv = 50, - anon_sym_AThasSection = 51, - anon_sym_ATsectionMissing = 52, - anon_sym_ATerror = 53, - anon_sym_ATenderror = 54, - anon_sym_ATcan = 55, - anon_sym_ATendcan = 56, - anon_sym_ATcannot = 57, - anon_sym_ATendcannot = 58, - anon_sym_ATcanany = 59, - anon_sym_ATendcanany = 60, - anon_sym_ATfeature = 61, - anon_sym_ATendfeature = 62, - aux_sym__custom_token1 = 63, - aux_sym__custom_token2 = 64, - aux_sym__custom_token3 = 65, - anon_sym_ATswitch = 66, - anon_sym_ATdefault = 67, - anon_sym_ATendswitch = 68, - anon_sym_ATcase = 69, - anon_sym_ATbreak = 70, - aux_sym_loop_operator_token1 = 71, - anon_sym_ATfor = 72, - anon_sym_ATendfor = 73, - anon_sym_ATforeach = 74, - anon_sym_ATendforeach = 75, - anon_sym_ATforelse = 76, - anon_sym_ATendforelse = 77, - anon_sym_ATwhile = 78, - anon_sym_ATendwhile = 79, - anon_sym_ATsetup = 80, - anon_sym_ATendsetup = 81, - anon_sym_ATtask = 82, - anon_sym_ATendtask = 83, - anon_sym_ATstory = 84, - anon_sym_ATendstory = 85, - anon_sym_ATbefore = 86, - anon_sym_ATendbefore = 87, - anon_sym_ATafter = 88, - anon_sym_ATendafter = 89, - anon_sym_ATsuccess = 90, - anon_sym_ATendsuccess = 91, - anon_sym_ATfinished = 92, - anon_sym_ATendfinished = 93, - aux_sym__notification_token1 = 94, - anon_sym_ATpersist = 95, - anon_sym_ATendpersist = 96, - anon_sym_ATteleport = 97, - anon_sym_ATendteleport = 98, - anon_sym_ATvolt = 99, - anon_sym_ATendvolt = 100, - aux_sym_parameter_token1 = 101, - anon_sym_LPAREN2 = 102, - anon_sym_RPAREN2 = 103, - aux_sym__section_parameter_token1 = 104, - aux_sym__text_token1 = 105, - aux_sym__text_token2 = 106, - aux_sym__text_token3 = 107, - sym_blade = 108, - sym__definition = 109, - sym_comment = 110, - sym_keyword = 111, - sym_php_statement = 112, - sym__escaped = 113, - sym__unescaped = 114, - sym__raw = 115, - sym__inline_raw = 116, - sym__multi_line_raw = 117, - sym_attribute = 118, - sym__inline_directive = 119, - sym__nested_directive = 120, - sym_fragment = 121, - sym_section = 122, - sym_inlineSection = 123, - sym_once = 124, - sym_verbatim = 125, - sym_stack = 126, - sym__push = 127, - sym__pushOnce = 128, - sym__pushIf = 129, - sym__prepend = 130, - sym__prependOnce = 131, - sym_conditional = 132, - sym_conditional_keyword = 133, - sym__if = 134, - sym__unless = 135, - sym__isset = 136, - sym__empty = 137, - sym__auth = 138, - sym__guest = 139, - sym__production = 140, - sym__env = 141, - sym__hasSection = 142, - sym__sectionMissing = 143, - sym__error = 144, - sym_authorization = 145, - sym__can = 146, - sym__cannot = 147, - sym__canany = 148, - sym__feature = 149, - sym__custom = 150, - sym_switch = 151, - sym__case = 152, - sym_loop = 153, - sym_loop_operator = 154, - sym__for = 155, - sym__foreach = 156, - sym__forelse = 157, - sym__while = 158, - sym_envoy = 159, - sym__setup = 160, - sym__task = 161, - sym__story = 162, - sym__hooks = 163, - sym__before = 164, - sym__after = 165, - sym__envoy_error = 166, - sym__success = 167, - sym__finished = 168, - sym__notification = 169, - sym_livewire = 170, - sym__persist = 171, - sym__teleport = 172, - sym__volt = 173, - aux_sym__directive_body = 174, - sym__directive_body_with_parameter = 175, - sym__if_statement_directive_body = 176, - sym__if_statement_directive_body_with_optional_parameter = 177, - aux_sym__if_statement_directive_body_with_no_parameter = 178, - sym_parameter = 179, - sym__text_with_parenthesis = 180, - sym__directive_parameter = 181, - sym__section_parameter = 182, - sym_php_only = 183, - sym_text = 184, - sym__text = 185, - aux_sym_blade_repeat1 = 186, - aux_sym_switch_repeat1 = 187, - aux_sym__before_repeat1 = 188, - aux_sym__if_statement_directive_body_repeat1 = 189, - aux_sym__text_with_parenthesis_repeat1 = 190, - aux_sym_php_only_repeat1 = 191, +enum ts_symbol_identifiers { + sym_comment = 1, + aux_sym_keyword_token1 = 2, + anon_sym_LBRACE_LBRACE = 3, + anon_sym_RBRACE_RBRACE = 4, + anon_sym_LBRACE_BANG_BANG = 5, + anon_sym_BANG_BANG_RBRACE = 6, + anon_sym_ATphp = 7, + anon_sym_ATendphp = 8, + aux_sym_attribute_token1 = 9, + aux_sym__inline_directive_token1 = 10, + anon_sym_ATfragment = 11, + anon_sym_ATendfragment = 12, + anon_sym_ATsection = 13, + anon_sym_LPAREN = 14, + anon_sym_RPAREN = 15, + aux_sym_section_token1 = 16, + anon_sym_COMMA = 17, + anon_sym_ATonce = 18, + anon_sym_ATendonce = 19, + anon_sym_ATverbatim = 20, + anon_sym_ATendverbatim = 21, + anon_sym_ATpush = 22, + anon_sym_ATendpush = 23, + anon_sym_ATpushOnce = 24, + anon_sym_ATendPushOnce = 25, + anon_sym_ATpushIf = 26, + anon_sym_ATendPushIf = 27, + anon_sym_ATprepend = 28, + anon_sym_ATendprepend = 29, + anon_sym_ATprependOnce = 30, + anon_sym_ATendPrependOnce = 31, + anon_sym_ATelse = 32, + aux_sym_conditional_keyword_token1 = 33, + anon_sym_ATif = 34, + anon_sym_ATendif = 35, + anon_sym_ATunless = 36, + anon_sym_ATendunless = 37, + anon_sym_ATisset = 38, + anon_sym_ATendisset = 39, + anon_sym_ATempty = 40, + anon_sym_ATendempty = 41, + anon_sym_ATauth = 42, + anon_sym_ATendauth = 43, + anon_sym_ATguest = 44, + anon_sym_ATendguest = 45, + anon_sym_ATproduction = 46, + anon_sym_ATendproduction = 47, + anon_sym_ATenv = 48, + anon_sym_ATendenv = 49, + anon_sym_AThasSection = 50, + anon_sym_ATsectionMissing = 51, + anon_sym_ATerror = 52, + anon_sym_ATenderror = 53, + anon_sym_ATcan = 54, + anon_sym_ATendcan = 55, + anon_sym_ATcannot = 56, + anon_sym_ATendcannot = 57, + anon_sym_ATcanany = 58, + anon_sym_ATendcanany = 59, + anon_sym_ATfeature = 60, + anon_sym_ATendfeature = 61, + aux_sym__custom_token1 = 62, + aux_sym__custom_token2 = 63, + aux_sym__custom_token3 = 64, + anon_sym_ATswitch = 65, + anon_sym_ATdefault = 66, + anon_sym_ATendswitch = 67, + anon_sym_ATcase = 68, + anon_sym_ATbreak = 69, + aux_sym_loop_operator_token1 = 70, + anon_sym_ATfor = 71, + anon_sym_ATendfor = 72, + anon_sym_ATforeach = 73, + anon_sym_ATendforeach = 74, + anon_sym_ATforelse = 75, + anon_sym_ATendforelse = 76, + anon_sym_ATwhile = 77, + anon_sym_ATendwhile = 78, + anon_sym_ATsetup = 79, + anon_sym_ATendsetup = 80, + anon_sym_ATtask = 81, + anon_sym_ATendtask = 82, + anon_sym_ATstory = 83, + anon_sym_ATendstory = 84, + anon_sym_ATbefore = 85, + anon_sym_ATendbefore = 86, + anon_sym_ATafter = 87, + anon_sym_ATendafter = 88, + anon_sym_ATsuccess = 89, + anon_sym_ATendsuccess = 90, + anon_sym_ATfinished = 91, + anon_sym_ATendfinished = 92, + aux_sym__notification_token1 = 93, + anon_sym_ATpersist = 94, + anon_sym_ATendpersist = 95, + anon_sym_ATteleport = 96, + anon_sym_ATendteleport = 97, + anon_sym_ATvolt = 98, + anon_sym_ATendvolt = 99, + aux_sym_parameter_token1 = 100, + anon_sym_LPAREN2 = 101, + anon_sym_RPAREN2 = 102, + aux_sym__section_parameter_token1 = 103, + aux_sym__text_token1 = 104, + aux_sym__text_token2 = 105, + aux_sym__text_token3 = 106, + sym_blade = 107, + sym__definition = 108, + sym_keyword = 109, + sym_php_statement = 110, + sym__escaped = 111, + sym__unescaped = 112, + sym__raw = 113, + sym__inline_raw = 114, + sym__multi_line_raw = 115, + sym_attribute = 116, + sym__inline_directive = 117, + sym__nested_directive = 118, + sym_fragment = 119, + sym_section = 120, + sym_inlineSection = 121, + sym_once = 122, + sym_verbatim = 123, + sym_stack = 124, + sym__push = 125, + sym__pushOnce = 126, + sym__pushIf = 127, + sym__prepend = 128, + sym__prependOnce = 129, + sym_conditional = 130, + sym_conditional_keyword = 131, + sym__if = 132, + sym__unless = 133, + sym__isset = 134, + sym__empty = 135, + sym__auth = 136, + sym__guest = 137, + sym__production = 138, + sym__env = 139, + sym__hasSection = 140, + sym__sectionMissing = 141, + sym__error = 142, + sym_authorization = 143, + sym__can = 144, + sym__cannot = 145, + sym__canany = 146, + sym__feature = 147, + sym__custom = 148, + sym_switch = 149, + sym__case = 150, + sym_loop = 151, + sym_loop_operator = 152, + sym__for = 153, + sym__foreach = 154, + sym__forelse = 155, + sym__while = 156, + sym_envoy = 157, + sym__setup = 158, + sym__task = 159, + sym__story = 160, + sym__hooks = 161, + sym__before = 162, + sym__after = 163, + sym__envoy_error = 164, + sym__success = 165, + sym__finished = 166, + sym__notification = 167, + sym_livewire = 168, + sym__persist = 169, + sym__teleport = 170, + sym__volt = 171, + aux_sym__directive_body = 172, + sym__directive_body_with_parameter = 173, + sym__if_statement_directive_body = 174, + sym__if_statement_directive_body_with_optional_parameter = 175, + aux_sym__if_statement_directive_body_with_no_parameter = 176, + sym_parameter = 177, + sym__text_with_parenthesis = 178, + sym__directive_parameter = 179, + sym__section_parameter = 180, + sym_php_only = 181, + sym_text = 182, + sym__text = 183, + aux_sym_blade_repeat1 = 184, + aux_sym_switch_repeat1 = 185, + aux_sym__before_repeat1 = 186, + aux_sym__if_statement_directive_body_repeat1 = 187, + aux_sym__text_with_parenthesis_repeat1 = 188, + aux_sym_php_only_repeat1 = 189, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_LBRACE_LBRACE_DASH_DASH] = "{{--", - [anon_sym_DASH_DASH_RBRACE_RBRACE] = "--}}", + [sym_comment] = "comment", [aux_sym_keyword_token1] = "directive", [anon_sym_LBRACE_LBRACE] = "bracket_start", [anon_sym_RBRACE_RBRACE] = "bracket_end", @@ -329,7 +326,6 @@ static const char * const ts_symbol_names[] = { [aux_sym__text_token3] = "_text_token3", [sym_blade] = "blade", [sym__definition] = "_definition", - [sym_comment] = "comment", [sym_keyword] = "keyword", [sym_php_statement] = "php_statement", [sym__escaped] = "_escaped", @@ -415,8 +411,7 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_LBRACE_LBRACE_DASH_DASH] = anon_sym_LBRACE_LBRACE_DASH_DASH, - [anon_sym_DASH_DASH_RBRACE_RBRACE] = anon_sym_DASH_DASH_RBRACE_RBRACE, + [sym_comment] = sym_comment, [aux_sym_keyword_token1] = aux_sym_keyword_token1, [anon_sym_LBRACE_LBRACE] = anon_sym_LBRACE_LBRACE, [anon_sym_RBRACE_RBRACE] = anon_sym_RBRACE_RBRACE, @@ -524,7 +519,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__text_token3] = aux_sym__text_token3, [sym_blade] = sym_blade, [sym__definition] = sym__definition, - [sym_comment] = sym_comment, [sym_keyword] = sym_keyword, [sym_php_statement] = sym_php_statement, [sym__escaped] = sym__escaped, @@ -613,13 +607,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_LBRACE_LBRACE_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH_RBRACE_RBRACE] = { + [sym_comment] = { .visible = true, - .named = false, + .named = true, }, [aux_sym_keyword_token1] = { .visible = true, @@ -1049,10 +1039,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_comment] = { - .visible = true, - .named = true, - }, [sym_keyword] = { .visible = true, .named = true, @@ -1425,8 +1411,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 2, [9] = 2, [10] = 4, - [11] = 4, - [12] = 2, + [11] = 2, + [12] = 4, [13] = 4, [14] = 2, [15] = 4, @@ -1435,10 +1421,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [18] = 4, [19] = 4, [20] = 2, - [21] = 2, - [22] = 4, - [23] = 2, - [24] = 4, + [21] = 4, + [22] = 2, + [23] = 4, + [24] = 2, [25] = 4, [26] = 2, [27] = 2, @@ -1471,8 +1457,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [54] = 2, [55] = 4, [56] = 2, - [57] = 2, - [58] = 4, + [57] = 4, + [58] = 2, [59] = 4, [60] = 2, [61] = 2, @@ -1487,80 +1473,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [70] = 2, [71] = 4, [72] = 72, - [73] = 72, + [73] = 73, [74] = 74, [75] = 72, - [76] = 72, + [76] = 76, [77] = 77, - [78] = 72, - [79] = 79, - [80] = 72, - [81] = 72, - [82] = 82, - [83] = 72, - [84] = 72, - [85] = 79, - [86] = 77, - [87] = 72, - [88] = 79, + [78] = 77, + [79] = 73, + [80] = 73, + [81] = 73, + [82] = 73, + [83] = 77, + [84] = 73, + [85] = 74, + [86] = 76, + [87] = 73, + [88] = 77, [89] = 89, - [90] = 74, - [91] = 74, - [92] = 72, - [93] = 72, - [94] = 82, - [95] = 72, - [96] = 72, - [97] = 72, - [98] = 98, - [99] = 72, - [100] = 77, - [101] = 74, - [102] = 89, - [103] = 72, - [104] = 79, - [105] = 72, - [106] = 72, - [107] = 79, - [108] = 79, - [109] = 77, - [110] = 74, - [111] = 72, - [112] = 72, - [113] = 72, + [90] = 76, + [91] = 73, + [92] = 73, + [93] = 73, + [94] = 73, + [95] = 73, + [96] = 73, + [97] = 73, + [98] = 77, + [99] = 73, + [100] = 73, + [101] = 76, + [102] = 102, + [103] = 74, + [104] = 73, + [105] = 76, + [106] = 89, + [107] = 76, + [108] = 73, + [109] = 74, + [110] = 73, + [111] = 73, + [112] = 74, + [113] = 73, [114] = 77, [115] = 77, - [116] = 72, + [116] = 73, [117] = 74, - [118] = 72, + [118] = 74, [119] = 77, - [120] = 79, - [121] = 74, + [120] = 74, + [121] = 76, [122] = 77, - [123] = 79, - [124] = 74, - [125] = 74, - [126] = 74, - [127] = 72, - [128] = 74, - [129] = 79, - [130] = 79, + [123] = 74, + [124] = 76, + [125] = 76, + [126] = 76, + [127] = 73, + [128] = 73, + [129] = 76, + [130] = 74, [131] = 77, - [132] = 72, - [133] = 72, - [134] = 72, - [135] = 74, - [136] = 79, - [137] = 72, - [138] = 77, - [139] = 77, - [140] = 72, - [141] = 72, - [142] = 72, - [143] = 72, - [144] = 72, - [145] = 74, - [146] = 72, + [132] = 73, + [133] = 73, + [134] = 73, + [135] = 73, + [136] = 76, + [137] = 74, + [138] = 73, + [139] = 73, + [140] = 77, + [141] = 73, + [142] = 73, + [143] = 73, + [144] = 73, + [145] = 73, + [146] = 76, [147] = 147, [148] = 147, [149] = 147, @@ -1579,21 +1565,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [162] = 147, [163] = 147, [164] = 147, - [165] = 165, + [165] = 147, [166] = 147, [167] = 147, [168] = 147, - [169] = 165, + [169] = 147, [170] = 147, [171] = 147, - [172] = 147, + [172] = 172, [173] = 147, [174] = 147, [175] = 147, [176] = 147, [177] = 147, [178] = 147, - [179] = 147, + [179] = 172, [180] = 147, [181] = 147, [182] = 147, @@ -1602,476 +1588,476 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [185] = 185, [186] = 186, [187] = 187, - [188] = 188, + [188] = 184, [189] = 189, [190] = 190, [191] = 191, [192] = 192, [193] = 193, - [194] = 194, - [195] = 188, + [194] = 185, + [195] = 195, [196] = 196, - [197] = 185, - [198] = 198, - [199] = 186, - [200] = 187, + [197] = 197, + [198] = 186, + [199] = 187, + [200] = 184, [201] = 189, [202] = 190, [203] = 191, - [204] = 192, - [205] = 193, - [206] = 194, - [207] = 188, - [208] = 196, - [209] = 194, - [210] = 185, - [211] = 198, - [212] = 193, - [213] = 186, - [214] = 187, - [215] = 189, - [216] = 192, - [217] = 190, - [218] = 191, + [204] = 193, + [205] = 192, + [206] = 193, + [207] = 185, + [208] = 192, + [209] = 195, + [210] = 196, + [211] = 191, + [212] = 197, + [213] = 190, + [214] = 186, + [215] = 187, + [216] = 184, + [217] = 189, + [218] = 190, [219] = 191, [220] = 192, - [221] = 193, - [222] = 194, - [223] = 188, - [224] = 196, - [225] = 190, - [226] = 185, - [227] = 198, + [221] = 189, + [222] = 193, + [223] = 185, + [224] = 195, + [225] = 184, + [226] = 196, + [227] = 197, [228] = 186, - [229] = 189, - [230] = 187, - [231] = 189, - [232] = 190, - [233] = 191, - [234] = 192, - [235] = 235, + [229] = 187, + [230] = 186, + [231] = 184, + [232] = 189, + [233] = 190, + [234] = 191, + [235] = 192, [236] = 193, - [237] = 194, - [238] = 188, + [237] = 185, + [238] = 195, [239] = 196, - [240] = 185, - [241] = 198, - [242] = 186, - [243] = 187, + [240] = 197, + [241] = 186, + [242] = 187, + [243] = 184, [244] = 189, [245] = 190, - [246] = 191, - [247] = 192, - [248] = 193, - [249] = 194, - [250] = 188, - [251] = 196, - [252] = 252, - [253] = 185, - [254] = 198, - [255] = 184, - [256] = 186, - [257] = 187, - [258] = 189, - [259] = 190, - [260] = 191, - [261] = 192, - [262] = 193, - [263] = 263, - [264] = 194, - [265] = 188, - [266] = 196, - [267] = 185, - [268] = 198, - [269] = 186, - [270] = 187, - [271] = 189, - [272] = 235, - [273] = 190, - [274] = 184, - [275] = 191, - [276] = 192, - [277] = 193, - [278] = 194, - [279] = 188, - [280] = 196, - [281] = 187, + [246] = 246, + [247] = 191, + [248] = 192, + [249] = 193, + [250] = 246, + [251] = 185, + [252] = 195, + [253] = 196, + [254] = 197, + [255] = 186, + [256] = 187, + [257] = 257, + [258] = 184, + [259] = 189, + [260] = 190, + [261] = 191, + [262] = 192, + [263] = 193, + [264] = 185, + [265] = 195, + [266] = 266, + [267] = 187, + [268] = 268, + [269] = 196, + [270] = 197, + [271] = 186, + [272] = 187, + [273] = 184, + [274] = 189, + [275] = 190, + [276] = 196, + [277] = 191, + [278] = 192, + [279] = 193, + [280] = 185, + [281] = 195, [282] = 185, - [283] = 185, - [284] = 198, - [285] = 186, - [286] = 187, - [287] = 189, - [288] = 196, - [289] = 188, - [290] = 190, - [291] = 191, - [292] = 192, - [293] = 193, - [294] = 194, - [295] = 188, - [296] = 196, - [297] = 194, - [298] = 185, - [299] = 198, + [283] = 195, + [284] = 185, + [285] = 196, + [286] = 197, + [287] = 186, + [288] = 187, + [289] = 184, + [290] = 189, + [291] = 190, + [292] = 191, + [293] = 192, + [294] = 193, + [295] = 185, + [296] = 195, + [297] = 193, + [298] = 196, + [299] = 197, [300] = 186, [301] = 187, - [302] = 189, - [303] = 190, - [304] = 191, - [305] = 192, - [306] = 193, - [307] = 194, - [308] = 188, - [309] = 196, - [310] = 193, - [311] = 185, - [312] = 198, + [302] = 184, + [303] = 189, + [304] = 190, + [305] = 191, + [306] = 192, + [307] = 193, + [308] = 185, + [309] = 195, + [310] = 192, + [311] = 196, + [312] = 197, [313] = 186, [314] = 187, - [315] = 189, - [316] = 190, - [317] = 191, - [318] = 192, - [319] = 193, - [320] = 194, - [321] = 188, - [322] = 196, - [323] = 192, - [324] = 185, - [325] = 198, + [315] = 184, + [316] = 189, + [317] = 190, + [318] = 191, + [319] = 192, + [320] = 193, + [321] = 185, + [322] = 195, + [323] = 191, + [324] = 196, + [325] = 197, [326] = 186, [327] = 187, - [328] = 189, - [329] = 190, - [330] = 191, - [331] = 192, - [332] = 193, - [333] = 194, - [334] = 186, - [335] = 188, - [336] = 196, - [337] = 191, - [338] = 185, - [339] = 198, + [328] = 266, + [329] = 184, + [330] = 189, + [331] = 190, + [332] = 191, + [333] = 192, + [334] = 193, + [335] = 185, + [336] = 195, + [337] = 190, + [338] = 196, + [339] = 197, [340] = 186, [341] = 187, - [342] = 189, - [343] = 190, - [344] = 191, - [345] = 192, - [346] = 193, - [347] = 194, - [348] = 188, - [349] = 196, - [350] = 190, + [342] = 184, + [343] = 189, + [344] = 190, + [345] = 246, + [346] = 191, + [347] = 192, + [348] = 189, + [349] = 193, + [350] = 268, [351] = 185, - [352] = 252, - [353] = 198, - [354] = 186, - [355] = 189, - [356] = 187, - [357] = 252, - [358] = 189, - [359] = 190, - [360] = 191, - [361] = 192, - [362] = 193, - [363] = 194, - [364] = 188, - [365] = 196, - [366] = 198, - [367] = 185, - [368] = 198, - [369] = 186, - [370] = 187, - [371] = 189, - [372] = 235, - [373] = 190, - [374] = 186, - [375] = 191, - [376] = 192, - [377] = 193, - [378] = 194, - [379] = 188, + [352] = 195, + [353] = 184, + [354] = 196, + [355] = 197, + [356] = 186, + [357] = 187, + [358] = 184, + [359] = 189, + [360] = 190, + [361] = 191, + [362] = 192, + [363] = 193, + [364] = 266, + [365] = 185, + [366] = 268, + [367] = 195, + [368] = 196, + [369] = 196, + [370] = 197, + [371] = 186, + [372] = 187, + [373] = 186, + [374] = 197, + [375] = 189, + [376] = 190, + [377] = 191, + [378] = 192, + [379] = 193, [380] = 196, - [381] = 198, - [382] = 185, - [383] = 185, - [384] = 198, - [385] = 186, - [386] = 187, - [387] = 189, - [388] = 196, - [389] = 190, - [390] = 191, - [391] = 192, - [392] = 193, - [393] = 194, - [394] = 188, - [395] = 196, - [396] = 188, - [397] = 185, - [398] = 198, + [381] = 185, + [382] = 195, + [383] = 195, + [384] = 196, + [385] = 197, + [386] = 186, + [387] = 187, + [388] = 184, + [389] = 189, + [390] = 190, + [391] = 191, + [392] = 192, + [393] = 193, + [394] = 185, + [395] = 195, + [396] = 185, + [397] = 196, + [398] = 197, [399] = 186, [400] = 187, - [401] = 189, - [402] = 190, - [403] = 191, - [404] = 192, - [405] = 193, - [406] = 194, - [407] = 188, - [408] = 196, - [409] = 194, - [410] = 185, - [411] = 198, + [401] = 184, + [402] = 189, + [403] = 190, + [404] = 191, + [405] = 192, + [406] = 193, + [407] = 185, + [408] = 195, + [409] = 193, + [410] = 196, + [411] = 197, [412] = 186, [413] = 187, - [414] = 189, - [415] = 190, - [416] = 191, - [417] = 192, - [418] = 193, - [419] = 194, - [420] = 188, - [421] = 196, - [422] = 193, - [423] = 185, - [424] = 198, - [425] = 186, - [426] = 187, - [427] = 189, - [428] = 190, - [429] = 191, - [430] = 235, - [431] = 184, - [432] = 192, - [433] = 193, - [434] = 194, - [435] = 188, - [436] = 196, - [437] = 192, - [438] = 185, - [439] = 198, - [440] = 186, - [441] = 187, - [442] = 189, - [443] = 190, - [444] = 191, - [445] = 192, - [446] = 193, - [447] = 194, - [448] = 252, - [449] = 188, - [450] = 196, - [451] = 191, - [452] = 190, - [453] = 453, - [454] = 185, - [455] = 198, - [456] = 186, - [457] = 187, - [458] = 189, - [459] = 190, - [460] = 191, - [461] = 192, - [462] = 193, - [463] = 194, - [464] = 188, - [465] = 196, - [466] = 189, - [467] = 198, - [468] = 235, - [469] = 198, - [470] = 184, - [471] = 186, - [472] = 187, - [473] = 189, - [474] = 190, - [475] = 191, - [476] = 192, - [477] = 193, - [478] = 184, - [479] = 194, - [480] = 188, - [481] = 196, - [482] = 187, - [483] = 185, - [484] = 186, - [485] = 198, - [486] = 186, - [487] = 187, - [488] = 189, - [489] = 190, - [490] = 191, - [491] = 192, - [492] = 193, - [493] = 194, - [494] = 188, - [495] = 196, - [496] = 188, - [497] = 185, - [498] = 198, - [499] = 186, - [500] = 187, - [501] = 189, - [502] = 190, - [503] = 191, - [504] = 192, - [505] = 193, - [506] = 194, - [507] = 188, - [508] = 196, - [509] = 185, - [510] = 185, - [511] = 198, - [512] = 186, - [513] = 187, - [514] = 189, - [515] = 190, - [516] = 191, - [517] = 192, - [518] = 193, - [519] = 194, - [520] = 188, - [521] = 196, - [522] = 196, + [414] = 184, + [415] = 189, + [416] = 190, + [417] = 191, + [418] = 192, + [419] = 193, + [420] = 185, + [421] = 195, + [422] = 268, + [423] = 423, + [424] = 192, + [425] = 196, + [426] = 197, + [427] = 186, + [428] = 187, + [429] = 184, + [430] = 189, + [431] = 266, + [432] = 190, + [433] = 191, + [434] = 192, + [435] = 193, + [436] = 185, + [437] = 195, + [438] = 191, + [439] = 246, + [440] = 196, + [441] = 197, + [442] = 190, + [443] = 186, + [444] = 246, + [445] = 187, + [446] = 184, + [447] = 189, + [448] = 190, + [449] = 191, + [450] = 192, + [451] = 193, + [452] = 185, + [453] = 195, + [454] = 189, + [455] = 196, + [456] = 197, + [457] = 186, + [458] = 266, + [459] = 187, + [460] = 268, + [461] = 184, + [462] = 189, + [463] = 190, + [464] = 191, + [465] = 192, + [466] = 193, + [467] = 197, + [468] = 184, + [469] = 195, + [470] = 187, + [471] = 196, + [472] = 197, + [473] = 186, + [474] = 186, + [475] = 187, + [476] = 184, + [477] = 189, + [478] = 190, + [479] = 191, + [480] = 192, + [481] = 193, + [482] = 185, + [483] = 195, + [484] = 197, + [485] = 196, + [486] = 197, + [487] = 186, + [488] = 187, + [489] = 184, + [490] = 189, + [491] = 190, + [492] = 191, + [493] = 192, + [494] = 193, + [495] = 185, + [496] = 195, + [497] = 195, + [498] = 196, + [499] = 197, + [500] = 186, + [501] = 187, + [502] = 184, + [503] = 189, + [504] = 190, + [505] = 191, + [506] = 192, + [507] = 193, + [508] = 185, + [509] = 195, + [510] = 268, + [511] = 196, + [512] = 197, + [513] = 186, + [514] = 187, + [515] = 184, + [516] = 246, + [517] = 197, + [518] = 189, + [519] = 190, + [520] = 191, + [521] = 192, + [522] = 193, [523] = 185, - [524] = 198, - [525] = 186, - [526] = 252, - [527] = 198, - [528] = 187, - [529] = 189, - [530] = 190, - [531] = 191, - [532] = 192, - [533] = 193, - [534] = 194, - [535] = 252, - [536] = 188, - [537] = 196, - [538] = 235, - [539] = 185, - [540] = 198, - [541] = 186, - [542] = 187, - [543] = 189, - [544] = 252, - [545] = 190, - [546] = 191, - [547] = 196, - [548] = 192, - [549] = 252, - [550] = 193, - [551] = 194, - [552] = 188, - [553] = 196, - [554] = 187, + [524] = 195, + [525] = 266, + [526] = 195, + [527] = 196, + [528] = 197, + [529] = 186, + [530] = 187, + [531] = 184, + [532] = 189, + [533] = 246, + [534] = 190, + [535] = 191, + [536] = 185, + [537] = 192, + [538] = 268, + [539] = 193, + [540] = 185, + [541] = 195, + [542] = 193, + [543] = 196, + [544] = 197, + [545] = 186, + [546] = 187, + [547] = 184, + [548] = 189, + [549] = 190, + [550] = 191, + [551] = 192, + [552] = 266, + [553] = 193, + [554] = 268, [555] = 185, - [556] = 198, - [557] = 186, - [558] = 187, - [559] = 189, - [560] = 190, - [561] = 191, - [562] = 192, - [563] = 193, - [564] = 235, - [565] = 194, - [566] = 184, - [567] = 188, - [568] = 196, - [569] = 194, + [556] = 195, + [557] = 192, + [558] = 196, + [559] = 197, + [560] = 186, + [561] = 187, + [562] = 187, + [563] = 184, + [564] = 189, + [565] = 190, + [566] = 191, + [567] = 192, + [568] = 266, + [569] = 193, [570] = 185, - [571] = 198, - [572] = 186, - [573] = 187, - [574] = 193, - [575] = 189, - [576] = 190, - [577] = 191, - [578] = 192, - [579] = 193, - [580] = 192, - [581] = 194, - [582] = 188, - [583] = 196, - [584] = 191, - [585] = 185, - [586] = 198, - [587] = 186, - [588] = 187, - [589] = 189, - [590] = 190, - [591] = 191, - [592] = 192, - [593] = 193, - [594] = 194, - [595] = 188, - [596] = 196, - [597] = 190, - [598] = 185, - [599] = 198, - [600] = 186, - [601] = 187, - [602] = 189, - [603] = 190, - [604] = 191, - [605] = 192, - [606] = 193, - [607] = 194, - [608] = 188, - [609] = 196, - [610] = 189, - [611] = 185, - [612] = 198, - [613] = 186, - [614] = 187, - [615] = 185, - [616] = 235, - [617] = 184, - [618] = 189, - [619] = 252, - [620] = 190, - [621] = 235, - [622] = 184, - [623] = 191, - [624] = 192, - [625] = 252, - [626] = 193, - [627] = 235, - [628] = 184, - [629] = 194, - [630] = 188, - [631] = 252, - [632] = 235, - [633] = 184, - [634] = 196, - [635] = 252, - [636] = 235, - [637] = 184, - [638] = 185, - [639] = 252, - [640] = 252, - [641] = 235, - [642] = 184, - [643] = 187, - [644] = 252, - [645] = 235, - [646] = 184, - [647] = 252, - [648] = 198, - [649] = 235, - [650] = 184, - [651] = 263, - [652] = 184, - [653] = 186, - [654] = 184, - [655] = 184, - [656] = 235, - [657] = 184, + [571] = 195, + [572] = 191, + [573] = 196, + [574] = 197, + [575] = 186, + [576] = 187, + [577] = 184, + [578] = 189, + [579] = 190, + [580] = 191, + [581] = 192, + [582] = 193, + [583] = 185, + [584] = 195, + [585] = 190, + [586] = 196, + [587] = 197, + [588] = 186, + [589] = 187, + [590] = 184, + [591] = 189, + [592] = 190, + [593] = 191, + [594] = 192, + [595] = 193, + [596] = 185, + [597] = 195, + [598] = 189, + [599] = 196, + [600] = 197, + [601] = 186, + [602] = 187, + [603] = 184, + [604] = 189, + [605] = 190, + [606] = 191, + [607] = 192, + [608] = 193, + [609] = 185, + [610] = 196, + [611] = 246, + [612] = 195, + [613] = 184, + [614] = 196, + [615] = 197, + [616] = 186, + [617] = 187, + [618] = 184, + [619] = 189, + [620] = 266, + [621] = 246, + [622] = 268, + [623] = 190, + [624] = 191, + [625] = 246, + [626] = 192, + [627] = 246, + [628] = 266, + [629] = 268, + [630] = 187, + [631] = 193, + [632] = 185, + [633] = 246, + [634] = 266, + [635] = 268, + [636] = 195, + [637] = 246, + [638] = 266, + [639] = 268, + [640] = 257, + [641] = 246, + [642] = 266, + [643] = 268, + [644] = 246, + [645] = 266, + [646] = 266, + [647] = 268, + [648] = 268, + [649] = 246, + [650] = 266, + [651] = 268, + [652] = 268, + [653] = 196, + [654] = 268, + [655] = 197, + [656] = 186, + [657] = 268, [658] = 658, [659] = 658, [660] = 658, @@ -2089,57 +2075,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [672] = 672, [673] = 673, [674] = 674, - [675] = 674, - [676] = 676, - [677] = 676, - [678] = 674, + [675] = 672, + [676] = 672, + [677] = 674, + [678] = 672, [679] = 674, - [680] = 676, + [680] = 672, [681] = 674, - [682] = 676, + [682] = 672, [683] = 674, - [684] = 676, - [685] = 672, - [686] = 672, - [687] = 676, + [684] = 684, + [685] = 673, + [686] = 674, + [687] = 672, [688] = 674, - [689] = 676, + [689] = 684, [690] = 673, - [691] = 672, - [692] = 672, - [693] = 674, - [694] = 676, - [695] = 673, - [696] = 672, - [697] = 672, + [691] = 673, + [692] = 674, + [693] = 672, + [694] = 684, + [695] = 684, + [696] = 684, + [697] = 673, [698] = 673, - [699] = 674, - [700] = 673, - [701] = 673, - [702] = 674, - [703] = 676, - [704] = 676, - [705] = 672, - [706] = 673, - [707] = 674, + [699] = 672, + [700] = 672, + [701] = 684, + [702] = 672, + [703] = 672, + [704] = 684, + [705] = 673, + [706] = 674, + [707] = 673, [708] = 673, - [709] = 672, - [710] = 672, - [711] = 676, + [709] = 684, + [710] = 674, + [711] = 684, [712] = 674, - [713] = 674, - [714] = 673, - [715] = 674, - [716] = 676, - [717] = 676, - [718] = 672, - [719] = 673, - [720] = 672, + [713] = 672, + [714] = 684, + [715] = 673, + [716] = 684, + [717] = 684, + [718] = 684, + [719] = 684, + [720] = 674, [721] = 673, - [722] = 672, + [722] = 674, [723] = 673, [724] = 673, - [725] = 676, + [725] = 674, [726] = 672, [727] = 673, [728] = 658, @@ -2165,28 +2151,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [748] = 658, [749] = 749, [750] = 750, - [751] = 674, - [752] = 676, + [751] = 751, + [752] = 752, [753] = 753, - [754] = 673, + [754] = 754, [755] = 755, - [756] = 674, - [757] = 753, - [758] = 755, - [759] = 674, - [760] = 676, - [761] = 753, - [762] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 749, + [762] = 762, [763] = 763, [764] = 764, [765] = 765, [766] = 766, - [767] = 749, - [768] = 755, + [767] = 767, + [768] = 768, [769] = 769, - [770] = 770, + [770] = 750, [771] = 771, - [772] = 676, + [772] = 772, [773] = 773, [774] = 774, [775] = 775, @@ -2196,7 +2182,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [779] = 779, [780] = 780, [781] = 781, - [782] = 753, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, @@ -2205,37 +2191,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [788] = 788, [789] = 789, [790] = 790, - [791] = 791, + [791] = 753, [792] = 792, [793] = 793, [794] = 794, - [795] = 795, + [795] = 672, [796] = 796, [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 801, + [801] = 753, [802] = 802, [803] = 803, [804] = 804, - [805] = 755, + [805] = 805, [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 674, + [811] = 811, [812] = 812, [813] = 813, [814] = 814, - [815] = 815, - [816] = 816, + [815] = 755, + [816] = 755, [817] = 817, - [818] = 818, - [819] = 676, + [818] = 674, + [819] = 819, [820] = 820, - [821] = 821, + [821] = 672, [822] = 822, [823] = 823, [824] = 824, @@ -2246,6772 +2232,6525 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [829] = 829, [830] = 830, [831] = 831, - [832] = 753, - [833] = 673, + [832] = 832, + [833] = 833, [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 750, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 763, - [850] = 764, - [851] = 765, - [852] = 766, - [853] = 749, - [854] = 769, - [855] = 770, - [856] = 771, - [857] = 773, - [858] = 753, - [859] = 774, - [860] = 775, - [861] = 776, - [862] = 755, - [863] = 777, - [864] = 778, - [865] = 779, - [866] = 866, - [867] = 781, - [868] = 753, - [869] = 783, - [870] = 784, - [871] = 785, - [872] = 786, - [873] = 787, - [874] = 788, - [875] = 789, - [876] = 790, - [877] = 791, - [878] = 792, - [879] = 793, - [880] = 794, - [881] = 795, - [882] = 817, - [883] = 796, - [884] = 797, - [885] = 798, - [886] = 799, - [887] = 780, - [888] = 801, - [889] = 802, - [890] = 803, - [891] = 804, - [892] = 892, - [893] = 755, - [894] = 806, - [895] = 807, - [896] = 808, - [897] = 809, - [898] = 810, - [899] = 812, - [900] = 813, - [901] = 814, - [902] = 815, - [903] = 816, - [904] = 838, - [905] = 674, - [906] = 818, - [907] = 820, - [908] = 821, - [909] = 822, - [910] = 800, - [911] = 824, - [912] = 825, - [913] = 826, - [914] = 827, - [915] = 828, - [916] = 829, - [917] = 830, - [918] = 831, - [919] = 834, - [920] = 835, - [921] = 836, - [922] = 837, - [923] = 839, - [924] = 840, - [925] = 841, - [926] = 753, - [927] = 842, - [928] = 823, - [929] = 673, - [930] = 673, - [931] = 673, - [932] = 673, - [933] = 673, - [934] = 673, - [935] = 673, - [936] = 673, - [937] = 673, - [938] = 676, - [939] = 845, - [940] = 673, - [941] = 676, - [942] = 848, - [943] = 673, - [944] = 673, - [945] = 676, - [946] = 674, - [947] = 750, - [948] = 892, - [949] = 845, - [950] = 846, - [951] = 676, - [952] = 674, - [953] = 866, - [954] = 892, - [955] = 845, - [956] = 755, - [957] = 844, - [958] = 676, - [959] = 674, - [960] = 848, - [961] = 892, - [962] = 845, - [963] = 763, - [964] = 676, - [965] = 674, - [966] = 847, - [967] = 765, - [968] = 676, + [835] = 776, + [836] = 775, + [837] = 774, + [838] = 750, + [839] = 777, + [840] = 749, + [841] = 769, + [842] = 751, + [843] = 752, + [844] = 753, + [845] = 756, + [846] = 757, + [847] = 758, + [848] = 762, + [849] = 753, + [850] = 850, + [851] = 771, + [852] = 754, + [853] = 755, + [854] = 759, + [855] = 760, + [856] = 763, + [857] = 765, + [858] = 766, + [859] = 767, + [860] = 768, + [861] = 684, + [862] = 772, + [863] = 773, + [864] = 755, + [865] = 778, + [866] = 779, + [867] = 780, + [868] = 781, + [869] = 782, + [870] = 783, + [871] = 674, + [872] = 784, + [873] = 672, + [874] = 874, + [875] = 785, + [876] = 764, + [877] = 787, + [878] = 788, + [879] = 789, + [880] = 790, + [881] = 753, + [882] = 792, + [883] = 793, + [884] = 794, + [885] = 796, + [886] = 797, + [887] = 672, + [888] = 798, + [889] = 799, + [890] = 800, + [891] = 891, + [892] = 802, + [893] = 803, + [894] = 804, + [895] = 674, + [896] = 805, + [897] = 806, + [898] = 807, + [899] = 808, + [900] = 786, + [901] = 810, + [902] = 811, + [903] = 812, + [904] = 813, + [905] = 814, + [906] = 753, + [907] = 755, + [908] = 817, + [909] = 819, + [910] = 820, + [911] = 822, + [912] = 823, + [913] = 824, + [914] = 825, + [915] = 826, + [916] = 828, + [917] = 829, + [918] = 830, + [919] = 827, + [920] = 684, + [921] = 834, + [922] = 831, + [923] = 832, + [924] = 833, + [925] = 850, + [926] = 776, + [927] = 775, + [928] = 809, + [929] = 755, + [930] = 750, + [931] = 891, + [932] = 777, + [933] = 749, + [934] = 674, + [935] = 769, + [936] = 753, + [937] = 774, + [938] = 684, + [939] = 684, + [940] = 684, + [941] = 684, + [942] = 684, + [943] = 684, + [944] = 684, + [945] = 684, + [946] = 684, + [947] = 674, + [948] = 684, + [949] = 674, + [950] = 684, + [951] = 672, + [952] = 672, + [953] = 752, + [954] = 874, + [955] = 827, + [956] = 684, + [957] = 674, + [958] = 672, + [959] = 751, + [960] = 874, + [961] = 827, + [962] = 756, + [963] = 674, + [964] = 672, + [965] = 757, + [966] = 874, + [967] = 874, + [968] = 827, [969] = 674, - [970] = 766, - [971] = 764, - [972] = 676, + [970] = 672, + [971] = 762, + [972] = 764, [973] = 674, - [974] = 769, - [975] = 770, - [976] = 676, + [974] = 672, + [975] = 758, + [976] = 754, [977] = 674, - [978] = 749, - [979] = 773, - [980] = 676, - [981] = 674, - [982] = 774, - [983] = 771, - [984] = 676, - [985] = 674, - [986] = 892, - [987] = 775, - [988] = 776, - [989] = 676, - [990] = 674, - [991] = 778, - [992] = 779, - [993] = 674, - [994] = 780, - [995] = 777, - [996] = 753, - [997] = 674, - [998] = 781, - [999] = 674, - [1000] = 848, - [1001] = 847, - [1002] = 866, - [1003] = 846, - [1004] = 844, - [1005] = 750, - [1006] = 842, - [1007] = 676, - [1008] = 841, - [1009] = 840, - [1010] = 839, - [1011] = 837, - [1012] = 836, - [1013] = 835, - [1014] = 834, - [1015] = 831, - [1016] = 830, - [1017] = 829, - [1018] = 828, - [1019] = 753, - [1020] = 827, - [1021] = 826, - [1022] = 825, - [1023] = 824, - [1024] = 823, - [1025] = 822, - [1026] = 821, - [1027] = 820, - [1028] = 818, - [1029] = 838, - [1030] = 816, - [1031] = 815, - [1032] = 845, - [1033] = 814, - [1034] = 813, - [1035] = 812, - [1036] = 810, - [1037] = 809, - [1038] = 808, - [1039] = 807, - [1040] = 806, - [1041] = 804, - [1042] = 803, - [1043] = 802, - [1044] = 801, - [1045] = 674, - [1046] = 800, - [1047] = 799, - [1048] = 798, - [1049] = 755, - [1050] = 797, - [1051] = 796, - [1052] = 817, - [1053] = 795, - [1054] = 794, - [1055] = 793, - [1056] = 792, - [1057] = 791, - [1058] = 790, - [1059] = 673, - [1060] = 789, - [1061] = 788, - [1062] = 787, - [1063] = 786, - [1064] = 785, - [1065] = 784, - [1066] = 783, - [1067] = 781, - [1068] = 780, - [1069] = 779, - [1070] = 778, - [1071] = 777, - [1072] = 776, - [1073] = 775, - [1074] = 774, - [1075] = 773, - [1076] = 784, - [1077] = 771, - [1078] = 770, - [1079] = 892, - [1080] = 769, - [1081] = 749, - [1082] = 766, - [1083] = 765, - [1084] = 764, - [1085] = 785, - [1086] = 783, - [1087] = 763, - [1088] = 848, - [1089] = 847, - [1090] = 866, - [1091] = 839, - [1092] = 674, - [1093] = 846, - [1094] = 844, - [1095] = 750, - [1096] = 842, - [1097] = 841, - [1098] = 840, - [1099] = 839, - [1100] = 676, - [1101] = 837, - [1102] = 836, - [1103] = 835, - [1104] = 834, - [1105] = 831, - [1106] = 830, - [1107] = 829, - [1108] = 847, - [1109] = 828, - [1110] = 827, - [1111] = 866, - [1112] = 753, - [1113] = 846, - [1114] = 826, - [1115] = 825, - [1116] = 824, - [1117] = 823, - [1118] = 822, - [1119] = 821, - [1120] = 820, - [1121] = 818, - [1122] = 838, - [1123] = 816, - [1124] = 815, - [1125] = 845, - [1126] = 814, - [1127] = 813, - [1128] = 844, - [1129] = 812, - [1130] = 750, - [1131] = 810, - [1132] = 809, - [1133] = 808, - [1134] = 807, - [1135] = 806, - [1136] = 804, - [1137] = 803, - [1138] = 842, - [1139] = 802, - [1140] = 801, - [1141] = 800, - [1142] = 755, - [1143] = 799, - [1144] = 841, - [1145] = 798, - [1146] = 797, - [1147] = 796, - [1148] = 817, - [1149] = 795, - [1150] = 794, - [1151] = 793, - [1152] = 792, - [1153] = 791, - [1154] = 790, - [1155] = 673, - [1156] = 789, - [1157] = 788, - [1158] = 787, - [1159] = 786, - [1160] = 785, - [1161] = 784, - [1162] = 783, - [1163] = 781, - [1164] = 780, - [1165] = 779, - [1166] = 778, - [1167] = 777, - [1168] = 776, - [1169] = 775, - [1170] = 774, - [1171] = 773, - [1172] = 892, - [1173] = 787, - [1174] = 771, - [1175] = 770, - [1176] = 769, - [1177] = 749, - [1178] = 766, - [1179] = 765, - [1180] = 764, - [1181] = 788, - [1182] = 789, - [1183] = 763, - [1184] = 840, - [1185] = 674, - [1186] = 848, - [1187] = 847, - [1188] = 866, - [1189] = 846, - [1190] = 844, - [1191] = 750, - [1192] = 842, - [1193] = 676, - [1194] = 841, - [1195] = 840, - [1196] = 839, - [1197] = 837, - [1198] = 836, - [1199] = 835, - [1200] = 834, - [1201] = 826, - [1202] = 831, - [1203] = 830, - [1204] = 753, - [1205] = 829, - [1206] = 828, - [1207] = 827, - [1208] = 826, - [1209] = 825, - [1210] = 824, - [1211] = 823, - [1212] = 822, - [1213] = 821, - [1214] = 820, - [1215] = 818, - [1216] = 838, - [1217] = 816, - [1218] = 815, - [1219] = 837, - [1220] = 814, - [1221] = 836, - [1222] = 813, - [1223] = 812, - [1224] = 810, - [1225] = 809, - [1226] = 808, - [1227] = 807, - [1228] = 806, - [1229] = 804, - [1230] = 803, - [1231] = 802, - [1232] = 755, - [1233] = 801, - [1234] = 835, - [1235] = 800, - [1236] = 799, - [1237] = 798, - [1238] = 797, - [1239] = 796, - [1240] = 817, - [1241] = 795, - [1242] = 794, - [1243] = 793, - [1244] = 792, - [1245] = 791, - [1246] = 790, - [1247] = 673, - [1248] = 789, - [1249] = 788, - [1250] = 787, - [1251] = 786, - [1252] = 785, - [1253] = 784, - [1254] = 783, - [1255] = 781, - [1256] = 780, - [1257] = 779, - [1258] = 778, - [1259] = 777, - [1260] = 776, - [1261] = 775, - [1262] = 774, - [1263] = 773, - [1264] = 673, - [1265] = 771, - [1266] = 770, - [1267] = 769, - [1268] = 749, - [1269] = 766, - [1270] = 765, - [1271] = 764, + [978] = 672, + [979] = 672, + [980] = 755, + [981] = 771, + [982] = 674, + [983] = 672, + [984] = 760, + [985] = 763, + [986] = 674, + [987] = 674, + [988] = 672, + [989] = 759, + [990] = 766, + [991] = 674, + [992] = 672, + [993] = 767, + [994] = 768, + [995] = 674, + [996] = 672, + [997] = 765, + [998] = 755, + [999] = 755, + [1000] = 772, + [1001] = 674, + [1002] = 672, + [1003] = 684, + [1004] = 778, + [1005] = 672, + [1006] = 779, + [1007] = 850, + [1008] = 833, + [1009] = 832, + [1010] = 827, + [1011] = 831, + [1012] = 834, + [1013] = 830, + [1014] = 829, + [1015] = 828, + [1016] = 826, + [1017] = 825, + [1018] = 824, + [1019] = 823, + [1020] = 822, + [1021] = 820, + [1022] = 819, + [1023] = 817, + [1024] = 814, + [1025] = 813, + [1026] = 812, + [1027] = 753, + [1028] = 811, + [1029] = 810, + [1030] = 809, + [1031] = 808, + [1032] = 807, + [1033] = 806, + [1034] = 805, + [1035] = 804, + [1036] = 803, + [1037] = 802, + [1038] = 891, + [1039] = 800, + [1040] = 799, + [1041] = 798, + [1042] = 797, + [1043] = 796, + [1044] = 794, + [1045] = 793, + [1046] = 792, + [1047] = 790, + [1048] = 789, + [1049] = 788, + [1050] = 787, + [1051] = 786, + [1052] = 785, + [1053] = 784, + [1054] = 783, + [1055] = 782, + [1056] = 781, + [1057] = 874, + [1058] = 780, + [1059] = 779, + [1060] = 778, + [1061] = 773, + [1062] = 772, + [1063] = 780, + [1064] = 768, + [1065] = 767, + [1066] = 766, + [1067] = 765, + [1068] = 763, + [1069] = 760, + [1070] = 672, + [1071] = 759, + [1072] = 754, + [1073] = 771, + [1074] = 764, + [1075] = 762, + [1076] = 758, + [1077] = 757, + [1078] = 674, + [1079] = 756, + [1080] = 752, + [1081] = 781, + [1082] = 751, + [1083] = 769, + [1084] = 749, + [1085] = 777, + [1086] = 750, + [1087] = 774, + [1088] = 775, + [1089] = 755, + [1090] = 782, + [1091] = 773, + [1092] = 776, + [1093] = 850, + [1094] = 833, + [1095] = 832, + [1096] = 831, + [1097] = 834, + [1098] = 830, + [1099] = 829, + [1100] = 828, + [1101] = 827, + [1102] = 826, + [1103] = 825, + [1104] = 824, + [1105] = 823, + [1106] = 674, + [1107] = 822, + [1108] = 820, + [1109] = 819, + [1110] = 817, + [1111] = 814, + [1112] = 813, + [1113] = 812, + [1114] = 811, + [1115] = 810, + [1116] = 809, + [1117] = 808, + [1118] = 753, + [1119] = 807, + [1120] = 806, + [1121] = 805, + [1122] = 804, + [1123] = 803, + [1124] = 802, + [1125] = 891, + [1126] = 800, + [1127] = 799, + [1128] = 798, + [1129] = 797, + [1130] = 796, + [1131] = 794, + [1132] = 793, + [1133] = 792, + [1134] = 790, + [1135] = 789, + [1136] = 788, + [1137] = 787, + [1138] = 786, + [1139] = 785, + [1140] = 784, + [1141] = 783, + [1142] = 782, + [1143] = 781, + [1144] = 780, + [1145] = 779, + [1146] = 778, + [1147] = 773, + [1148] = 874, + [1149] = 772, + [1150] = 684, + [1151] = 768, + [1152] = 767, + [1153] = 766, + [1154] = 765, + [1155] = 763, + [1156] = 760, + [1157] = 759, + [1158] = 754, + [1159] = 771, + [1160] = 764, + [1161] = 672, + [1162] = 762, + [1163] = 758, + [1164] = 757, + [1165] = 756, + [1166] = 752, + [1167] = 784, + [1168] = 751, + [1169] = 674, + [1170] = 769, + [1171] = 749, + [1172] = 777, + [1173] = 750, + [1174] = 774, + [1175] = 775, + [1176] = 785, + [1177] = 783, + [1178] = 776, + [1179] = 755, + [1180] = 850, + [1181] = 833, + [1182] = 832, + [1183] = 831, + [1184] = 834, + [1185] = 830, + [1186] = 829, + [1187] = 828, + [1188] = 826, + [1189] = 825, + [1190] = 824, + [1191] = 823, + [1192] = 822, + [1193] = 829, + [1194] = 820, + [1195] = 819, + [1196] = 769, + [1197] = 817, + [1198] = 814, + [1199] = 813, + [1200] = 812, + [1201] = 811, + [1202] = 810, + [1203] = 809, + [1204] = 808, + [1205] = 807, + [1206] = 806, + [1207] = 753, + [1208] = 805, + [1209] = 672, + [1210] = 804, + [1211] = 803, + [1212] = 802, + [1213] = 891, + [1214] = 800, + [1215] = 799, + [1216] = 798, + [1217] = 797, + [1218] = 796, + [1219] = 794, + [1220] = 793, + [1221] = 792, + [1222] = 790, + [1223] = 789, + [1224] = 788, + [1225] = 787, + [1226] = 786, + [1227] = 785, + [1228] = 784, + [1229] = 783, + [1230] = 782, + [1231] = 781, + [1232] = 780, + [1233] = 779, + [1234] = 778, + [1235] = 773, + [1236] = 772, + [1237] = 749, + [1238] = 684, + [1239] = 768, + [1240] = 767, + [1241] = 766, + [1242] = 765, + [1243] = 763, + [1244] = 760, + [1245] = 759, + [1246] = 754, + [1247] = 771, + [1248] = 776, + [1249] = 764, + [1250] = 850, + [1251] = 775, + [1252] = 774, + [1253] = 750, + [1254] = 777, + [1255] = 749, + [1256] = 769, + [1257] = 751, + [1258] = 674, + [1259] = 752, + [1260] = 756, + [1261] = 757, + [1262] = 758, + [1263] = 762, + [1264] = 764, + [1265] = 833, + [1266] = 771, + [1267] = 754, + [1268] = 755, + [1269] = 832, + [1270] = 759, + [1271] = 760, [1272] = 763, - [1273] = 834, - [1274] = 831, - [1275] = 764, - [1276] = 765, - [1277] = 766, - [1278] = 749, - [1279] = 769, - [1280] = 770, - [1281] = 771, - [1282] = 676, - [1283] = 773, - [1284] = 774, - [1285] = 775, - [1286] = 776, - [1287] = 777, - [1288] = 778, - [1289] = 779, - [1290] = 830, - [1291] = 780, - [1292] = 781, - [1293] = 753, - [1294] = 829, - [1295] = 783, - [1296] = 784, - [1297] = 785, - [1298] = 786, - [1299] = 787, - [1300] = 788, - [1301] = 789, - [1302] = 790, - [1303] = 790, - [1304] = 791, - [1305] = 792, - [1306] = 845, - [1307] = 793, - [1308] = 794, - [1309] = 828, - [1310] = 795, - [1311] = 827, - [1312] = 817, - [1313] = 796, - [1314] = 797, - [1315] = 798, - [1316] = 799, - [1317] = 800, - [1318] = 801, - [1319] = 802, - [1320] = 803, - [1321] = 804, - [1322] = 755, - [1323] = 806, - [1324] = 818, - [1325] = 807, - [1326] = 808, - [1327] = 809, - [1328] = 810, - [1329] = 812, - [1330] = 813, - [1331] = 814, - [1332] = 815, - [1333] = 816, - [1334] = 838, - [1335] = 818, - [1336] = 820, - [1337] = 821, - [1338] = 822, - [1339] = 823, - [1340] = 824, - [1341] = 825, - [1342] = 826, - [1343] = 827, - [1344] = 828, - [1345] = 829, - [1346] = 830, - [1347] = 831, - [1348] = 834, - [1349] = 835, - [1350] = 836, - [1351] = 837, - [1352] = 892, - [1353] = 839, - [1354] = 840, - [1355] = 841, - [1356] = 842, - [1357] = 750, - [1358] = 844, - [1359] = 846, - [1360] = 866, - [1361] = 847, - [1362] = 848, - [1363] = 763, - [1364] = 825, - [1365] = 824, - [1366] = 764, - [1367] = 765, - [1368] = 766, - [1369] = 749, - [1370] = 769, - [1371] = 770, - [1372] = 771, - [1373] = 676, - [1374] = 773, - [1375] = 774, - [1376] = 775, - [1377] = 776, - [1378] = 777, - [1379] = 778, - [1380] = 779, - [1381] = 823, - [1382] = 780, - [1383] = 781, - [1384] = 753, - [1385] = 822, - [1386] = 783, - [1387] = 784, - [1388] = 785, - [1389] = 786, - [1390] = 787, - [1391] = 788, - [1392] = 789, - [1393] = 786, - [1394] = 790, - [1395] = 791, - [1396] = 792, - [1397] = 845, - [1398] = 793, - [1399] = 794, - [1400] = 821, - [1401] = 795, - [1402] = 820, - [1403] = 817, - [1404] = 796, - [1405] = 797, - [1406] = 798, - [1407] = 799, - [1408] = 800, - [1409] = 801, - [1410] = 802, - [1411] = 803, - [1412] = 804, - [1413] = 755, - [1414] = 806, - [1415] = 807, - [1416] = 808, - [1417] = 809, - [1418] = 810, - [1419] = 812, - [1420] = 813, - [1421] = 814, - [1422] = 815, - [1423] = 816, - [1424] = 838, - [1425] = 818, - [1426] = 820, - [1427] = 821, - [1428] = 822, - [1429] = 823, - [1430] = 824, - [1431] = 825, - [1432] = 826, - [1433] = 827, - [1434] = 828, - [1435] = 829, - [1436] = 830, - [1437] = 831, - [1438] = 834, - [1439] = 835, - [1440] = 836, - [1441] = 837, - [1442] = 892, - [1443] = 839, - [1444] = 840, - [1445] = 841, - [1446] = 842, - [1447] = 750, - [1448] = 844, - [1449] = 846, - [1450] = 866, - [1451] = 847, - [1452] = 848, - [1453] = 763, - [1454] = 755, - [1455] = 838, - [1456] = 764, - [1457] = 765, - [1458] = 766, - [1459] = 749, - [1460] = 769, - [1461] = 770, - [1462] = 771, - [1463] = 816, - [1464] = 773, - [1465] = 774, - [1466] = 775, - [1467] = 776, - [1468] = 777, - [1469] = 778, - [1470] = 779, - [1471] = 815, - [1472] = 780, - [1473] = 781, - [1474] = 783, - [1475] = 784, - [1476] = 785, - [1477] = 786, - [1478] = 787, - [1479] = 788, - [1480] = 789, - [1481] = 763, - [1482] = 790, - [1483] = 791, - [1484] = 792, - [1485] = 845, - [1486] = 793, - [1487] = 794, - [1488] = 814, - [1489] = 795, - [1490] = 813, - [1491] = 817, - [1492] = 796, - [1493] = 797, - [1494] = 798, - [1495] = 799, - [1496] = 800, - [1497] = 801, - [1498] = 802, - [1499] = 803, - [1500] = 804, - [1501] = 806, - [1502] = 807, - [1503] = 808, - [1504] = 809, - [1505] = 810, - [1506] = 812, - [1507] = 813, - [1508] = 814, - [1509] = 815, - [1510] = 816, - [1511] = 838, - [1512] = 818, - [1513] = 820, - [1514] = 821, - [1515] = 822, - [1516] = 823, - [1517] = 824, - [1518] = 825, - [1519] = 826, - [1520] = 827, - [1521] = 828, - [1522] = 829, - [1523] = 830, - [1524] = 831, - [1525] = 834, - [1526] = 835, - [1527] = 836, - [1528] = 837, - [1529] = 892, - [1530] = 839, - [1531] = 840, - [1532] = 841, - [1533] = 842, - [1534] = 750, - [1535] = 844, - [1536] = 846, - [1537] = 866, - [1538] = 847, - [1539] = 848, - [1540] = 763, - [1541] = 812, - [1542] = 810, - [1543] = 764, - [1544] = 765, - [1545] = 766, - [1546] = 749, - [1547] = 769, - [1548] = 770, - [1549] = 771, - [1550] = 809, - [1551] = 773, - [1552] = 774, - [1553] = 775, - [1554] = 776, - [1555] = 777, - [1556] = 778, - [1557] = 779, - [1558] = 808, - [1559] = 780, - [1560] = 781, - [1561] = 783, - [1562] = 784, - [1563] = 785, - [1564] = 786, - [1565] = 787, - [1566] = 788, - [1567] = 789, - [1568] = 848, - [1569] = 790, - [1570] = 791, - [1571] = 792, - [1572] = 845, - [1573] = 793, - [1574] = 794, - [1575] = 807, - [1576] = 795, - [1577] = 806, + [1273] = 765, + [1274] = 766, + [1275] = 767, + [1276] = 768, + [1277] = 762, + [1278] = 772, + [1279] = 773, + [1280] = 827, + [1281] = 778, + [1282] = 779, + [1283] = 831, + [1284] = 780, + [1285] = 834, + [1286] = 781, + [1287] = 782, + [1288] = 783, + [1289] = 784, + [1290] = 785, + [1291] = 786, + [1292] = 787, + [1293] = 788, + [1294] = 789, + [1295] = 790, + [1296] = 753, + [1297] = 792, + [1298] = 830, + [1299] = 793, + [1300] = 794, + [1301] = 796, + [1302] = 797, + [1303] = 798, + [1304] = 799, + [1305] = 800, + [1306] = 891, + [1307] = 802, + [1308] = 803, + [1309] = 804, + [1310] = 805, + [1311] = 806, + [1312] = 807, + [1313] = 808, + [1314] = 809, + [1315] = 810, + [1316] = 811, + [1317] = 812, + [1318] = 813, + [1319] = 814, + [1320] = 817, + [1321] = 819, + [1322] = 820, + [1323] = 822, + [1324] = 823, + [1325] = 824, + [1326] = 874, + [1327] = 825, + [1328] = 826, + [1329] = 828, + [1330] = 829, + [1331] = 830, + [1332] = 834, + [1333] = 831, + [1334] = 832, + [1335] = 833, + [1336] = 850, + [1337] = 776, + [1338] = 817, + [1339] = 828, + [1340] = 775, + [1341] = 774, + [1342] = 751, + [1343] = 777, + [1344] = 749, + [1345] = 769, + [1346] = 751, + [1347] = 826, + [1348] = 752, + [1349] = 756, + [1350] = 757, + [1351] = 758, + [1352] = 762, + [1353] = 764, + [1354] = 825, + [1355] = 771, + [1356] = 754, + [1357] = 755, + [1358] = 758, + [1359] = 759, + [1360] = 760, + [1361] = 763, + [1362] = 765, + [1363] = 766, + [1364] = 767, + [1365] = 768, + [1366] = 757, + [1367] = 772, + [1368] = 773, + [1369] = 827, + [1370] = 778, + [1371] = 779, + [1372] = 824, + [1373] = 780, + [1374] = 823, + [1375] = 781, + [1376] = 782, + [1377] = 783, + [1378] = 784, + [1379] = 785, + [1380] = 786, + [1381] = 787, + [1382] = 788, + [1383] = 789, + [1384] = 790, + [1385] = 753, + [1386] = 792, + [1387] = 793, + [1388] = 794, + [1389] = 796, + [1390] = 797, + [1391] = 798, + [1392] = 799, + [1393] = 800, + [1394] = 891, + [1395] = 802, + [1396] = 803, + [1397] = 804, + [1398] = 805, + [1399] = 806, + [1400] = 807, + [1401] = 808, + [1402] = 809, + [1403] = 810, + [1404] = 811, + [1405] = 812, + [1406] = 813, + [1407] = 814, + [1408] = 817, + [1409] = 819, + [1410] = 820, + [1411] = 822, + [1412] = 823, + [1413] = 824, + [1414] = 874, + [1415] = 825, + [1416] = 826, + [1417] = 828, + [1418] = 829, + [1419] = 830, + [1420] = 834, + [1421] = 831, + [1422] = 832, + [1423] = 833, + [1424] = 850, + [1425] = 776, + [1426] = 822, + [1427] = 820, + [1428] = 775, + [1429] = 774, + [1430] = 750, + [1431] = 777, + [1432] = 749, + [1433] = 769, + [1434] = 751, + [1435] = 819, + [1436] = 752, + [1437] = 756, + [1438] = 757, + [1439] = 758, + [1440] = 762, + [1441] = 764, + [1442] = 806, + [1443] = 771, + [1444] = 754, + [1445] = 759, + [1446] = 760, + [1447] = 763, + [1448] = 765, + [1449] = 766, + [1450] = 767, + [1451] = 768, + [1452] = 756, + [1453] = 772, + [1454] = 773, + [1455] = 827, + [1456] = 778, + [1457] = 779, + [1458] = 814, + [1459] = 780, + [1460] = 813, + [1461] = 781, + [1462] = 782, + [1463] = 783, + [1464] = 784, + [1465] = 785, + [1466] = 786, + [1467] = 787, + [1468] = 788, + [1469] = 789, + [1470] = 790, + [1471] = 792, + [1472] = 793, + [1473] = 794, + [1474] = 796, + [1475] = 797, + [1476] = 798, + [1477] = 799, + [1478] = 800, + [1479] = 891, + [1480] = 802, + [1481] = 803, + [1482] = 804, + [1483] = 805, + [1484] = 806, + [1485] = 807, + [1486] = 808, + [1487] = 809, + [1488] = 810, + [1489] = 811, + [1490] = 812, + [1491] = 813, + [1492] = 814, + [1493] = 817, + [1494] = 819, + [1495] = 820, + [1496] = 822, + [1497] = 823, + [1498] = 824, + [1499] = 874, + [1500] = 825, + [1501] = 826, + [1502] = 828, + [1503] = 829, + [1504] = 830, + [1505] = 834, + [1506] = 831, + [1507] = 832, + [1508] = 833, + [1509] = 850, + [1510] = 776, + [1511] = 812, + [1512] = 811, + [1513] = 775, + [1514] = 774, + [1515] = 750, + [1516] = 777, + [1517] = 749, + [1518] = 769, + [1519] = 751, + [1520] = 810, + [1521] = 752, + [1522] = 756, + [1523] = 757, + [1524] = 758, + [1525] = 762, + [1526] = 764, + [1527] = 809, + [1528] = 771, + [1529] = 754, + [1530] = 759, + [1531] = 760, + [1532] = 763, + [1533] = 765, + [1534] = 766, + [1535] = 767, + [1536] = 768, + [1537] = 684, + [1538] = 772, + [1539] = 773, + [1540] = 827, + [1541] = 778, + [1542] = 779, + [1543] = 808, + [1544] = 780, + [1545] = 807, + [1546] = 781, + [1547] = 782, + [1548] = 783, + [1549] = 784, + [1550] = 785, + [1551] = 786, + [1552] = 787, + [1553] = 788, + [1554] = 789, + [1555] = 790, + [1556] = 792, + [1557] = 793, + [1558] = 794, + [1559] = 796, + [1560] = 797, + [1561] = 798, + [1562] = 799, + [1563] = 800, + [1564] = 891, + [1565] = 802, + [1566] = 803, + [1567] = 804, + [1568] = 805, + [1569] = 806, + [1570] = 807, + [1571] = 808, + [1572] = 809, + [1573] = 810, + [1574] = 811, + [1575] = 812, + [1576] = 813, + [1577] = 814, [1578] = 817, - [1579] = 796, - [1580] = 797, - [1581] = 798, - [1582] = 799, - [1583] = 800, - [1584] = 801, - [1585] = 802, - [1586] = 803, - [1587] = 804, - [1588] = 806, - [1589] = 807, - [1590] = 808, - [1591] = 809, - [1592] = 810, - [1593] = 812, - [1594] = 813, - [1595] = 814, - [1596] = 815, - [1597] = 816, - [1598] = 838, - [1599] = 818, - [1600] = 820, - [1601] = 821, - [1602] = 822, - [1603] = 823, - [1604] = 824, - [1605] = 825, - [1606] = 826, - [1607] = 827, - [1608] = 828, - [1609] = 829, - [1610] = 830, - [1611] = 831, - [1612] = 834, - [1613] = 835, - [1614] = 836, - [1615] = 837, - [1616] = 892, - [1617] = 839, - [1618] = 840, - [1619] = 841, - [1620] = 842, - [1621] = 750, - [1622] = 844, - [1623] = 846, - [1624] = 866, - [1625] = 847, - [1626] = 848, - [1627] = 763, - [1628] = 801, - [1629] = 804, - [1630] = 764, - [1631] = 765, - [1632] = 766, - [1633] = 749, - [1634] = 769, - [1635] = 770, - [1636] = 771, - [1637] = 803, - [1638] = 773, - [1639] = 774, - [1640] = 775, - [1641] = 776, - [1642] = 777, - [1643] = 778, - [1644] = 779, - [1645] = 780, - [1646] = 781, - [1647] = 783, - [1648] = 784, - [1649] = 785, - [1650] = 786, - [1651] = 787, - [1652] = 788, - [1653] = 789, - [1654] = 673, - [1655] = 790, - [1656] = 791, - [1657] = 792, - [1658] = 845, - [1659] = 793, - [1660] = 794, - [1661] = 795, - [1662] = 802, - [1663] = 817, - [1664] = 796, - [1665] = 797, - [1666] = 798, - [1667] = 799, - [1668] = 800, - [1669] = 801, - [1670] = 802, - [1671] = 803, - [1672] = 804, - [1673] = 806, - [1674] = 807, - [1675] = 808, - [1676] = 809, - [1677] = 810, - [1678] = 812, - [1679] = 813, - [1680] = 814, - [1681] = 815, - [1682] = 816, - [1683] = 838, - [1684] = 818, - [1685] = 820, - [1686] = 821, - [1687] = 822, - [1688] = 823, - [1689] = 824, - [1690] = 825, - [1691] = 826, - [1692] = 827, - [1693] = 828, - [1694] = 829, - [1695] = 830, - [1696] = 831, - [1697] = 834, - [1698] = 835, - [1699] = 836, - [1700] = 837, - [1701] = 892, - [1702] = 839, - [1703] = 840, - [1704] = 841, - [1705] = 842, - [1706] = 750, - [1707] = 844, - [1708] = 846, - [1709] = 866, - [1710] = 847, - [1711] = 848, - [1712] = 763, - [1713] = 793, - [1714] = 800, - [1715] = 764, - [1716] = 765, - [1717] = 766, - [1718] = 799, - [1719] = 769, - [1720] = 770, - [1721] = 771, - [1722] = 798, - [1723] = 773, - [1724] = 774, - [1725] = 775, - [1726] = 776, - [1727] = 777, - [1728] = 778, - [1729] = 779, - [1730] = 780, - [1731] = 781, - [1732] = 783, - [1733] = 784, - [1734] = 785, - [1735] = 786, - [1736] = 787, - [1737] = 788, - [1738] = 789, - [1739] = 847, - [1740] = 790, - [1741] = 791, - [1742] = 792, - [1743] = 845, - [1744] = 793, - [1745] = 794, - [1746] = 795, - [1747] = 797, - [1748] = 817, - [1749] = 796, - [1750] = 797, - [1751] = 798, - [1752] = 799, - [1753] = 800, - [1754] = 801, - [1755] = 802, - [1756] = 803, - [1757] = 804, - [1758] = 806, - [1759] = 807, - [1760] = 808, - [1761] = 809, - [1762] = 810, - [1763] = 812, - [1764] = 813, - [1765] = 814, - [1766] = 815, - [1767] = 816, - [1768] = 838, - [1769] = 818, - [1770] = 820, - [1771] = 821, - [1772] = 822, - [1773] = 823, - [1774] = 824, - [1775] = 825, - [1776] = 826, - [1777] = 827, - [1778] = 828, - [1779] = 829, - [1780] = 830, - [1781] = 831, - [1782] = 834, - [1783] = 835, - [1784] = 836, - [1785] = 837, - [1786] = 892, - [1787] = 839, - [1788] = 840, - [1789] = 841, - [1790] = 842, - [1791] = 750, - [1792] = 844, - [1793] = 846, - [1794] = 866, - [1795] = 847, - [1796] = 848, - [1797] = 763, - [1798] = 796, - [1799] = 817, - [1800] = 764, - [1801] = 765, - [1802] = 766, - [1803] = 749, - [1804] = 769, - [1805] = 770, - [1806] = 771, - [1807] = 795, - [1808] = 773, - [1809] = 774, - [1810] = 775, - [1811] = 776, - [1812] = 777, - [1813] = 778, - [1814] = 779, - [1815] = 780, - [1816] = 781, - [1817] = 783, - [1818] = 784, - [1819] = 785, - [1820] = 786, - [1821] = 787, - [1822] = 788, - [1823] = 789, - [1824] = 673, - [1825] = 790, - [1826] = 791, - [1827] = 792, - [1828] = 845, - [1829] = 793, - [1830] = 794, - [1831] = 795, - [1832] = 794, - [1833] = 817, - [1834] = 796, - [1835] = 797, - [1836] = 798, - [1837] = 799, - [1838] = 800, - [1839] = 801, - [1840] = 802, - [1841] = 803, - [1842] = 804, - [1843] = 806, - [1844] = 807, - [1845] = 808, - [1846] = 809, - [1847] = 810, - [1848] = 812, - [1849] = 813, - [1850] = 814, - [1851] = 815, - [1852] = 816, - [1853] = 838, - [1854] = 818, - [1855] = 820, - [1856] = 821, - [1857] = 822, - [1858] = 823, - [1859] = 824, - [1860] = 825, - [1861] = 826, - [1862] = 827, - [1863] = 828, - [1864] = 829, - [1865] = 830, - [1866] = 831, - [1867] = 834, - [1868] = 835, - [1869] = 836, - [1870] = 837, - [1871] = 892, - [1872] = 839, - [1873] = 840, - [1874] = 841, - [1875] = 842, - [1876] = 750, - [1877] = 844, - [1878] = 846, - [1879] = 866, - [1880] = 847, - [1881] = 848, - [1882] = 763, - [1883] = 791, - [1884] = 866, - [1885] = 764, - [1886] = 765, - [1887] = 766, - [1888] = 749, - [1889] = 769, - [1890] = 770, - [1891] = 771, - [1892] = 792, - [1893] = 773, - [1894] = 774, - [1895] = 775, - [1896] = 776, - [1897] = 777, - [1898] = 778, - [1899] = 779, - [1900] = 780, - [1901] = 781, - [1902] = 783, - [1903] = 784, - [1904] = 785, - [1905] = 786, - [1906] = 787, - [1907] = 788, - [1908] = 789, - [1909] = 673, - [1910] = 790, - [1911] = 791, - [1912] = 792, - [1913] = 846, - [1914] = 793, - [1915] = 794, - [1916] = 795, - [1917] = 817, - [1918] = 796, - [1919] = 797, - [1920] = 798, - [1921] = 799, - [1922] = 800, - [1923] = 801, - [1924] = 802, - [1925] = 803, - [1926] = 804, - [1927] = 806, - [1928] = 807, - [1929] = 808, - [1930] = 809, - [1931] = 810, - [1932] = 812, - [1933] = 813, - [1934] = 814, - [1935] = 815, - [1936] = 816, - [1937] = 838, - [1938] = 818, - [1939] = 820, - [1940] = 821, - [1941] = 822, - [1942] = 823, - [1943] = 824, - [1944] = 825, - [1945] = 826, - [1946] = 827, - [1947] = 828, - [1948] = 829, + [1579] = 819, + [1580] = 820, + [1581] = 822, + [1582] = 823, + [1583] = 824, + [1584] = 874, + [1585] = 825, + [1586] = 826, + [1587] = 828, + [1588] = 829, + [1589] = 830, + [1590] = 834, + [1591] = 831, + [1592] = 832, + [1593] = 833, + [1594] = 850, + [1595] = 776, + [1596] = 798, + [1597] = 805, + [1598] = 775, + [1599] = 774, + [1600] = 750, + [1601] = 777, + [1602] = 749, + [1603] = 769, + [1604] = 751, + [1605] = 804, + [1606] = 752, + [1607] = 756, + [1608] = 757, + [1609] = 758, + [1610] = 762, + [1611] = 764, + [1612] = 771, + [1613] = 754, + [1614] = 759, + [1615] = 760, + [1616] = 763, + [1617] = 765, + [1618] = 766, + [1619] = 767, + [1620] = 768, + [1621] = 752, + [1622] = 772, + [1623] = 773, + [1624] = 827, + [1625] = 778, + [1626] = 779, + [1627] = 780, + [1628] = 803, + [1629] = 781, + [1630] = 782, + [1631] = 783, + [1632] = 784, + [1633] = 785, + [1634] = 786, + [1635] = 787, + [1636] = 788, + [1637] = 789, + [1638] = 790, + [1639] = 792, + [1640] = 793, + [1641] = 794, + [1642] = 796, + [1643] = 797, + [1644] = 798, + [1645] = 799, + [1646] = 800, + [1647] = 891, + [1648] = 802, + [1649] = 803, + [1650] = 804, + [1651] = 805, + [1652] = 806, + [1653] = 807, + [1654] = 808, + [1655] = 809, + [1656] = 810, + [1657] = 811, + [1658] = 812, + [1659] = 813, + [1660] = 814, + [1661] = 817, + [1662] = 819, + [1663] = 820, + [1664] = 822, + [1665] = 823, + [1666] = 824, + [1667] = 874, + [1668] = 825, + [1669] = 826, + [1670] = 828, + [1671] = 829, + [1672] = 830, + [1673] = 834, + [1674] = 831, + [1675] = 832, + [1676] = 833, + [1677] = 850, + [1678] = 776, + [1679] = 802, + [1680] = 891, + [1681] = 775, + [1682] = 774, + [1683] = 750, + [1684] = 777, + [1685] = 800, + [1686] = 769, + [1687] = 751, + [1688] = 799, + [1689] = 752, + [1690] = 756, + [1691] = 757, + [1692] = 758, + [1693] = 762, + [1694] = 764, + [1695] = 771, + [1696] = 754, + [1697] = 759, + [1698] = 760, + [1699] = 763, + [1700] = 765, + [1701] = 766, + [1702] = 767, + [1703] = 768, + [1704] = 684, + [1705] = 772, + [1706] = 773, + [1707] = 827, + [1708] = 778, + [1709] = 779, + [1710] = 780, + [1711] = 792, + [1712] = 781, + [1713] = 782, + [1714] = 783, + [1715] = 784, + [1716] = 785, + [1717] = 786, + [1718] = 787, + [1719] = 788, + [1720] = 789, + [1721] = 790, + [1722] = 792, + [1723] = 793, + [1724] = 794, + [1725] = 796, + [1726] = 797, + [1727] = 798, + [1728] = 799, + [1729] = 800, + [1730] = 891, + [1731] = 802, + [1732] = 803, + [1733] = 804, + [1734] = 805, + [1735] = 806, + [1736] = 807, + [1737] = 808, + [1738] = 809, + [1739] = 810, + [1740] = 811, + [1741] = 812, + [1742] = 813, + [1743] = 814, + [1744] = 817, + [1745] = 819, + [1746] = 820, + [1747] = 822, + [1748] = 823, + [1749] = 824, + [1750] = 874, + [1751] = 825, + [1752] = 826, + [1753] = 828, + [1754] = 829, + [1755] = 830, + [1756] = 834, + [1757] = 831, + [1758] = 832, + [1759] = 833, + [1760] = 850, + [1761] = 776, + [1762] = 797, + [1763] = 796, + [1764] = 775, + [1765] = 774, + [1766] = 750, + [1767] = 777, + [1768] = 749, + [1769] = 769, + [1770] = 751, + [1771] = 794, + [1772] = 752, + [1773] = 756, + [1774] = 757, + [1775] = 758, + [1776] = 762, + [1777] = 764, + [1778] = 771, + [1779] = 754, + [1780] = 759, + [1781] = 760, + [1782] = 763, + [1783] = 765, + [1784] = 766, + [1785] = 767, + [1786] = 768, + [1787] = 684, + [1788] = 772, + [1789] = 773, + [1790] = 827, + [1791] = 778, + [1792] = 779, + [1793] = 780, + [1794] = 793, + [1795] = 781, + [1796] = 782, + [1797] = 783, + [1798] = 784, + [1799] = 785, + [1800] = 786, + [1801] = 787, + [1802] = 788, + [1803] = 789, + [1804] = 790, + [1805] = 792, + [1806] = 793, + [1807] = 794, + [1808] = 796, + [1809] = 797, + [1810] = 798, + [1811] = 799, + [1812] = 800, + [1813] = 891, + [1814] = 802, + [1815] = 803, + [1816] = 804, + [1817] = 805, + [1818] = 806, + [1819] = 807, + [1820] = 808, + [1821] = 809, + [1822] = 810, + [1823] = 811, + [1824] = 812, + [1825] = 813, + [1826] = 814, + [1827] = 817, + [1828] = 819, + [1829] = 820, + [1830] = 822, + [1831] = 823, + [1832] = 824, + [1833] = 874, + [1834] = 825, + [1835] = 826, + [1836] = 828, + [1837] = 829, + [1838] = 830, + [1839] = 834, + [1840] = 831, + [1841] = 832, + [1842] = 833, + [1843] = 850, + [1844] = 776, + [1845] = 786, + [1846] = 753, + [1847] = 775, + [1848] = 774, + [1849] = 750, + [1850] = 777, + [1851] = 749, + [1852] = 769, + [1853] = 751, + [1854] = 790, + [1855] = 752, + [1856] = 756, + [1857] = 757, + [1858] = 758, + [1859] = 762, + [1860] = 764, + [1861] = 771, + [1862] = 754, + [1863] = 759, + [1864] = 760, + [1865] = 763, + [1866] = 765, + [1867] = 766, + [1868] = 767, + [1869] = 768, + [1870] = 684, + [1871] = 772, + [1872] = 773, + [1873] = 787, + [1874] = 778, + [1875] = 779, + [1876] = 780, + [1877] = 781, + [1878] = 782, + [1879] = 783, + [1880] = 784, + [1881] = 785, + [1882] = 786, + [1883] = 787, + [1884] = 788, + [1885] = 789, + [1886] = 790, + [1887] = 792, + [1888] = 793, + [1889] = 794, + [1890] = 796, + [1891] = 797, + [1892] = 798, + [1893] = 799, + [1894] = 800, + [1895] = 891, + [1896] = 802, + [1897] = 803, + [1898] = 804, + [1899] = 805, + [1900] = 806, + [1901] = 807, + [1902] = 808, + [1903] = 809, + [1904] = 810, + [1905] = 811, + [1906] = 812, + [1907] = 813, + [1908] = 814, + [1909] = 817, + [1910] = 819, + [1911] = 820, + [1912] = 822, + [1913] = 823, + [1914] = 824, + [1915] = 825, + [1916] = 826, + [1917] = 828, + [1918] = 829, + [1919] = 830, + [1920] = 834, + [1921] = 831, + [1922] = 832, + [1923] = 833, + [1924] = 850, + [1925] = 776, + [1926] = 789, + [1927] = 788, + [1928] = 775, + [1929] = 774, + [1930] = 750, + [1931] = 777, + [1932] = 874, + [1933] = 827, + [1934] = 825, + [1935] = 751, + [1936] = 790, + [1937] = 792, + [1938] = 793, + [1939] = 794, + [1940] = 813, + [1941] = 874, + [1942] = 752, + [1943] = 776, + [1944] = 850, + [1945] = 833, + [1946] = 832, + [1947] = 831, + [1948] = 834, [1949] = 830, - [1950] = 831, - [1951] = 834, - [1952] = 835, - [1953] = 836, - [1954] = 837, - [1955] = 844, - [1956] = 839, - [1957] = 840, - [1958] = 841, - [1959] = 842, - [1960] = 845, - [1961] = 892, - [1962] = 793, - [1963] = 784, - [1964] = 835, - [1965] = 845, - [1966] = 763, - [1967] = 834, - [1968] = 845, - [1969] = 831, - [1970] = 839, - [1971] = 830, - [1972] = 848, - [1973] = 847, - [1974] = 866, - [1975] = 846, - [1976] = 844, - [1977] = 750, - [1978] = 842, - [1979] = 841, - [1980] = 840, - [1981] = 808, - [1982] = 837, - [1983] = 836, - [1984] = 835, - [1985] = 834, - [1986] = 831, - [1987] = 830, - [1988] = 829, - [1989] = 828, - [1990] = 827, - [1991] = 826, - [1992] = 825, - [1993] = 824, - [1994] = 823, - [1995] = 822, - [1996] = 821, - [1997] = 820, - [1998] = 818, - [1999] = 845, - [2000] = 838, - [2001] = 816, - [2002] = 815, - [2003] = 814, - [2004] = 813, - [2005] = 812, - [2006] = 810, - [2007] = 809, - [2008] = 808, - [2009] = 807, - [2010] = 806, - [2011] = 804, - [2012] = 803, - [2013] = 802, - [2014] = 801, - [2015] = 800, - [2016] = 799, - [2017] = 798, - [2018] = 797, - [2019] = 796, - [2020] = 817, - [2021] = 795, - [2022] = 794, - [2023] = 793, - [2024] = 792, - [2025] = 791, - [2026] = 790, - [2027] = 829, - [2028] = 789, - [2029] = 788, - [2030] = 787, - [2031] = 786, - [2032] = 785, - [2033] = 784, - [2034] = 783, - [2035] = 892, - [2036] = 781, - [2037] = 780, - [2038] = 779, - [2039] = 778, - [2040] = 777, - [2041] = 892, - [2042] = 776, - [2043] = 775, - [2044] = 774, - [2045] = 773, - [2046] = 771, - [2047] = 770, - [2048] = 769, - [2049] = 749, - [2050] = 766, - [2051] = 765, - [2052] = 764, - [2053] = 763, - [2054] = 848, - [2055] = 847, - [2056] = 866, - [2057] = 846, - [2058] = 844, - [2059] = 750, - [2060] = 842, - [2061] = 841, - [2062] = 840, - [2063] = 839, - [2064] = 837, - [2065] = 836, - [2066] = 835, - [2067] = 834, - [2068] = 831, - [2069] = 830, - [2070] = 829, - [2071] = 828, - [2072] = 827, - [2073] = 826, - [2074] = 825, - [2075] = 824, - [2076] = 823, - [2077] = 822, - [2078] = 821, - [2079] = 820, - [2080] = 818, - [2081] = 838, - [2082] = 816, - [2083] = 845, - [2084] = 815, - [2085] = 814, - [2086] = 813, - [2087] = 812, - [2088] = 810, - [2089] = 809, - [2090] = 799, - [2091] = 807, - [2092] = 806, - [2093] = 804, - [2094] = 803, - [2095] = 802, - [2096] = 801, - [2097] = 800, - [2098] = 773, - [2099] = 798, - [2100] = 797, - [2101] = 796, - [2102] = 817, - [2103] = 795, - [2104] = 794, - [2105] = 793, - [2106] = 792, - [2107] = 791, - [2108] = 790, - [2109] = 828, - [2110] = 789, - [2111] = 788, - [2112] = 787, - [2113] = 786, - [2114] = 785, - [2115] = 784, - [2116] = 783, - [2117] = 781, - [2118] = 780, - [2119] = 779, - [2120] = 778, - [2121] = 777, - [2122] = 776, - [2123] = 775, - [2124] = 774, - [2125] = 892, - [2126] = 773, - [2127] = 771, - [2128] = 770, - [2129] = 769, - [2130] = 749, - [2131] = 766, - [2132] = 765, - [2133] = 764, - [2134] = 763, - [2135] = 848, - [2136] = 847, - [2137] = 866, - [2138] = 846, - [2139] = 844, - [2140] = 750, - [2141] = 842, - [2142] = 841, - [2143] = 840, - [2144] = 839, - [2145] = 837, - [2146] = 836, - [2147] = 835, - [2148] = 834, - [2149] = 831, - [2150] = 830, - [2151] = 829, - [2152] = 828, - [2153] = 827, - [2154] = 826, - [2155] = 825, - [2156] = 824, - [2157] = 823, - [2158] = 822, - [2159] = 821, - [2160] = 820, - [2161] = 818, - [2162] = 838, - [2163] = 816, - [2164] = 815, - [2165] = 814, - [2166] = 813, - [2167] = 845, - [2168] = 812, - [2169] = 810, - [2170] = 809, - [2171] = 808, - [2172] = 807, - [2173] = 763, - [2174] = 806, - [2175] = 827, - [2176] = 803, - [2177] = 802, - [2178] = 801, - [2179] = 800, - [2180] = 799, - [2181] = 798, - [2182] = 797, - [2183] = 796, - [2184] = 817, - [2185] = 764, - [2186] = 795, - [2187] = 765, - [2188] = 794, - [2189] = 793, - [2190] = 792, - [2191] = 791, - [2192] = 790, - [2193] = 766, - [2194] = 789, - [2195] = 788, - [2196] = 787, - [2197] = 786, - [2198] = 785, - [2199] = 784, - [2200] = 783, - [2201] = 749, - [2202] = 769, - [2203] = 781, + [1950] = 829, + [1951] = 828, + [1952] = 826, + [1953] = 825, + [1954] = 824, + [1955] = 827, + [1956] = 823, + [1957] = 822, + [1958] = 820, + [1959] = 819, + [1960] = 817, + [1961] = 814, + [1962] = 813, + [1963] = 812, + [1964] = 811, + [1965] = 810, + [1966] = 809, + [1967] = 808, + [1968] = 807, + [1969] = 806, + [1970] = 805, + [1971] = 804, + [1972] = 803, + [1973] = 802, + [1974] = 891, + [1975] = 800, + [1976] = 799, + [1977] = 798, + [1978] = 797, + [1979] = 796, + [1980] = 794, + [1981] = 793, + [1982] = 792, + [1983] = 790, + [1984] = 789, + [1985] = 788, + [1986] = 787, + [1987] = 786, + [1988] = 785, + [1989] = 784, + [1990] = 783, + [1991] = 782, + [1992] = 781, + [1993] = 775, + [1994] = 780, + [1995] = 779, + [1996] = 778, + [1997] = 874, + [1998] = 773, + [1999] = 772, + [2000] = 776, + [2001] = 768, + [2002] = 767, + [2003] = 766, + [2004] = 765, + [2005] = 763, + [2006] = 760, + [2007] = 759, + [2008] = 750, + [2009] = 754, + [2010] = 771, + [2011] = 777, + [2012] = 764, + [2013] = 762, + [2014] = 758, + [2015] = 757, + [2016] = 756, + [2017] = 808, + [2018] = 751, + [2019] = 769, + [2020] = 749, + [2021] = 777, + [2022] = 750, + [2023] = 774, + [2024] = 775, + [2025] = 749, + [2026] = 776, + [2027] = 850, + [2028] = 833, + [2029] = 832, + [2030] = 831, + [2031] = 834, + [2032] = 830, + [2033] = 829, + [2034] = 828, + [2035] = 826, + [2036] = 825, + [2037] = 827, + [2038] = 824, + [2039] = 823, + [2040] = 822, + [2041] = 820, + [2042] = 819, + [2043] = 817, + [2044] = 814, + [2045] = 813, + [2046] = 812, + [2047] = 811, + [2048] = 810, + [2049] = 809, + [2050] = 799, + [2051] = 807, + [2052] = 806, + [2053] = 805, + [2054] = 804, + [2055] = 803, + [2056] = 802, + [2057] = 891, + [2058] = 800, + [2059] = 799, + [2060] = 798, + [2061] = 797, + [2062] = 796, + [2063] = 794, + [2064] = 793, + [2065] = 769, + [2066] = 792, + [2067] = 790, + [2068] = 789, + [2069] = 788, + [2070] = 751, + [2071] = 787, + [2072] = 786, + [2073] = 785, + [2074] = 784, + [2075] = 783, + [2076] = 782, + [2077] = 781, + [2078] = 780, + [2079] = 874, + [2080] = 752, + [2081] = 779, + [2082] = 778, + [2083] = 773, + [2084] = 772, + [2085] = 796, + [2086] = 768, + [2087] = 767, + [2088] = 766, + [2089] = 765, + [2090] = 763, + [2091] = 760, + [2092] = 759, + [2093] = 797, + [2094] = 756, + [2095] = 754, + [2096] = 771, + [2097] = 757, + [2098] = 764, + [2099] = 762, + [2100] = 758, + [2101] = 757, + [2102] = 756, + [2103] = 752, + [2104] = 751, + [2105] = 769, + [2106] = 749, + [2107] = 777, + [2108] = 750, + [2109] = 774, + [2110] = 775, + [2111] = 774, + [2112] = 776, + [2113] = 850, + [2114] = 833, + [2115] = 832, + [2116] = 831, + [2117] = 834, + [2118] = 830, + [2119] = 827, + [2120] = 829, + [2121] = 828, + [2122] = 826, + [2123] = 825, + [2124] = 824, + [2125] = 823, + [2126] = 822, + [2127] = 820, + [2128] = 819, + [2129] = 817, + [2130] = 814, + [2131] = 813, + [2132] = 812, + [2133] = 811, + [2134] = 810, + [2135] = 809, + [2136] = 808, + [2137] = 807, + [2138] = 806, + [2139] = 805, + [2140] = 804, + [2141] = 803, + [2142] = 802, + [2143] = 891, + [2144] = 800, + [2145] = 798, + [2146] = 798, + [2147] = 797, + [2148] = 796, + [2149] = 794, + [2150] = 793, + [2151] = 762, + [2152] = 792, + [2153] = 790, + [2154] = 789, + [2155] = 788, + [2156] = 764, + [2157] = 787, + [2158] = 786, + [2159] = 785, + [2160] = 784, + [2161] = 874, + [2162] = 783, + [2163] = 782, + [2164] = 781, + [2165] = 771, + [2166] = 780, + [2167] = 754, + [2168] = 779, + [2169] = 778, + [2170] = 773, + [2171] = 772, + [2172] = 776, + [2173] = 760, + [2174] = 768, + [2175] = 775, + [2176] = 774, + [2177] = 750, + [2178] = 777, + [2179] = 749, + [2180] = 769, + [2181] = 751, + [2182] = 767, + [2183] = 752, + [2184] = 756, + [2185] = 757, + [2186] = 758, + [2187] = 762, + [2188] = 764, + [2189] = 771, + [2190] = 754, + [2191] = 759, + [2192] = 760, + [2193] = 763, + [2194] = 765, + [2195] = 766, + [2196] = 767, + [2197] = 768, + [2198] = 827, + [2199] = 772, + [2200] = 773, + [2201] = 827, + [2202] = 778, + [2203] = 779, [2204] = 780, - [2205] = 770, - [2206] = 779, - [2207] = 778, - [2208] = 777, - [2209] = 892, - [2210] = 776, - [2211] = 775, - [2212] = 774, - [2213] = 766, - [2214] = 771, - [2215] = 770, - [2216] = 769, - [2217] = 749, - [2218] = 750, - [2219] = 765, - [2220] = 763, - [2221] = 764, - [2222] = 771, - [2223] = 764, - [2224] = 765, - [2225] = 766, - [2226] = 749, - [2227] = 769, - [2228] = 770, - [2229] = 771, - [2230] = 763, - [2231] = 773, - [2232] = 774, - [2233] = 775, - [2234] = 776, - [2235] = 777, - [2236] = 778, - [2237] = 779, - [2238] = 780, - [2239] = 781, - [2240] = 783, - [2241] = 784, - [2242] = 785, - [2243] = 786, - [2244] = 787, - [2245] = 788, - [2246] = 789, - [2247] = 848, - [2248] = 790, - [2249] = 791, - [2250] = 792, - [2251] = 845, - [2252] = 793, - [2253] = 794, - [2254] = 795, - [2255] = 817, - [2256] = 796, - [2257] = 797, - [2258] = 798, - [2259] = 799, - [2260] = 800, - [2261] = 801, - [2262] = 802, - [2263] = 803, - [2264] = 804, - [2265] = 806, - [2266] = 807, - [2267] = 808, - [2268] = 809, - [2269] = 810, - [2270] = 812, - [2271] = 813, - [2272] = 814, - [2273] = 815, - [2274] = 816, - [2275] = 838, - [2276] = 818, - [2277] = 820, - [2278] = 821, - [2279] = 822, - [2280] = 823, - [2281] = 824, - [2282] = 825, - [2283] = 826, - [2284] = 827, - [2285] = 828, - [2286] = 829, - [2287] = 830, - [2288] = 831, - [2289] = 834, - [2290] = 835, - [2291] = 836, - [2292] = 837, - [2293] = 892, - [2294] = 839, - [2295] = 840, - [2296] = 841, - [2297] = 842, - [2298] = 750, - [2299] = 844, - [2300] = 846, - [2301] = 866, - [2302] = 847, - [2303] = 848, - [2304] = 763, - [2305] = 847, - [2306] = 866, - [2307] = 764, - [2308] = 765, - [2309] = 766, - [2310] = 749, - [2311] = 769, - [2312] = 770, - [2313] = 771, - [2314] = 846, - [2315] = 773, - [2316] = 774, - [2317] = 775, - [2318] = 776, - [2319] = 777, - [2320] = 778, - [2321] = 779, - [2322] = 780, - [2323] = 781, - [2324] = 783, - [2325] = 784, - [2326] = 785, - [2327] = 786, - [2328] = 787, - [2329] = 788, - [2330] = 789, - [2331] = 844, - [2332] = 790, - [2333] = 791, - [2334] = 792, - [2335] = 845, - [2336] = 793, - [2337] = 794, - [2338] = 795, - [2339] = 817, - [2340] = 796, - [2341] = 797, - [2342] = 798, - [2343] = 799, - [2344] = 800, - [2345] = 801, - [2346] = 802, - [2347] = 803, - [2348] = 804, - [2349] = 806, - [2350] = 807, - [2351] = 808, - [2352] = 809, - [2353] = 810, - [2354] = 812, - [2355] = 813, - [2356] = 814, - [2357] = 815, - [2358] = 816, - [2359] = 838, - [2360] = 818, - [2361] = 820, - [2362] = 821, - [2363] = 822, - [2364] = 823, - [2365] = 824, - [2366] = 825, - [2367] = 826, - [2368] = 827, - [2369] = 828, - [2370] = 829, - [2371] = 830, - [2372] = 831, - [2373] = 834, - [2374] = 835, - [2375] = 836, - [2376] = 837, - [2377] = 892, - [2378] = 839, - [2379] = 840, - [2380] = 841, - [2381] = 842, - [2382] = 750, - [2383] = 844, - [2384] = 846, - [2385] = 866, - [2386] = 847, - [2387] = 848, - [2388] = 763, - [2389] = 826, - [2390] = 839, - [2391] = 764, - [2392] = 765, - [2393] = 766, - [2394] = 749, - [2395] = 769, - [2396] = 770, - [2397] = 771, - [2398] = 842, - [2399] = 773, - [2400] = 774, - [2401] = 775, - [2402] = 776, - [2403] = 777, - [2404] = 778, - [2405] = 779, - [2406] = 780, - [2407] = 781, - [2408] = 783, - [2409] = 784, - [2410] = 785, - [2411] = 786, - [2412] = 787, - [2413] = 788, - [2414] = 789, - [2415] = 841, - [2416] = 790, - [2417] = 791, - [2418] = 792, - [2419] = 845, - [2420] = 825, - [2421] = 794, - [2422] = 795, - [2423] = 817, - [2424] = 796, - [2425] = 797, - [2426] = 798, - [2427] = 799, - [2428] = 800, - [2429] = 801, - [2430] = 802, - [2431] = 803, - [2432] = 804, - [2433] = 806, - [2434] = 807, - [2435] = 808, - [2436] = 809, - [2437] = 810, - [2438] = 812, - [2439] = 813, - [2440] = 814, - [2441] = 815, - [2442] = 816, - [2443] = 838, - [2444] = 818, - [2445] = 820, - [2446] = 821, - [2447] = 822, - [2448] = 823, - [2449] = 824, - [2450] = 825, - [2451] = 826, - [2452] = 827, - [2453] = 828, - [2454] = 829, - [2455] = 830, - [2456] = 831, - [2457] = 834, - [2458] = 835, - [2459] = 836, - [2460] = 837, - [2461] = 892, - [2462] = 839, - [2463] = 840, - [2464] = 841, - [2465] = 842, - [2466] = 750, - [2467] = 844, - [2468] = 846, - [2469] = 866, - [2470] = 847, - [2471] = 848, - [2472] = 763, - [2473] = 840, - [2474] = 829, - [2475] = 764, - [2476] = 765, - [2477] = 766, - [2478] = 749, - [2479] = 769, - [2480] = 770, - [2481] = 771, - [2482] = 837, - [2483] = 773, - [2484] = 774, - [2485] = 775, - [2486] = 776, - [2487] = 777, - [2488] = 778, - [2489] = 779, - [2490] = 780, - [2491] = 781, - [2492] = 783, - [2493] = 784, - [2494] = 785, - [2495] = 786, - [2496] = 787, - [2497] = 788, - [2498] = 789, - [2499] = 836, - [2500] = 790, - [2501] = 791, - [2502] = 792, - [2503] = 845, - [2504] = 793, - [2505] = 794, - [2506] = 795, - [2507] = 817, - [2508] = 796, - [2509] = 797, - [2510] = 798, - [2511] = 799, - [2512] = 800, - [2513] = 801, - [2514] = 802, - [2515] = 803, - [2516] = 804, - [2517] = 806, - [2518] = 807, - [2519] = 808, - [2520] = 809, - [2521] = 810, - [2522] = 812, - [2523] = 813, - [2524] = 814, - [2525] = 815, - [2526] = 816, - [2527] = 838, - [2528] = 818, - [2529] = 820, - [2530] = 821, - [2531] = 822, - [2532] = 823, - [2533] = 824, - [2534] = 825, - [2535] = 826, - [2536] = 827, - [2537] = 828, - [2538] = 829, - [2539] = 830, - [2540] = 831, - [2541] = 834, - [2542] = 835, - [2543] = 836, - [2544] = 837, - [2545] = 892, - [2546] = 839, - [2547] = 840, - [2548] = 841, - [2549] = 842, - [2550] = 750, - [2551] = 844, - [2552] = 846, - [2553] = 866, - [2554] = 847, - [2555] = 848, - [2556] = 763, - [2557] = 835, - [2558] = 834, - [2559] = 764, - [2560] = 765, - [2561] = 766, - [2562] = 749, - [2563] = 769, - [2564] = 770, - [2565] = 771, - [2566] = 831, - [2567] = 773, - [2568] = 774, - [2569] = 775, - [2570] = 776, - [2571] = 777, - [2572] = 778, - [2573] = 779, - [2574] = 780, - [2575] = 781, - [2576] = 783, - [2577] = 784, - [2578] = 785, - [2579] = 786, - [2580] = 787, - [2581] = 788, - [2582] = 789, - [2583] = 830, - [2584] = 790, - [2585] = 791, - [2586] = 792, - [2587] = 845, - [2588] = 793, - [2589] = 794, - [2590] = 795, - [2591] = 817, - [2592] = 796, - [2593] = 797, - [2594] = 798, - [2595] = 799, - [2596] = 800, - [2597] = 801, - [2598] = 802, - [2599] = 803, - [2600] = 804, - [2601] = 806, - [2602] = 807, - [2603] = 808, - [2604] = 809, - [2605] = 810, - [2606] = 812, - [2607] = 813, - [2608] = 814, - [2609] = 815, - [2610] = 816, - [2611] = 838, - [2612] = 818, - [2613] = 820, - [2614] = 821, - [2615] = 822, - [2616] = 823, - [2617] = 824, - [2618] = 825, - [2619] = 826, - [2620] = 827, - [2621] = 828, - [2622] = 829, - [2623] = 830, - [2624] = 831, - [2625] = 834, - [2626] = 835, - [2627] = 836, - [2628] = 837, - [2629] = 892, - [2630] = 839, - [2631] = 840, - [2632] = 841, - [2633] = 842, - [2634] = 750, - [2635] = 844, - [2636] = 846, - [2637] = 866, - [2638] = 847, - [2639] = 848, - [2640] = 763, - [2641] = 823, - [2642] = 828, - [2643] = 764, - [2644] = 765, - [2645] = 766, - [2646] = 749, - [2647] = 769, - [2648] = 770, - [2649] = 771, - [2650] = 827, - [2651] = 773, - [2652] = 774, - [2653] = 775, - [2654] = 776, - [2655] = 777, - [2656] = 778, - [2657] = 779, - [2658] = 780, - [2659] = 781, - [2660] = 783, - [2661] = 784, - [2662] = 785, - [2663] = 786, - [2664] = 787, - [2665] = 788, - [2666] = 789, - [2667] = 826, - [2668] = 790, - [2669] = 791, - [2670] = 792, - [2671] = 845, - [2672] = 793, - [2673] = 794, - [2674] = 795, - [2675] = 817, - [2676] = 796, - [2677] = 797, - [2678] = 798, - [2679] = 799, - [2680] = 800, - [2681] = 801, - [2682] = 802, - [2683] = 803, - [2684] = 804, - [2685] = 806, - [2686] = 807, - [2687] = 808, - [2688] = 809, - [2689] = 810, - [2690] = 812, - [2691] = 813, - [2692] = 814, - [2693] = 815, - [2694] = 816, - [2695] = 838, - [2696] = 818, - [2697] = 820, - [2698] = 821, - [2699] = 822, - [2700] = 823, - [2701] = 824, - [2702] = 825, - [2703] = 826, - [2704] = 827, - [2705] = 828, - [2706] = 829, - [2707] = 830, - [2708] = 831, - [2709] = 834, - [2710] = 835, - [2711] = 836, - [2712] = 837, - [2713] = 892, - [2714] = 839, - [2715] = 840, - [2716] = 841, - [2717] = 842, - [2718] = 750, - [2719] = 844, - [2720] = 846, - [2721] = 866, - [2722] = 847, - [2723] = 848, - [2724] = 763, - [2725] = 825, - [2726] = 824, - [2727] = 764, - [2728] = 765, - [2729] = 766, - [2730] = 749, - [2731] = 769, - [2732] = 770, - [2733] = 771, - [2734] = 816, - [2735] = 773, - [2736] = 774, - [2737] = 775, - [2738] = 776, - [2739] = 777, - [2740] = 778, - [2741] = 779, - [2742] = 780, - [2743] = 781, - [2744] = 783, - [2745] = 784, - [2746] = 785, - [2747] = 786, - [2748] = 787, - [2749] = 788, - [2750] = 789, - [2751] = 822, - [2752] = 790, - [2753] = 791, - [2754] = 792, - [2755] = 845, - [2756] = 793, - [2757] = 794, - [2758] = 795, - [2759] = 817, - [2760] = 796, - [2761] = 797, - [2762] = 798, - [2763] = 799, - [2764] = 800, - [2765] = 801, - [2766] = 802, - [2767] = 803, - [2768] = 804, - [2769] = 806, - [2770] = 807, - [2771] = 808, - [2772] = 809, - [2773] = 810, - [2774] = 812, - [2775] = 813, - [2776] = 814, - [2777] = 815, - [2778] = 816, - [2779] = 838, - [2780] = 818, - [2781] = 820, - [2782] = 821, - [2783] = 822, - [2784] = 823, - [2785] = 824, - [2786] = 825, - [2787] = 826, - [2788] = 827, - [2789] = 828, - [2790] = 829, - [2791] = 830, - [2792] = 831, - [2793] = 834, - [2794] = 835, - [2795] = 836, - [2796] = 837, - [2797] = 892, - [2798] = 839, - [2799] = 840, - [2800] = 841, - [2801] = 842, - [2802] = 750, - [2803] = 844, - [2804] = 846, - [2805] = 866, - [2806] = 847, - [2807] = 848, - [2808] = 763, - [2809] = 821, - [2810] = 820, - [2811] = 764, - [2812] = 765, - [2813] = 766, - [2814] = 749, - [2815] = 769, - [2816] = 770, - [2817] = 771, - [2818] = 818, - [2819] = 773, - [2820] = 774, - [2821] = 775, - [2822] = 776, - [2823] = 777, - [2824] = 778, - [2825] = 779, - [2826] = 780, - [2827] = 781, - [2828] = 783, - [2829] = 784, - [2830] = 785, - [2831] = 786, - [2832] = 787, - [2833] = 788, - [2834] = 789, - [2835] = 838, - [2836] = 790, - [2837] = 791, - [2838] = 792, - [2839] = 845, - [2840] = 793, - [2841] = 794, - [2842] = 795, - [2843] = 817, - [2844] = 796, - [2845] = 797, - [2846] = 798, - [2847] = 799, - [2848] = 800, - [2849] = 801, - [2850] = 802, - [2851] = 803, - [2852] = 804, - [2853] = 806, - [2854] = 807, - [2855] = 808, - [2856] = 809, - [2857] = 810, - [2858] = 812, - [2859] = 813, - [2860] = 814, - [2861] = 815, - [2862] = 816, - [2863] = 838, - [2864] = 818, - [2865] = 820, - [2866] = 821, - [2867] = 822, - [2868] = 823, - [2869] = 824, - [2870] = 825, - [2871] = 826, - [2872] = 827, - [2873] = 828, - [2874] = 829, - [2875] = 830, - [2876] = 831, - [2877] = 834, - [2878] = 835, - [2879] = 836, - [2880] = 837, - [2881] = 892, - [2882] = 839, - [2883] = 840, - [2884] = 841, - [2885] = 842, - [2886] = 750, - [2887] = 844, - [2888] = 846, - [2889] = 866, - [2890] = 847, - [2891] = 848, - [2892] = 763, - [2893] = 807, - [2894] = 815, - [2895] = 764, - [2896] = 765, - [2897] = 766, - [2898] = 749, - [2899] = 769, - [2900] = 770, - [2901] = 771, - [2902] = 814, - [2903] = 773, - [2904] = 774, - [2905] = 775, - [2906] = 776, - [2907] = 777, - [2908] = 778, - [2909] = 779, - [2910] = 780, - [2911] = 781, - [2912] = 783, - [2913] = 784, - [2914] = 785, - [2915] = 786, - [2916] = 787, - [2917] = 788, - [2918] = 789, - [2919] = 813, - [2920] = 790, - [2921] = 791, - [2922] = 792, - [2923] = 812, - [2924] = 793, - [2925] = 794, - [2926] = 795, - [2927] = 817, - [2928] = 796, - [2929] = 797, - [2930] = 798, - [2931] = 799, - [2932] = 800, - [2933] = 801, - [2934] = 802, - [2935] = 803, - [2936] = 804, - [2937] = 806, - [2938] = 807, - [2939] = 808, - [2940] = 809, - [2941] = 810, - [2942] = 812, - [2943] = 813, - [2944] = 814, - [2945] = 815, - [2946] = 816, - [2947] = 838, - [2948] = 818, - [2949] = 820, - [2950] = 821, - [2951] = 822, - [2952] = 823, - [2953] = 824, - [2954] = 825, - [2955] = 826, - [2956] = 827, - [2957] = 828, - [2958] = 829, - [2959] = 830, - [2960] = 831, - [2961] = 834, - [2962] = 835, - [2963] = 836, - [2964] = 837, - [2965] = 810, - [2966] = 839, - [2967] = 840, - [2968] = 841, - [2969] = 842, - [2970] = 750, - [2971] = 844, - [2972] = 846, - [2973] = 866, - [2974] = 847, - [2975] = 848, - [2976] = 763, - [2977] = 809, - [2978] = 808, - [2979] = 764, - [2980] = 765, - [2981] = 766, - [2982] = 749, - [2983] = 769, - [2984] = 770, - [2985] = 771, - [2986] = 799, - [2987] = 773, - [2988] = 774, - [2989] = 775, - [2990] = 776, - [2991] = 777, - [2992] = 778, - [2993] = 779, - [2994] = 780, - [2995] = 781, - [2996] = 783, - [2997] = 813, - [2998] = 785, - [2999] = 786, - [3000] = 787, - [3001] = 788, - [3002] = 789, - [3003] = 773, - [3004] = 790, - [3005] = 791, - [3006] = 792, - [3007] = 806, - [3008] = 793, - [3009] = 794, - [3010] = 795, - [3011] = 817, - [3012] = 796, - [3013] = 797, - [3014] = 798, - [3015] = 799, - [3016] = 800, - [3017] = 801, - [3018] = 802, - [3019] = 803, - [3020] = 804, - [3021] = 806, - [3022] = 807, - [3023] = 808, - [3024] = 809, - [3025] = 810, - [3026] = 812, - [3027] = 813, - [3028] = 814, - [3029] = 815, - [3030] = 816, - [3031] = 838, - [3032] = 818, - [3033] = 820, - [3034] = 821, - [3035] = 822, - [3036] = 823, - [3037] = 824, - [3038] = 825, - [3039] = 826, - [3040] = 827, - [3041] = 828, - [3042] = 829, - [3043] = 830, - [3044] = 831, - [3045] = 834, - [3046] = 835, - [3047] = 836, - [3048] = 837, - [3049] = 804, - [3050] = 839, - [3051] = 840, - [3052] = 841, - [3053] = 842, - [3054] = 750, - [3055] = 844, - [3056] = 846, - [3057] = 866, - [3058] = 847, - [3059] = 848, - [3060] = 763, - [3061] = 803, - [3062] = 802, - [3063] = 764, - [3064] = 765, - [3065] = 766, - [3066] = 749, - [3067] = 769, - [3068] = 770, - [3069] = 771, - [3070] = 774, - [3071] = 773, - [3072] = 774, - [3073] = 775, + [2205] = 781, + [2206] = 782, + [2207] = 783, + [2208] = 784, + [2209] = 785, + [2210] = 786, + [2211] = 787, + [2212] = 788, + [2213] = 789, + [2214] = 790, + [2215] = 792, + [2216] = 793, + [2217] = 794, + [2218] = 796, + [2219] = 797, + [2220] = 798, + [2221] = 799, + [2222] = 800, + [2223] = 891, + [2224] = 802, + [2225] = 803, + [2226] = 804, + [2227] = 805, + [2228] = 806, + [2229] = 807, + [2230] = 808, + [2231] = 809, + [2232] = 810, + [2233] = 811, + [2234] = 812, + [2235] = 813, + [2236] = 814, + [2237] = 817, + [2238] = 819, + [2239] = 820, + [2240] = 822, + [2241] = 823, + [2242] = 824, + [2243] = 874, + [2244] = 825, + [2245] = 826, + [2246] = 828, + [2247] = 829, + [2248] = 830, + [2249] = 834, + [2250] = 831, + [2251] = 832, + [2252] = 833, + [2253] = 850, + [2254] = 776, + [2255] = 766, + [2256] = 765, + [2257] = 775, + [2258] = 774, + [2259] = 750, + [2260] = 777, + [2261] = 749, + [2262] = 769, + [2263] = 751, + [2264] = 763, + [2265] = 752, + [2266] = 756, + [2267] = 757, + [2268] = 758, + [2269] = 762, + [2270] = 764, + [2271] = 771, + [2272] = 754, + [2273] = 759, + [2274] = 760, + [2275] = 763, + [2276] = 765, + [2277] = 766, + [2278] = 767, + [2279] = 768, + [2280] = 760, + [2281] = 772, + [2282] = 773, + [2283] = 827, + [2284] = 778, + [2285] = 779, + [2286] = 780, + [2287] = 781, + [2288] = 782, + [2289] = 783, + [2290] = 784, + [2291] = 785, + [2292] = 786, + [2293] = 787, + [2294] = 788, + [2295] = 789, + [2296] = 790, + [2297] = 792, + [2298] = 793, + [2299] = 794, + [2300] = 796, + [2301] = 797, + [2302] = 798, + [2303] = 799, + [2304] = 800, + [2305] = 891, + [2306] = 802, + [2307] = 803, + [2308] = 804, + [2309] = 805, + [2310] = 806, + [2311] = 807, + [2312] = 808, + [2313] = 809, + [2314] = 810, + [2315] = 811, + [2316] = 812, + [2317] = 813, + [2318] = 814, + [2319] = 817, + [2320] = 819, + [2321] = 820, + [2322] = 822, + [2323] = 823, + [2324] = 824, + [2325] = 874, + [2326] = 825, + [2327] = 826, + [2328] = 828, + [2329] = 829, + [2330] = 830, + [2331] = 834, + [2332] = 831, + [2333] = 832, + [2334] = 833, + [2335] = 850, + [2336] = 776, + [2337] = 759, + [2338] = 759, + [2339] = 775, + [2340] = 774, + [2341] = 750, + [2342] = 777, + [2343] = 749, + [2344] = 769, + [2345] = 751, + [2346] = 754, + [2347] = 752, + [2348] = 756, + [2349] = 757, + [2350] = 758, + [2351] = 762, + [2352] = 764, + [2353] = 771, + [2354] = 754, + [2355] = 759, + [2356] = 760, + [2357] = 763, + [2358] = 765, + [2359] = 766, + [2360] = 767, + [2361] = 768, + [2362] = 771, + [2363] = 772, + [2364] = 773, + [2365] = 827, + [2366] = 778, + [2367] = 779, + [2368] = 780, + [2369] = 781, + [2370] = 782, + [2371] = 783, + [2372] = 784, + [2373] = 785, + [2374] = 786, + [2375] = 787, + [2376] = 788, + [2377] = 789, + [2378] = 790, + [2379] = 792, + [2380] = 793, + [2381] = 794, + [2382] = 796, + [2383] = 797, + [2384] = 798, + [2385] = 799, + [2386] = 800, + [2387] = 891, + [2388] = 802, + [2389] = 803, + [2390] = 804, + [2391] = 805, + [2392] = 806, + [2393] = 807, + [2394] = 808, + [2395] = 809, + [2396] = 810, + [2397] = 811, + [2398] = 812, + [2399] = 813, + [2400] = 814, + [2401] = 817, + [2402] = 819, + [2403] = 820, + [2404] = 822, + [2405] = 823, + [2406] = 824, + [2407] = 874, + [2408] = 799, + [2409] = 826, + [2410] = 828, + [2411] = 829, + [2412] = 830, + [2413] = 834, + [2414] = 831, + [2415] = 832, + [2416] = 833, + [2417] = 850, + [2418] = 776, + [2419] = 769, + [2420] = 764, + [2421] = 775, + [2422] = 774, + [2423] = 750, + [2424] = 777, + [2425] = 749, + [2426] = 769, + [2427] = 751, + [2428] = 762, + [2429] = 752, + [2430] = 756, + [2431] = 757, + [2432] = 758, + [2433] = 762, + [2434] = 764, + [2435] = 771, + [2436] = 754, + [2437] = 759, + [2438] = 760, + [2439] = 763, + [2440] = 765, + [2441] = 766, + [2442] = 767, + [2443] = 768, + [2444] = 758, + [2445] = 772, + [2446] = 773, + [2447] = 827, + [2448] = 778, + [2449] = 779, + [2450] = 780, + [2451] = 781, + [2452] = 782, + [2453] = 783, + [2454] = 784, + [2455] = 785, + [2456] = 786, + [2457] = 787, + [2458] = 788, + [2459] = 789, + [2460] = 790, + [2461] = 792, + [2462] = 793, + [2463] = 794, + [2464] = 796, + [2465] = 797, + [2466] = 798, + [2467] = 799, + [2468] = 800, + [2469] = 891, + [2470] = 802, + [2471] = 803, + [2472] = 804, + [2473] = 805, + [2474] = 806, + [2475] = 807, + [2476] = 808, + [2477] = 809, + [2478] = 810, + [2479] = 811, + [2480] = 812, + [2481] = 813, + [2482] = 814, + [2483] = 817, + [2484] = 819, + [2485] = 820, + [2486] = 822, + [2487] = 823, + [2488] = 824, + [2489] = 874, + [2490] = 825, + [2491] = 826, + [2492] = 828, + [2493] = 829, + [2494] = 830, + [2495] = 834, + [2496] = 831, + [2497] = 832, + [2498] = 833, + [2499] = 850, + [2500] = 776, + [2501] = 757, + [2502] = 756, + [2503] = 775, + [2504] = 774, + [2505] = 750, + [2506] = 777, + [2507] = 749, + [2508] = 769, + [2509] = 751, + [2510] = 752, + [2511] = 752, + [2512] = 756, + [2513] = 757, + [2514] = 758, + [2515] = 762, + [2516] = 764, + [2517] = 771, + [2518] = 754, + [2519] = 759, + [2520] = 760, + [2521] = 763, + [2522] = 765, + [2523] = 766, + [2524] = 767, + [2525] = 768, + [2526] = 751, + [2527] = 772, + [2528] = 773, + [2529] = 827, + [2530] = 778, + [2531] = 779, + [2532] = 780, + [2533] = 781, + [2534] = 782, + [2535] = 783, + [2536] = 784, + [2537] = 785, + [2538] = 786, + [2539] = 787, + [2540] = 788, + [2541] = 789, + [2542] = 790, + [2543] = 792, + [2544] = 793, + [2545] = 794, + [2546] = 796, + [2547] = 797, + [2548] = 798, + [2549] = 799, + [2550] = 800, + [2551] = 891, + [2552] = 802, + [2553] = 803, + [2554] = 804, + [2555] = 805, + [2556] = 806, + [2557] = 807, + [2558] = 808, + [2559] = 809, + [2560] = 810, + [2561] = 811, + [2562] = 812, + [2563] = 813, + [2564] = 814, + [2565] = 817, + [2566] = 819, + [2567] = 820, + [2568] = 822, + [2569] = 823, + [2570] = 824, + [2571] = 874, + [2572] = 825, + [2573] = 826, + [2574] = 828, + [2575] = 829, + [2576] = 830, + [2577] = 834, + [2578] = 831, + [2579] = 832, + [2580] = 833, + [2581] = 850, + [2582] = 776, + [2583] = 774, + [2584] = 749, + [2585] = 775, + [2586] = 774, + [2587] = 750, + [2588] = 777, + [2589] = 749, + [2590] = 769, + [2591] = 751, + [2592] = 777, + [2593] = 752, + [2594] = 756, + [2595] = 757, + [2596] = 758, + [2597] = 762, + [2598] = 764, + [2599] = 771, + [2600] = 754, + [2601] = 759, + [2602] = 760, + [2603] = 763, + [2604] = 765, + [2605] = 766, + [2606] = 767, + [2607] = 768, + [2608] = 750, + [2609] = 772, + [2610] = 773, + [2611] = 827, + [2612] = 778, + [2613] = 779, + [2614] = 780, + [2615] = 781, + [2616] = 782, + [2617] = 783, + [2618] = 784, + [2619] = 785, + [2620] = 786, + [2621] = 787, + [2622] = 788, + [2623] = 789, + [2624] = 790, + [2625] = 792, + [2626] = 793, + [2627] = 794, + [2628] = 796, + [2629] = 797, + [2630] = 798, + [2631] = 799, + [2632] = 800, + [2633] = 891, + [2634] = 802, + [2635] = 803, + [2636] = 804, + [2637] = 805, + [2638] = 806, + [2639] = 807, + [2640] = 808, + [2641] = 809, + [2642] = 810, + [2643] = 811, + [2644] = 812, + [2645] = 813, + [2646] = 814, + [2647] = 817, + [2648] = 819, + [2649] = 820, + [2650] = 822, + [2651] = 823, + [2652] = 824, + [2653] = 874, + [2654] = 825, + [2655] = 826, + [2656] = 828, + [2657] = 829, + [2658] = 830, + [2659] = 834, + [2660] = 831, + [2661] = 832, + [2662] = 833, + [2663] = 850, + [2664] = 776, + [2665] = 834, + [2666] = 775, + [2667] = 775, + [2668] = 774, + [2669] = 750, + [2670] = 777, + [2671] = 749, + [2672] = 769, + [2673] = 751, + [2674] = 763, + [2675] = 752, + [2676] = 756, + [2677] = 757, + [2678] = 758, + [2679] = 762, + [2680] = 764, + [2681] = 771, + [2682] = 754, + [2683] = 759, + [2684] = 760, + [2685] = 763, + [2686] = 765, + [2687] = 766, + [2688] = 767, + [2689] = 768, + [2690] = 776, + [2691] = 772, + [2692] = 773, + [2693] = 827, + [2694] = 778, + [2695] = 779, + [2696] = 780, + [2697] = 781, + [2698] = 782, + [2699] = 783, + [2700] = 784, + [2701] = 785, + [2702] = 786, + [2703] = 787, + [2704] = 788, + [2705] = 789, + [2706] = 790, + [2707] = 792, + [2708] = 793, + [2709] = 794, + [2710] = 796, + [2711] = 797, + [2712] = 798, + [2713] = 799, + [2714] = 800, + [2715] = 891, + [2716] = 802, + [2717] = 803, + [2718] = 804, + [2719] = 805, + [2720] = 806, + [2721] = 807, + [2722] = 808, + [2723] = 809, + [2724] = 810, + [2725] = 811, + [2726] = 812, + [2727] = 813, + [2728] = 814, + [2729] = 817, + [2730] = 819, + [2731] = 820, + [2732] = 822, + [2733] = 823, + [2734] = 824, + [2735] = 874, + [2736] = 825, + [2737] = 826, + [2738] = 828, + [2739] = 829, + [2740] = 830, + [2741] = 834, + [2742] = 831, + [2743] = 832, + [2744] = 833, + [2745] = 850, + [2746] = 776, + [2747] = 850, + [2748] = 833, + [2749] = 775, + [2750] = 774, + [2751] = 750, + [2752] = 777, + [2753] = 749, + [2754] = 769, + [2755] = 751, + [2756] = 832, + [2757] = 752, + [2758] = 756, + [2759] = 757, + [2760] = 758, + [2761] = 762, + [2762] = 764, + [2763] = 771, + [2764] = 754, + [2765] = 759, + [2766] = 760, + [2767] = 763, + [2768] = 765, + [2769] = 766, + [2770] = 767, + [2771] = 768, + [2772] = 831, + [2773] = 772, + [2774] = 773, + [2775] = 827, + [2776] = 778, + [2777] = 779, + [2778] = 780, + [2779] = 781, + [2780] = 782, + [2781] = 783, + [2782] = 784, + [2783] = 785, + [2784] = 786, + [2785] = 787, + [2786] = 788, + [2787] = 789, + [2788] = 790, + [2789] = 792, + [2790] = 793, + [2791] = 794, + [2792] = 796, + [2793] = 797, + [2794] = 798, + [2795] = 799, + [2796] = 800, + [2797] = 891, + [2798] = 802, + [2799] = 803, + [2800] = 804, + [2801] = 805, + [2802] = 806, + [2803] = 807, + [2804] = 808, + [2805] = 809, + [2806] = 810, + [2807] = 811, + [2808] = 812, + [2809] = 813, + [2810] = 814, + [2811] = 817, + [2812] = 819, + [2813] = 820, + [2814] = 822, + [2815] = 823, + [2816] = 824, + [2817] = 874, + [2818] = 825, + [2819] = 826, + [2820] = 828, + [2821] = 829, + [2822] = 830, + [2823] = 834, + [2824] = 831, + [2825] = 832, + [2826] = 833, + [2827] = 850, + [2828] = 776, + [2829] = 823, + [2830] = 830, + [2831] = 775, + [2832] = 774, + [2833] = 750, + [2834] = 777, + [2835] = 749, + [2836] = 769, + [2837] = 751, + [2838] = 829, + [2839] = 752, + [2840] = 756, + [2841] = 757, + [2842] = 758, + [2843] = 762, + [2844] = 764, + [2845] = 771, + [2846] = 754, + [2847] = 759, + [2848] = 760, + [2849] = 763, + [2850] = 765, + [2851] = 766, + [2852] = 767, + [2853] = 768, + [2854] = 800, + [2855] = 772, + [2856] = 773, + [2857] = 828, + [2858] = 778, + [2859] = 779, + [2860] = 780, + [2861] = 781, + [2862] = 782, + [2863] = 783, + [2864] = 784, + [2865] = 785, + [2866] = 786, + [2867] = 787, + [2868] = 788, + [2869] = 789, + [2870] = 790, + [2871] = 792, + [2872] = 793, + [2873] = 794, + [2874] = 796, + [2875] = 797, + [2876] = 798, + [2877] = 799, + [2878] = 800, + [2879] = 891, + [2880] = 802, + [2881] = 803, + [2882] = 804, + [2883] = 805, + [2884] = 806, + [2885] = 807, + [2886] = 808, + [2887] = 809, + [2888] = 810, + [2889] = 811, + [2890] = 812, + [2891] = 813, + [2892] = 814, + [2893] = 817, + [2894] = 819, + [2895] = 820, + [2896] = 822, + [2897] = 823, + [2898] = 824, + [2899] = 826, + [2900] = 825, + [2901] = 826, + [2902] = 828, + [2903] = 829, + [2904] = 830, + [2905] = 834, + [2906] = 831, + [2907] = 832, + [2908] = 833, + [2909] = 850, + [2910] = 776, + [2911] = 825, + [2912] = 824, + [2913] = 775, + [2914] = 774, + [2915] = 750, + [2916] = 777, + [2917] = 749, + [2918] = 769, + [2919] = 751, + [2920] = 810, + [2921] = 752, + [2922] = 756, + [2923] = 757, + [2924] = 758, + [2925] = 762, + [2926] = 764, + [2927] = 771, + [2928] = 754, + [2929] = 759, + [2930] = 760, + [2931] = 763, + [2932] = 765, + [2933] = 766, + [2934] = 767, + [2935] = 768, + [2936] = 822, + [2937] = 772, + [2938] = 773, + [2939] = 820, + [2940] = 778, + [2941] = 779, + [2942] = 780, + [2943] = 781, + [2944] = 782, + [2945] = 783, + [2946] = 784, + [2947] = 785, + [2948] = 786, + [2949] = 787, + [2950] = 788, + [2951] = 789, + [2952] = 790, + [2953] = 792, + [2954] = 793, + [2955] = 794, + [2956] = 796, + [2957] = 797, + [2958] = 798, + [2959] = 799, + [2960] = 800, + [2961] = 891, + [2962] = 802, + [2963] = 803, + [2964] = 804, + [2965] = 805, + [2966] = 806, + [2967] = 807, + [2968] = 808, + [2969] = 809, + [2970] = 810, + [2971] = 811, + [2972] = 812, + [2973] = 813, + [2974] = 814, + [2975] = 817, + [2976] = 819, + [2977] = 820, + [2978] = 822, + [2979] = 823, + [2980] = 824, + [2981] = 819, + [2982] = 825, + [2983] = 826, + [2984] = 828, + [2985] = 829, + [2986] = 830, + [2987] = 834, + [2988] = 831, + [2989] = 832, + [2990] = 833, + [2991] = 850, + [2992] = 776, + [2993] = 817, + [2994] = 814, + [2995] = 775, + [2996] = 774, + [2997] = 750, + [2998] = 777, + [2999] = 749, + [3000] = 769, + [3001] = 891, + [3002] = 813, + [3003] = 752, + [3004] = 756, + [3005] = 757, + [3006] = 758, + [3007] = 762, + [3008] = 764, + [3009] = 771, + [3010] = 754, + [3011] = 759, + [3012] = 760, + [3013] = 763, + [3014] = 765, + [3015] = 766, + [3016] = 767, + [3017] = 768, + [3018] = 812, + [3019] = 772, + [3020] = 773, + [3021] = 811, + [3022] = 778, + [3023] = 779, + [3024] = 780, + [3025] = 781, + [3026] = 782, + [3027] = 783, + [3028] = 784, + [3029] = 785, + [3030] = 786, + [3031] = 787, + [3032] = 788, + [3033] = 789, + [3034] = 790, + [3035] = 792, + [3036] = 793, + [3037] = 794, + [3038] = 796, + [3039] = 797, + [3040] = 798, + [3041] = 799, + [3042] = 800, + [3043] = 891, + [3044] = 802, + [3045] = 803, + [3046] = 804, + [3047] = 805, + [3048] = 806, + [3049] = 807, + [3050] = 808, + [3051] = 809, + [3052] = 810, + [3053] = 811, + [3054] = 812, + [3055] = 813, + [3056] = 814, + [3057] = 817, + [3058] = 819, + [3059] = 820, + [3060] = 822, + [3061] = 823, + [3062] = 824, + [3063] = 799, + [3064] = 825, + [3065] = 826, + [3066] = 828, + [3067] = 829, + [3068] = 830, + [3069] = 834, + [3070] = 831, + [3071] = 832, + [3072] = 833, + [3073] = 850, [3074] = 776, - [3075] = 777, - [3076] = 778, - [3077] = 779, - [3078] = 780, - [3079] = 781, - [3080] = 783, - [3081] = 784, - [3082] = 785, - [3083] = 786, - [3084] = 787, - [3085] = 788, - [3086] = 789, - [3087] = 801, - [3088] = 790, - [3089] = 791, - [3090] = 792, - [3091] = 800, - [3092] = 793, - [3093] = 794, - [3094] = 795, - [3095] = 817, - [3096] = 796, - [3097] = 797, - [3098] = 798, - [3099] = 799, - [3100] = 800, - [3101] = 801, - [3102] = 802, - [3103] = 803, - [3104] = 804, - [3105] = 806, - [3106] = 807, - [3107] = 808, - [3108] = 809, - [3109] = 810, - [3110] = 812, - [3111] = 813, - [3112] = 814, - [3113] = 815, - [3114] = 816, - [3115] = 838, - [3116] = 818, - [3117] = 820, - [3118] = 821, - [3119] = 822, - [3120] = 823, - [3121] = 824, - [3122] = 825, - [3123] = 826, - [3124] = 827, - [3125] = 828, - [3126] = 829, - [3127] = 830, - [3128] = 831, - [3129] = 834, - [3130] = 835, - [3131] = 836, - [3132] = 837, - [3133] = 790, - [3134] = 839, - [3135] = 840, - [3136] = 841, - [3137] = 842, - [3138] = 750, - [3139] = 844, - [3140] = 846, - [3141] = 866, - [3142] = 847, - [3143] = 848, - [3144] = 763, - [3145] = 798, - [3146] = 797, - [3147] = 764, - [3148] = 765, - [3149] = 766, - [3150] = 749, - [3151] = 769, - [3152] = 770, - [3153] = 771, - [3154] = 796, - [3155] = 773, - [3156] = 774, - [3157] = 775, - [3158] = 776, - [3159] = 777, - [3160] = 778, - [3161] = 779, - [3162] = 780, - [3163] = 781, - [3164] = 783, - [3165] = 784, - [3166] = 785, - [3167] = 786, - [3168] = 787, - [3169] = 788, - [3170] = 789, - [3171] = 817, - [3172] = 790, - [3173] = 791, - [3174] = 792, - [3175] = 790, - [3176] = 793, - [3177] = 794, - [3178] = 795, - [3179] = 817, - [3180] = 796, - [3181] = 797, - [3182] = 798, - [3183] = 799, - [3184] = 800, - [3185] = 801, - [3186] = 802, - [3187] = 803, - [3188] = 804, - [3189] = 806, - [3190] = 807, - [3191] = 808, - [3192] = 809, - [3193] = 810, - [3194] = 812, - [3195] = 813, - [3196] = 814, - [3197] = 815, - [3198] = 816, - [3199] = 838, - [3200] = 818, - [3201] = 820, - [3202] = 821, - [3203] = 822, - [3204] = 823, - [3205] = 824, - [3206] = 825, - [3207] = 826, - [3208] = 827, - [3209] = 828, - [3210] = 829, - [3211] = 830, - [3212] = 831, - [3213] = 834, - [3214] = 835, - [3215] = 836, - [3216] = 837, - [3217] = 824, - [3218] = 839, - [3219] = 840, - [3220] = 841, - [3221] = 842, - [3222] = 750, - [3223] = 844, - [3224] = 846, - [3225] = 866, - [3226] = 847, - [3227] = 848, - [3228] = 823, + [3075] = 809, + [3076] = 808, + [3077] = 775, + [3078] = 774, + [3079] = 750, + [3080] = 777, + [3081] = 749, + [3082] = 769, + [3083] = 751, + [3084] = 807, + [3085] = 752, + [3086] = 756, + [3087] = 757, + [3088] = 758, + [3089] = 762, + [3090] = 764, + [3091] = 771, + [3092] = 754, + [3093] = 759, + [3094] = 760, + [3095] = 763, + [3096] = 765, + [3097] = 766, + [3098] = 767, + [3099] = 768, + [3100] = 806, + [3101] = 772, + [3102] = 773, + [3103] = 802, + [3104] = 778, + [3105] = 779, + [3106] = 780, + [3107] = 781, + [3108] = 782, + [3109] = 783, + [3110] = 784, + [3111] = 785, + [3112] = 786, + [3113] = 787, + [3114] = 788, + [3115] = 789, + [3116] = 790, + [3117] = 792, + [3118] = 793, + [3119] = 794, + [3120] = 796, + [3121] = 797, + [3122] = 798, + [3123] = 799, + [3124] = 800, + [3125] = 891, + [3126] = 802, + [3127] = 803, + [3128] = 804, + [3129] = 805, + [3130] = 806, + [3131] = 807, + [3132] = 808, + [3133] = 809, + [3134] = 810, + [3135] = 811, + [3136] = 812, + [3137] = 813, + [3138] = 814, + [3139] = 817, + [3140] = 819, + [3141] = 820, + [3142] = 822, + [3143] = 823, + [3144] = 824, + [3145] = 803, + [3146] = 825, + [3147] = 826, + [3148] = 828, + [3149] = 829, + [3150] = 830, + [3151] = 834, + [3152] = 831, + [3153] = 832, + [3154] = 833, + [3155] = 850, + [3156] = 805, + [3157] = 804, + [3158] = 804, + [3159] = 805, + [3160] = 803, + [3161] = 802, + [3162] = 806, + [3163] = 807, + [3164] = 891, + [3165] = 808, + [3166] = 809, + [3167] = 800, + [3168] = 775, + [3169] = 810, + [3170] = 767, + [3171] = 827, + [3172] = 874, + [3173] = 798, + [3174] = 827, + [3175] = 874, + [3176] = 797, + [3177] = 827, + [3178] = 874, + [3179] = 796, + [3180] = 774, + [3181] = 794, + [3182] = 793, + [3183] = 750, + [3184] = 777, + [3185] = 811, + [3186] = 812, + [3187] = 749, + [3188] = 765, + [3189] = 792, + [3190] = 813, + [3191] = 769, + [3192] = 814, + [3193] = 817, + [3194] = 819, + [3195] = 850, + [3196] = 833, + [3197] = 832, + [3198] = 790, + [3199] = 752, + [3200] = 831, + [3201] = 789, + [3202] = 788, + [3203] = 756, + [3204] = 758, + [3205] = 834, + [3206] = 757, + [3207] = 758, + [3208] = 830, + [3209] = 762, + [3210] = 751, + [3211] = 829, + [3212] = 820, + [3213] = 771, + [3214] = 787, + [3215] = 828, + [3216] = 754, + [3217] = 826, + [3218] = 825, + [3219] = 764, + [3220] = 874, + [3221] = 822, + [3222] = 786, + [3223] = 823, + [3224] = 824, + [3225] = 759, + [3226] = 823, + [3227] = 824, + [3228] = 874, [3229] = 822, - [3230] = 837, - [3231] = 892, - [3232] = 795, - [3233] = 794, - [3234] = 821, - [3235] = 820, - [3236] = 793, - [3237] = 792, - [3238] = 818, - [3239] = 839, - [3240] = 791, - [3241] = 764, - [3242] = 765, - [3243] = 770, - [3244] = 845, - [3245] = 892, - [3246] = 776, - [3247] = 845, - [3248] = 892, + [3230] = 760, + [3231] = 820, + [3232] = 819, + [3233] = 763, + [3234] = 825, + [3235] = 817, + [3236] = 826, + [3237] = 828, + [3238] = 829, + [3239] = 765, + [3240] = 830, + [3241] = 814, + [3242] = 785, + [3243] = 834, + [3244] = 766, + [3245] = 784, + [3246] = 831, + [3247] = 767, + [3248] = 783, [3249] = 789, - [3250] = 845, - [3251] = 892, - [3252] = 788, - [3253] = 787, - [3254] = 766, - [3255] = 786, - [3256] = 785, - [3257] = 838, - [3258] = 749, - [3259] = 769, - [3260] = 840, - [3261] = 841, - [3262] = 771, - [3263] = 784, - [3264] = 783, - [3265] = 842, - [3266] = 791, - [3267] = 816, - [3268] = 750, - [3269] = 815, - [3270] = 844, - [3271] = 773, - [3272] = 814, - [3273] = 774, - [3274] = 846, - [3275] = 775, - [3276] = 800, - [3277] = 777, - [3278] = 778, - [3279] = 776, - [3280] = 770, - [3281] = 866, - [3282] = 778, - [3283] = 779, - [3284] = 842, - [3285] = 812, - [3286] = 780, - [3287] = 810, - [3288] = 781, - [3289] = 809, - [3290] = 781, - [3291] = 777, - [3292] = 808, - [3293] = 807, - [3294] = 792, - [3295] = 788, - [3296] = 806, - [3297] = 804, - [3298] = 783, - [3299] = 803, - [3300] = 802, - [3301] = 847, - [3302] = 801, - [3303] = 784, - [3304] = 848, - [3305] = 847, - [3306] = 785, - [3307] = 866, - [3308] = 786, - [3309] = 846, - [3310] = 844, - [3311] = 848, - [3312] = 763, - [3313] = 750, + [3250] = 782, + [3251] = 812, + [3252] = 781, + [3253] = 767, + [3254] = 768, + [3255] = 780, + [3256] = 811, + [3257] = 768, + [3258] = 810, + [3259] = 809, + [3260] = 808, + [3261] = 779, + [3262] = 807, + [3263] = 778, + [3264] = 773, + [3265] = 806, + [3266] = 805, + [3267] = 804, + [3268] = 833, + [3269] = 803, + [3270] = 802, + [3271] = 891, + [3272] = 800, + [3273] = 799, + [3274] = 772, + [3275] = 850, + [3276] = 772, + [3277] = 772, + [3278] = 776, + [3279] = 796, + [3280] = 798, + [3281] = 797, + [3282] = 827, + [3283] = 773, + [3284] = 787, + [3285] = 778, + [3286] = 779, + [3287] = 775, + [3288] = 763, + [3289] = 768, + [3290] = 774, + [3291] = 780, + [3292] = 750, + [3293] = 777, + [3294] = 794, + [3295] = 749, + [3296] = 793, + [3297] = 769, + [3298] = 781, + [3299] = 782, + [3300] = 783, + [3301] = 792, + [3302] = 827, + [3303] = 751, + [3304] = 790, + [3305] = 789, + [3306] = 784, + [3307] = 785, + [3308] = 788, + [3309] = 787, + [3310] = 786, + [3311] = 785, + [3312] = 784, + [3313] = 786, [3314] = 787, - [3315] = 814, - [3316] = 788, - [3317] = 789, - [3318] = 892, - [3319] = 789, - [3320] = 764, - [3321] = 780, - [3322] = 841, - [3323] = 840, - [3324] = 779, - [3325] = 839, - [3326] = 779, - [3327] = 892, - [3328] = 778, - [3329] = 777, - [3330] = 837, - [3331] = 776, - [3332] = 836, - [3333] = 775, - [3334] = 765, - [3335] = 835, - [3336] = 834, - [3337] = 766, - [3338] = 790, - [3339] = 845, - [3340] = 792, - [3341] = 774, - [3342] = 749, - [3343] = 845, - [3344] = 831, - [3345] = 769, - [3346] = 770, - [3347] = 836, - [3348] = 793, - [3349] = 794, - [3350] = 830, - [3351] = 829, - [3352] = 828, - [3353] = 827, - [3354] = 773, - [3355] = 826, - [3356] = 825, - [3357] = 824, - [3358] = 823, - [3359] = 822, - [3360] = 821, - [3361] = 795, - [3362] = 817, - [3363] = 796, - [3364] = 797, - [3365] = 798, - [3366] = 799, - [3367] = 771, - [3368] = 800, - [3369] = 801, - [3370] = 802, - [3371] = 803, - [3372] = 820, - [3373] = 818, - [3374] = 838, - [3375] = 773, - [3376] = 816, - [3377] = 815, - [3378] = 804, - [3379] = 791, - [3380] = 806, - [3381] = 774, - [3382] = 799, - [3383] = 813, - [3384] = 812, - [3385] = 810, - [3386] = 807, + [3315] = 788, + [3316] = 789, + [3317] = 874, + [3318] = 783, + [3319] = 774, + [3320] = 782, + [3321] = 766, + [3322] = 790, + [3323] = 765, + [3324] = 781, + [3325] = 763, + [3326] = 760, + [3327] = 759, + [3328] = 773, + [3329] = 827, + [3330] = 792, + [3331] = 780, + [3332] = 779, + [3333] = 793, + [3334] = 778, + [3335] = 754, + [3336] = 771, + [3337] = 827, + [3338] = 773, + [3339] = 772, + [3340] = 752, + [3341] = 768, + [3342] = 756, + [3343] = 757, + [3344] = 767, + [3345] = 766, + [3346] = 794, + [3347] = 796, + [3348] = 778, + [3349] = 764, + [3350] = 765, + [3351] = 758, + [3352] = 762, + [3353] = 764, + [3354] = 766, + [3355] = 798, + [3356] = 771, + [3357] = 799, + [3358] = 800, + [3359] = 754, + [3360] = 891, + [3361] = 762, + [3362] = 786, + [3363] = 802, + [3364] = 803, + [3365] = 804, + [3366] = 832, + [3367] = 832, + [3368] = 805, + [3369] = 760, + [3370] = 759, + [3371] = 759, + [3372] = 771, + [3373] = 764, + [3374] = 806, + [3375] = 762, + [3376] = 758, + [3377] = 757, + [3378] = 756, + [3379] = 752, + [3380] = 807, + [3381] = 760, + [3382] = 763, + [3383] = 751, + [3384] = 769, + [3385] = 808, + [3386] = 749, [3387] = 809, - [3388] = 808, - [3389] = 807, - [3390] = 775, - [3391] = 808, - [3392] = 809, - [3393] = 810, + [3388] = 810, + [3389] = 758, + [3390] = 777, + [3391] = 757, + [3392] = 811, + [3393] = 756, [3394] = 812, - [3395] = 834, - [3396] = 813, - [3397] = 769, - [3398] = 814, - [3399] = 749, - [3400] = 776, - [3401] = 766, - [3402] = 815, - [3403] = 765, - [3404] = 764, - [3405] = 780, - [3406] = 806, - [3407] = 763, - [3408] = 845, - [3409] = 777, - [3410] = 778, - [3411] = 779, - [3412] = 816, - [3413] = 838, - [3414] = 775, - [3415] = 848, - [3416] = 804, - [3417] = 818, - [3418] = 780, - [3419] = 803, - [3420] = 781, - [3421] = 802, - [3422] = 787, - [3423] = 786, - [3424] = 801, - [3425] = 800, - [3426] = 799, - [3427] = 820, - [3428] = 847, - [3429] = 821, - [3430] = 822, - [3431] = 823, - [3432] = 824, - [3433] = 825, + [3395] = 765, + [3396] = 766, + [3397] = 752, + [3398] = 751, + [3399] = 769, + [3400] = 750, + [3401] = 749, + [3402] = 813, + [3403] = 814, + [3404] = 774, + [3405] = 817, + [3406] = 775, + [3407] = 767, + [3408] = 777, + [3409] = 776, + [3410] = 819, + [3411] = 768, + [3412] = 784, + [3413] = 772, + [3414] = 874, + [3415] = 773, + [3416] = 778, + [3417] = 779, + [3418] = 850, + [3419] = 783, + [3420] = 750, + [3421] = 797, + [3422] = 822, + [3423] = 823, + [3424] = 833, + [3425] = 780, + [3426] = 808, + [3427] = 788, + [3428] = 754, + [3429] = 824, + [3430] = 831, + [3431] = 874, + [3432] = 825, + [3433] = 830, [3434] = 826, - [3435] = 793, - [3436] = 798, - [3437] = 797, - [3438] = 796, - [3439] = 817, - [3440] = 795, - [3441] = 866, - [3442] = 828, - [3443] = 829, - [3444] = 830, - [3445] = 794, - [3446] = 783, - [3447] = 804, - [3448] = 793, - [3449] = 784, - [3450] = 771, - [3451] = 831, - [3452] = 834, - [3453] = 835, - [3454] = 836, - [3455] = 837, - [3456] = 892, - [3457] = 839, - [3458] = 840, - [3459] = 792, - [3460] = 791, - [3461] = 790, - [3462] = 789, - [3463] = 788, - [3464] = 785, - [3465] = 786, - [3466] = 787, - [3467] = 786, + [3435] = 834, + [3436] = 830, + [3437] = 829, + [3438] = 828, + [3439] = 826, + [3440] = 825, + [3441] = 782, + [3442] = 874, + [3443] = 824, + [3444] = 828, + [3445] = 823, + [3446] = 822, + [3447] = 781, + [3448] = 782, + [3449] = 820, + [3450] = 819, + [3451] = 829, + [3452] = 830, + [3453] = 817, + [3454] = 814, + [3455] = 813, + [3456] = 783, + [3457] = 834, + [3458] = 784, + [3459] = 831, + [3460] = 812, + [3461] = 775, + [3462] = 811, + [3463] = 779, + [3464] = 820, + [3465] = 776, + [3466] = 810, + [3467] = 850, [3468] = 785, - [3469] = 846, - [3470] = 784, - [3471] = 844, - [3472] = 783, - [3473] = 750, - [3474] = 798, - [3475] = 842, - [3476] = 787, - [3477] = 841, - [3478] = 840, - [3479] = 839, - [3480] = 841, - [3481] = 837, - [3482] = 842, - [3483] = 750, - [3484] = 827, - [3485] = 788, - [3486] = 781, - [3487] = 780, - [3488] = 836, - [3489] = 835, - [3490] = 789, - [3491] = 779, - [3492] = 785, - [3493] = 790, - [3494] = 791, - [3495] = 792, - [3496] = 793, - [3497] = 846, - [3498] = 771, - [3499] = 892, - [3500] = 778, + [3469] = 833, + [3470] = 832, + [3471] = 831, + [3472] = 809, + [3473] = 834, + [3474] = 786, + [3475] = 787, + [3476] = 785, + [3477] = 788, + [3478] = 832, + [3479] = 808, + [3480] = 829, + [3481] = 789, + [3482] = 833, + [3483] = 790, + [3484] = 792, + [3485] = 785, + [3486] = 807, + [3487] = 850, + [3488] = 806, + [3489] = 805, + [3490] = 804, + [3491] = 803, + [3492] = 828, + [3493] = 826, + [3494] = 802, + [3495] = 776, + [3496] = 825, + [3497] = 891, + [3498] = 775, + [3499] = 774, + [3500] = 750, [3501] = 777, - [3502] = 823, - [3503] = 831, - [3504] = 776, - [3505] = 866, - [3506] = 847, - [3507] = 848, - [3508] = 763, - [3509] = 794, - [3510] = 764, - [3511] = 765, - [3512] = 766, - [3513] = 749, - [3514] = 775, - [3515] = 830, - [3516] = 774, - [3517] = 773, - [3518] = 796, - [3519] = 841, - [3520] = 769, - [3521] = 770, - [3522] = 770, - [3523] = 771, - [3524] = 769, - [3525] = 749, - [3526] = 766, - [3527] = 784, - [3528] = 765, - [3529] = 844, - [3530] = 774, - [3531] = 775, - [3532] = 776, - [3533] = 777, - [3534] = 778, - [3535] = 764, - [3536] = 797, - [3537] = 763, - [3538] = 848, - [3539] = 779, - [3540] = 780, - [3541] = 847, - [3542] = 866, - [3543] = 829, - [3544] = 846, - [3545] = 828, - [3546] = 844, - [3547] = 827, - [3548] = 795, - [3549] = 826, - [3550] = 781, - [3551] = 825, - [3552] = 824, - [3553] = 845, - [3554] = 795, - [3555] = 810, - [3556] = 783, - [3557] = 783, - [3558] = 750, - [3559] = 842, - [3560] = 817, - [3561] = 796, - [3562] = 822, - [3563] = 821, - [3564] = 814, - [3565] = 784, - [3566] = 797, - [3567] = 840, - [3568] = 798, - [3569] = 799, - [3570] = 785, - [3571] = 773, - [3572] = 787, - [3573] = 788, - [3574] = 789, - [3575] = 790, - [3576] = 791, - [3577] = 820, - [3578] = 792, - [3579] = 800, - [3580] = 839, - [3581] = 801, - [3582] = 892, - [3583] = 802, - [3584] = 845, - [3585] = 786, - [3586] = 837, - [3587] = 803, - [3588] = 836, - [3589] = 818, - [3590] = 835, - [3591] = 834, - [3592] = 793, - [3593] = 794, - [3594] = 831, - [3595] = 795, - [3596] = 817, - [3597] = 796, - [3598] = 797, - [3599] = 798, - [3600] = 799, - [3601] = 800, - [3602] = 801, - [3603] = 830, - [3604] = 829, - [3605] = 828, - [3606] = 827, - [3607] = 826, - [3608] = 825, - [3609] = 824, - [3610] = 823, - [3611] = 822, - [3612] = 802, - [3613] = 803, - [3614] = 804, - [3615] = 804, - [3616] = 838, - [3617] = 821, - [3618] = 816, - [3619] = 820, - [3620] = 815, - [3621] = 818, - [3622] = 814, - [3623] = 838, - [3624] = 813, - [3625] = 812, - [3626] = 794, - [3627] = 817, - [3628] = 809, - [3629] = 806, - [3630] = 807, - [3631] = 808, - [3632] = 809, - [3633] = 810, - [3634] = 812, - [3635] = 808, - [3636] = 807, - [3637] = 816, - [3638] = 813, - [3639] = 815, - [3640] = 806, - [3641] = 781, - [3642] = 3642, - [3643] = 3642, - [3644] = 3642, - [3645] = 3642, - [3646] = 3642, - [3647] = 3642, - [3648] = 3642, - [3649] = 3642, - [3650] = 3642, - [3651] = 3642, - [3652] = 3642, - [3653] = 3642, - [3654] = 3642, - [3655] = 3642, - [3656] = 3642, - [3657] = 3642, - [3658] = 3642, - [3659] = 3642, - [3660] = 3642, - [3661] = 3642, - [3662] = 3642, - [3663] = 3642, - [3664] = 3642, - [3665] = 3642, - [3666] = 3642, - [3667] = 3642, - [3668] = 3642, - [3669] = 3642, - [3670] = 3642, - [3671] = 3642, - [3672] = 3642, - [3673] = 3642, - [3674] = 3642, - [3675] = 3642, - [3676] = 3642, - [3677] = 3677, - [3678] = 3678, - [3679] = 3678, - [3680] = 3680, - [3681] = 3681, - [3682] = 3682, - [3683] = 3678, - [3684] = 3677, - [3685] = 3682, - [3686] = 3681, - [3687] = 3680, - [3688] = 3688, - [3689] = 3689, - [3690] = 3690, - [3691] = 3678, - [3692] = 3682, - [3693] = 3681, - [3694] = 3680, - [3695] = 3695, - [3696] = 3677, - [3697] = 3695, - [3698] = 3690, - [3699] = 3689, - [3700] = 3688, - [3701] = 3677, - [3702] = 3678, - [3703] = 3682, - [3704] = 3681, - [3705] = 3680, - [3706] = 3688, - [3707] = 3689, - [3708] = 3690, - [3709] = 3695, - [3710] = 3680, - [3711] = 3681, - [3712] = 3682, - [3713] = 3678, - [3714] = 3677, - [3715] = 3695, - [3716] = 3690, - [3717] = 3695, - [3718] = 3690, - [3719] = 3689, - [3720] = 3688, - [3721] = 3689, - [3722] = 3688, - [3723] = 3689, - [3724] = 3690, - [3725] = 3695, - [3726] = 3688, - [3727] = 3677, - [3728] = 3678, - [3729] = 3682, - [3730] = 3681, - [3731] = 3680, - [3732] = 3680, - [3733] = 3681, - [3734] = 3682, - [3735] = 3678, - [3736] = 3680, - [3737] = 3681, - [3738] = 3695, - [3739] = 3682, - [3740] = 3678, - [3741] = 3677, - [3742] = 3690, - [3743] = 3677, - [3744] = 3689, - [3745] = 3688, - [3746] = 3688, - [3747] = 3689, - [3748] = 3690, - [3749] = 3695, - [3750] = 3677, - [3751] = 3677, - [3752] = 3678, - [3753] = 3682, - [3754] = 3681, - [3755] = 3680, - [3756] = 3678, - [3757] = 3682, - [3758] = 3681, - [3759] = 3680, - [3760] = 3695, - [3761] = 3690, - [3762] = 3680, - [3763] = 3689, - [3764] = 3681, - [3765] = 3688, - [3766] = 3682, - [3767] = 3677, - [3768] = 3678, - [3769] = 3688, - [3770] = 3677, - [3771] = 3689, - [3772] = 3690, - [3773] = 3695, - [3774] = 3678, - [3775] = 3682, - [3776] = 3681, - [3777] = 3688, - [3778] = 3689, - [3779] = 3680, - [3780] = 3695, - [3781] = 3680, - [3782] = 3688, - [3783] = 3677, - [3784] = 3678, - [3785] = 3695, - [3786] = 3690, - [3787] = 3689, - [3788] = 3688, - [3789] = 3695, - [3790] = 3690, - [3791] = 3689, - [3792] = 3688, - [3793] = 3677, - [3794] = 3678, - [3795] = 3682, - [3796] = 3680, - [3797] = 3681, - [3798] = 3682, - [3799] = 3678, - [3800] = 3680, - [3801] = 3681, - [3802] = 3682, - [3803] = 3678, - [3804] = 3677, - [3805] = 3681, - [3806] = 3680, - [3807] = 3682, - [3808] = 3695, - [3809] = 3688, - [3810] = 3689, - [3811] = 3690, - [3812] = 3695, - [3813] = 3677, - [3814] = 3681, - [3815] = 3690, - [3816] = 3677, - [3817] = 3689, - [3818] = 3688, - [3819] = 3677, - [3820] = 3820, - [3821] = 3682, - [3822] = 3681, - [3823] = 3680, - [3824] = 3680, - [3825] = 3695, - [3826] = 3690, - [3827] = 3678, - [3828] = 3682, - [3829] = 3681, - [3830] = 3680, - [3831] = 3680, - [3832] = 3681, - [3833] = 3682, - [3834] = 3678, - [3835] = 3689, - [3836] = 3688, - [3837] = 3688, - [3838] = 3688, - [3839] = 3689, - [3840] = 3690, - [3841] = 3695, - [3842] = 3689, - [3843] = 3820, - [3844] = 3677, - [3845] = 3678, - [3846] = 3688, - [3847] = 3682, - [3848] = 3689, - [3849] = 3690, - [3850] = 3695, - [3851] = 3690, - [3852] = 3681, - [3853] = 3680, - [3854] = 3677, - [3855] = 3690, - [3856] = 3695, - [3857] = 3681, - [3858] = 3695, - [3859] = 3690, - [3860] = 3689, - [3861] = 3688, - [3862] = 3682, - [3863] = 3678, - [3864] = 3695, - [3865] = 3695, - [3866] = 3690, - [3867] = 3689, - [3868] = 3680, - [3869] = 3688, - [3870] = 3681, - [3871] = 3682, - [3872] = 3678, - [3873] = 3677, - [3874] = 3820, - [3875] = 3677, - [3876] = 3678, - [3877] = 3688, - [3878] = 3689, - [3879] = 3690, - [3880] = 3695, - [3881] = 3682, - [3882] = 3690, - [3883] = 3681, - [3884] = 3677, - [3885] = 3680, - [3886] = 3677, - [3887] = 3689, - [3888] = 3695, - [3889] = 3690, - [3890] = 3689, - [3891] = 3688, - [3892] = 3677, - [3893] = 3678, - [3894] = 3680, - [3895] = 3681, - [3896] = 3682, - [3897] = 3678, - [3898] = 3677, - [3899] = 3682, - [3900] = 3678, - [3901] = 3682, - [3902] = 3681, - [3903] = 3680, - [3904] = 3681, - [3905] = 3680, - [3906] = 3688, - [3907] = 3689, - [3908] = 3688, - [3909] = 3690, - [3910] = 3689, - [3911] = 3695, - [3912] = 3690, - [3913] = 3688, - [3914] = 3820, - [3915] = 3695, - [3916] = 3695, - [3917] = 3690, - [3918] = 3695, - [3919] = 3690, - [3920] = 3689, - [3921] = 3688, - [3922] = 3677, - [3923] = 3678, - [3924] = 3682, - [3925] = 3681, - [3926] = 3680, - [3927] = 3680, - [3928] = 3681, - [3929] = 3689, - [3930] = 3682, - [3931] = 3695, - [3932] = 3690, - [3933] = 3689, - [3934] = 3688, - [3935] = 3680, - [3936] = 3681, - [3937] = 3682, - [3938] = 3678, - [3939] = 3677, - [3940] = 3680, - [3941] = 3681, - [3942] = 3682, - [3943] = 3678, - [3944] = 3678, - [3945] = 3688, - [3946] = 3689, - [3947] = 3690, - [3948] = 3695, - [3949] = 3820, - [3950] = 3950, - [3951] = 3950, - [3952] = 3950, - [3953] = 3950, - [3954] = 3950, - [3955] = 3677, - [3956] = 3950, - [3957] = 3950, - [3958] = 3677, - [3959] = 3677, - [3960] = 3950, - [3961] = 3950, - [3962] = 3680, - [3963] = 3681, - [3964] = 3682, - [3965] = 3678, - [3966] = 3677, - [3967] = 3950, - [3968] = 3950, - [3969] = 3950, - [3970] = 3688, - [3971] = 3689, - [3972] = 3690, - [3973] = 3678, - [3974] = 3682, - [3975] = 3681, - [3976] = 3680, - [3977] = 3695, - [3978] = 3677, - [3979] = 3950, - [3980] = 3950, - [3981] = 3950, - [3982] = 3950, - [3983] = 3950, - [3984] = 3950, - [3985] = 3688, - [3986] = 3689, - [3987] = 3690, - [3988] = 3695, - [3989] = 3678, - [3990] = 3950, - [3991] = 3690, - [3992] = 3950, - [3993] = 3950, - [3994] = 3950, - [3995] = 3688, - [3996] = 3689, - [3997] = 3680, - [3998] = 3681, - [3999] = 3682, - [4000] = 3950, - [4001] = 3695, - [4002] = 3682, - [4003] = 3678, - [4004] = 3695, - [4005] = 3690, - [4006] = 3689, - [4007] = 3688, - [4008] = 3677, - [4009] = 3950, - [4010] = 3950, - [4011] = 3950, - [4012] = 3688, - [4013] = 3689, - [4014] = 3690, - [4015] = 3678, - [4016] = 3695, - [4017] = 3681, - [4018] = 3950, - [4019] = 3950, - [4020] = 3680, - [4021] = 3950, - [4022] = 3950, - [4023] = 3950, - [4024] = 3950, - [4025] = 3950, - [4026] = 3950, - [4027] = 3950, - [4028] = 3680, - [4029] = 3681, - [4030] = 3682, - [4031] = 3677, - [4032] = 4032, - [4033] = 4033, - [4034] = 4034, - [4035] = 4032, - [4036] = 4032, - [4037] = 4032, - [4038] = 4033, - [4039] = 4034, - [4040] = 4033, - [4041] = 4034, - [4042] = 4033, - [4043] = 4033, - [4044] = 4034, - [4045] = 4033, - [4046] = 4032, - [4047] = 4032, - [4048] = 4034, - [4049] = 4034, - [4050] = 4033, - [4051] = 4032, - [4052] = 4034, - [4053] = 4032, - [4054] = 4033, - [4055] = 4033, - [4056] = 4032, - [4057] = 4034, - [4058] = 4034, - [4059] = 4034, - [4060] = 4032, - [4061] = 4033, - [4062] = 4032, - [4063] = 4034, - [4064] = 4033, - [4065] = 4033, - [4066] = 4032, - [4067] = 4034, - [4068] = 4033, - [4069] = 4032, - [4070] = 4033, - [4071] = 4034, - [4072] = 4033, - [4073] = 4033, - [4074] = 4034, - [4075] = 4032, - [4076] = 4032, - [4077] = 4034, - [4078] = 4033, - [4079] = 4032, - [4080] = 4034, - [4081] = 4033, - [4082] = 4033, - [4083] = 4032, - [4084] = 4034, - [4085] = 4034, - [4086] = 4033, - [4087] = 4032, - [4088] = 4033, - [4089] = 4034, - [4090] = 4032, - [4091] = 4032, - [4092] = 4034, - [4093] = 4033, - [4094] = 4032, - [4095] = 4034, - [4096] = 4033, - [4097] = 4034, - [4098] = 4032, - [4099] = 4033, - [4100] = 4032, - [4101] = 4034, - [4102] = 4032, - [4103] = 4033, - [4104] = 4034, - [4105] = 4034, - [4106] = 4032, - [4107] = 4034, - [4108] = 4032, - [4109] = 4034, - [4110] = 4033, - [4111] = 4033, - [4112] = 4034, - [4113] = 4033, - [4114] = 4032, - [4115] = 4032, - [4116] = 4033, - [4117] = 4034, - [4118] = 4033, - [4119] = 4033, - [4120] = 4032, - [4121] = 4034, - [4122] = 4034, - [4123] = 4034, - [4124] = 4032, - [4125] = 4033, - [4126] = 4032, - [4127] = 4033, - [4128] = 4032, - [4129] = 4033, - [4130] = 4034, - [4131] = 4033, - [4132] = 4034, - [4133] = 4032, - [4134] = 4034, - [4135] = 4032, - [4136] = 4032, - [4137] = 676, - [4138] = 673, - [4139] = 4139, - [4140] = 4140, - [4141] = 4140, - [4142] = 4140, - [4143] = 4139, - [4144] = 4144, - [4145] = 4144, - [4146] = 4139, - [4147] = 4140, - [4148] = 4144, - [4149] = 4140, - [4150] = 4139, - [4151] = 673, - [4152] = 4152, - [4153] = 673, - [4154] = 4139, - [4155] = 4152, - [4156] = 4144, - [4157] = 4140, - [4158] = 4139, - [4159] = 4139, - [4160] = 4140, - [4161] = 4144, - [4162] = 673, - [4163] = 4152, - [4164] = 4152, - [4165] = 4152, - [4166] = 673, - [4167] = 4144, - [4168] = 4140, - [4169] = 4139, - [4170] = 4144, - [4171] = 4144, - [4172] = 4140, - [4173] = 4139, - [4174] = 4140, - [4175] = 4144, - [4176] = 4176, - [4177] = 4152, - [4178] = 4152, - [4179] = 4139, - [4180] = 4140, - [4181] = 4144, - [4182] = 4139, - [4183] = 4139, - [4184] = 4152, - [4185] = 4152, - [4186] = 676, - [4187] = 4144, - [4188] = 4152, - [4189] = 4140, - [4190] = 4140, - [4191] = 4144, - [4192] = 4140, - [4193] = 4139, - [4194] = 4139, - [4195] = 4176, - [4196] = 4152, - [4197] = 4152, - [4198] = 4144, - [4199] = 4139, - [4200] = 4140, - [4201] = 4176, - [4202] = 4144, - [4203] = 4152, - [4204] = 4139, - [4205] = 4152, - [4206] = 4140, - [4207] = 4152, - [4208] = 4144, - [4209] = 4144, - [4210] = 4140, - [4211] = 4139, - [4212] = 4144, - [4213] = 4139, - [4214] = 4140, - [4215] = 4144, - [4216] = 4140, - [4217] = 4139, - [4218] = 4152, - [4219] = 4152, - [4220] = 4144, - [4221] = 4139, - [4222] = 4152, - [4223] = 4139, - [4224] = 4140, - [4225] = 4144, - [4226] = 4144, - [4227] = 4152, - [4228] = 4139, - [4229] = 4140, - [4230] = 4139, - [4231] = 4152, - [4232] = 4140, - [4233] = 4144, - [4234] = 4140, - [4235] = 4139, - [4236] = 4152, - [4237] = 4144, - [4238] = 4176, - [4239] = 4140, - [4240] = 4144, - [4241] = 4139, - [4242] = 4152, - [4243] = 4140, - [4244] = 4144, - [4245] = 4152, - [4246] = 4140, - [4247] = 4139, - [4248] = 4144, - [4249] = 4139, - [4250] = 4152, - [4251] = 4139, - [4252] = 4144, - [4253] = 4140, - [4254] = 4152, - [4255] = 673, - [4256] = 4152, - [4257] = 673, - [4258] = 4152, - [4259] = 4144, - [4260] = 4139, - [4261] = 4140, - [4262] = 4144, - [4263] = 4152, - [4264] = 4152, - [4265] = 4140, - [4266] = 4152, - [4267] = 4144, - [4268] = 4140, - [4269] = 4139, - [4270] = 4176, - [4271] = 4139, - [4272] = 4140, - [4273] = 4144, - [4274] = 4152, - [4275] = 4152, - [4276] = 4139, - [4277] = 4140, - [4278] = 4144, - [4279] = 4152, - [4280] = 4152, - [4281] = 4144, - [4282] = 4144, - [4283] = 4140, - [4284] = 4140, - [4285] = 4139, - [4286] = 4139, - [4287] = 4140, - [4288] = 4144, - [4289] = 4139, - [4290] = 4152, - [4291] = 676, - [4292] = 4292, - [4293] = 673, - [4294] = 673, - [4295] = 4176, - [4296] = 4176, - [4297] = 673, - [4298] = 4176, - [4299] = 4292, - [4300] = 4176, - [4301] = 673, - [4302] = 673, - [4303] = 4303, - [4304] = 4304, - [4305] = 4304, - [4306] = 4304, - [4307] = 4307, - [4308] = 4307, - [4309] = 4307, - [4310] = 4304, - [4311] = 4304, - [4312] = 4304, - [4313] = 4307, - [4314] = 4304, - [4315] = 4307, - [4316] = 4316, - [4317] = 4307, - [4318] = 4307, - [4319] = 4316, - [4320] = 4304, - [4321] = 4316, - [4322] = 4303, - [4323] = 4307, - [4324] = 4304, - [4325] = 4303, - [4326] = 4316, - [4327] = 4304, - [4328] = 4307, - [4329] = 4303, - [4330] = 4303, - [4331] = 4316, - [4332] = 4304, - [4333] = 4303, - [4334] = 4303, - [4335] = 4304, - [4336] = 4307, - [4337] = 4307, - [4338] = 4316, - [4339] = 4307, - [4340] = 4304, - [4341] = 4303, - [4342] = 4307, - [4343] = 4303, - [4344] = 4304, - [4345] = 4307, - [4346] = 4304, - [4347] = 4307, - [4348] = 4303, - [4349] = 4316, - [4350] = 4316, - [4351] = 4303, - [4352] = 4352, - [4353] = 4353, - [4354] = 4304, - [4355] = 4307, - [4356] = 4304, - [4357] = 4307, - [4358] = 4303, - [4359] = 4307, - [4360] = 4303, - [4361] = 4304, - [4362] = 4316, - [4363] = 4307, - [4364] = 4316, - [4365] = 4316, - [4366] = 4304, - [4367] = 4367, - [4368] = 4368, - [4369] = 4369, - [4370] = 4307, - [4371] = 4367, - [4372] = 4316, - [4373] = 4316, - [4374] = 4304, - [4375] = 4303, - [4376] = 4307, - [4377] = 4303, - [4378] = 4307, - [4379] = 4303, - [4380] = 4304, - [4381] = 892, - [4382] = 4307, - [4383] = 4304, - [4384] = 4303, - [4385] = 4307, - [4386] = 4316, - [4387] = 892, - [4388] = 845, - [4389] = 4316, - [4390] = 4307, - [4391] = 4303, - [4392] = 892, - [4393] = 4316, - [4394] = 4304, - [4395] = 4303, - [4396] = 845, - [4397] = 4303, - [4398] = 4316, - [4399] = 4307, - [4400] = 4307, - [4401] = 4353, - [4402] = 4316, - [4403] = 4303, - [4404] = 4369, - [4405] = 4303, - [4406] = 4307, - [4407] = 892, - [4408] = 4316, - [4409] = 845, - [4410] = 4304, - [4411] = 4303, - [4412] = 4316, - [4413] = 4307, - [4414] = 4303, - [4415] = 4316, - [4416] = 4304, - [4417] = 4303, - [4418] = 4304, - [4419] = 4304, - [4420] = 4304, - [4421] = 4307, - [4422] = 4316, - [4423] = 4352, - [4424] = 845, - [4425] = 4316, - [4426] = 845, - [4427] = 4307, - [4428] = 4316, - [4429] = 4304, - [4430] = 4304, - [4431] = 4316, - [4432] = 4303, - [4433] = 4352, - [4434] = 4307, - [4435] = 4307, - [4436] = 4316, - [4437] = 892, - [4438] = 4303, - [4439] = 4303, - [4440] = 4303, - [4441] = 4304, - [4442] = 4304, - [4443] = 4316, - [4444] = 4316, - [4445] = 4304, - [4446] = 4352, - [4447] = 4304, - [4448] = 4307, - [4449] = 4307, - [4450] = 4307, - [4451] = 4307, - [4452] = 4303, - [4453] = 4303, - [4454] = 4316, - [4455] = 4304, - [4456] = 4316, - [4457] = 4307, - [4458] = 4307, - [4459] = 4307, - [4460] = 4316, - [4461] = 4304, - [4462] = 4352, - [4463] = 4304, - [4464] = 4304, - [4465] = 4303, - [4466] = 4307, - [4467] = 4316, - [4468] = 4303, - [4469] = 4303, - [4470] = 4316, - [4471] = 4304, - [4472] = 4304, - [4473] = 4307, - [4474] = 4316, - [4475] = 4304, - [4476] = 4303, - [4477] = 4316, - [4478] = 4304, - [4479] = 4479, - [4480] = 4480, - [4481] = 4481, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, - [4485] = 4479, - [4486] = 4486, - [4487] = 4487, - [4488] = 4488, - [4489] = 4489, - [4490] = 4490, - [4491] = 4491, - [4492] = 4492, - [4493] = 4493, - [4494] = 4494, - [4495] = 4495, - [4496] = 4496, - [4497] = 4497, - [4498] = 4498, - [4499] = 4499, - [4500] = 4500, - [4501] = 4501, - [4502] = 4502, - [4503] = 4503, - [4504] = 4504, - [4505] = 4505, - [4506] = 4506, - [4507] = 4481, - [4508] = 4482, - [4509] = 4483, - [4510] = 4484, - [4511] = 4479, - [4512] = 4486, - [4513] = 4487, - [4514] = 4488, - [4515] = 4489, - [4516] = 4490, - [4517] = 4491, - [4518] = 4492, - [4519] = 4493, - [4520] = 4494, - [4521] = 4495, - [4522] = 4496, - [4523] = 4497, - [4524] = 4498, - [4525] = 4499, - [4526] = 4500, - [4527] = 4501, - [4528] = 4502, - [4529] = 4503, - [4530] = 4504, - [4531] = 4505, - [4532] = 4506, - [4533] = 4481, - [4534] = 4482, - [4535] = 4483, - [4536] = 4484, - [4537] = 4479, - [4538] = 4486, - [4539] = 4487, - [4540] = 4488, - [4541] = 4489, - [4542] = 4490, - [4543] = 4491, - [4544] = 4492, - [4545] = 4493, - [4546] = 4494, - [4547] = 4495, - [4548] = 4496, - [4549] = 4497, - [4550] = 4506, - [4551] = 4505, - [4552] = 4498, - [4553] = 4499, - [4554] = 4500, - [4555] = 4501, - [4556] = 4502, - [4557] = 4503, - [4558] = 4504, - [4559] = 4505, - [4560] = 4506, - [4561] = 892, - [4562] = 4481, - [4563] = 4482, - [4564] = 4483, - [4565] = 4484, - [4566] = 4479, - [4567] = 4486, - [4568] = 4487, - [4569] = 4488, - [4570] = 4489, - [4571] = 4490, - [4572] = 4491, - [4573] = 4492, - [4574] = 4493, - [4575] = 4494, - [4576] = 4495, - [4577] = 4496, - [4578] = 4497, - [4579] = 4504, - [4580] = 4503, - [4581] = 4498, - [4582] = 4499, - [4583] = 4500, - [4584] = 4501, - [4585] = 4502, - [4586] = 4503, - [4587] = 4504, - [4588] = 4505, - [4589] = 4506, - [4590] = 4481, - [4591] = 4482, - [4592] = 4483, - [4593] = 4484, - [4594] = 4479, - [4595] = 4486, - [4596] = 4487, - [4597] = 4488, - [4598] = 4489, - [4599] = 4490, - [4600] = 4491, - [4601] = 4492, - [4602] = 4493, - [4603] = 4494, - [4604] = 4495, - [4605] = 4496, - [4606] = 4497, - [4607] = 4501, - [4608] = 4500, - [4609] = 4499, - [4610] = 4498, - [4611] = 4499, - [4612] = 4500, - [4613] = 4501, - [4614] = 4502, - [4615] = 4503, - [4616] = 4504, - [4617] = 4505, - [4618] = 4506, - [4619] = 4481, - [4620] = 4482, - [4621] = 4483, - [4622] = 4484, - [4623] = 4479, - [4624] = 4486, - [4625] = 4487, - [4626] = 4488, - [4627] = 4489, - [4628] = 4490, - [4629] = 4491, - [4630] = 4492, - [4631] = 4493, - [4632] = 4494, - [4633] = 4495, - [4634] = 4496, - [4635] = 4497, - [4636] = 4498, - [4637] = 4497, - [4638] = 4496, - [4639] = 4498, - [4640] = 4499, - [4641] = 4500, - [4642] = 4501, - [4643] = 4502, - [4644] = 4503, - [4645] = 4504, - [4646] = 4505, - [4647] = 4506, - [4648] = 4481, - [4649] = 4482, - [4650] = 4483, - [4651] = 4484, - [4652] = 845, - [4653] = 4479, - [4654] = 4486, - [4655] = 4487, - [4656] = 4488, - [4657] = 4489, - [4658] = 4490, - [4659] = 4491, - [4660] = 4492, - [4661] = 4493, - [4662] = 4494, - [4663] = 4495, - [4664] = 4496, - [4665] = 4497, - [4666] = 4495, - [4667] = 4494, - [4668] = 4498, - [4669] = 4499, - [4670] = 4500, - [4671] = 4501, - [4672] = 4502, - [4673] = 4503, - [4674] = 4504, - [4675] = 4505, - [4676] = 4506, - [4677] = 4481, - [4678] = 4482, - [4679] = 4483, - [4680] = 4484, - [4681] = 4479, - [4682] = 4486, - [4683] = 4487, - [4684] = 4488, - [4685] = 4489, - [4686] = 4490, - [4687] = 4491, - [4688] = 4492, - [4689] = 4493, - [4690] = 4494, - [4691] = 4495, - [4692] = 4496, - [4693] = 4497, - [4694] = 4493, - [4695] = 4492, - [4696] = 4502, - [4697] = 4498, - [4698] = 4499, - [4699] = 4500, - [4700] = 4501, - [4701] = 4502, - [4702] = 4503, - [4703] = 4504, - [4704] = 4505, - [4705] = 4506, - [4706] = 4481, - [4707] = 4482, - [4708] = 4483, - [4709] = 4484, - [4710] = 4479, - [4711] = 4486, - [4712] = 4487, - [4713] = 4488, - [4714] = 4489, - [4715] = 4490, - [4716] = 4491, - [4717] = 4492, - [4718] = 4493, - [4719] = 4494, - [4720] = 4495, - [4721] = 4496, - [4722] = 4497, - [4723] = 4490, - [4724] = 4498, - [4725] = 4499, - [4726] = 4500, - [4727] = 4501, - [4728] = 4502, - [4729] = 4503, - [4730] = 4504, - [4731] = 4505, - [4732] = 4506, - [4733] = 4481, - [4734] = 4482, - [4735] = 4483, - [4736] = 4484, - [4737] = 4479, - [4738] = 4486, - [4739] = 4487, - [4740] = 4488, - [4741] = 4489, - [4742] = 4490, - [4743] = 4491, - [4744] = 4492, - [4745] = 4493, - [4746] = 4494, - [4747] = 4495, - [4748] = 4496, - [4749] = 4497, - [4750] = 4489, - [4751] = 4488, - [4752] = 4487, - [4753] = 4498, - [4754] = 4499, - [4755] = 4500, - [4756] = 4501, - [4757] = 4502, - [4758] = 4503, - [4759] = 4504, - [4760] = 4505, - [4761] = 4506, - [4762] = 4481, - [4763] = 4482, - [4764] = 4483, - [4765] = 4484, - [4766] = 4479, - [4767] = 4486, - [4768] = 4487, - [4769] = 4488, - [4770] = 4489, - [4771] = 4490, - [4772] = 4491, - [4773] = 4492, - [4774] = 4493, - [4775] = 4494, - [4776] = 4495, - [4777] = 4496, - [4778] = 4497, - [4779] = 4486, - [4780] = 4479, - [4781] = 4498, - [4782] = 4499, - [4783] = 4500, - [4784] = 4501, - [4785] = 4502, - [4786] = 4503, - [4787] = 4504, - [4788] = 4505, - [4789] = 4506, - [4790] = 4481, - [4791] = 4482, - [4792] = 4483, - [4793] = 4484, - [4794] = 4479, - [4795] = 4486, - [4796] = 4487, - [4797] = 4488, - [4798] = 4489, - [4799] = 4490, - [4800] = 4491, - [4801] = 4492, - [4802] = 4493, - [4803] = 4494, - [4804] = 4495, - [4805] = 4496, - [4806] = 4497, - [4807] = 4484, - [4808] = 4491, - [4809] = 4498, - [4810] = 4499, - [4811] = 4500, - [4812] = 4501, - [4813] = 4502, - [4814] = 4503, - [4815] = 4504, - [4816] = 4505, - [4817] = 4506, - [4818] = 4481, - [4819] = 4482, - [4820] = 4483, - [4821] = 4484, - [4822] = 4479, - [4823] = 4486, - [4824] = 4487, - [4825] = 4488, - [4826] = 4489, - [4827] = 4490, - [4828] = 4491, - [4829] = 4492, - [4830] = 4493, - [4831] = 4494, - [4832] = 4495, - [4833] = 4496, - [4834] = 4497, - [4835] = 4483, - [4836] = 4498, - [4837] = 4499, - [4838] = 4500, - [4839] = 4501, - [4840] = 4502, - [4841] = 4503, - [4842] = 4504, - [4843] = 4505, - [4844] = 4506, - [4845] = 4481, - [4846] = 4482, - [4847] = 4483, - [4848] = 4484, - [4849] = 4479, - [4850] = 4486, - [4851] = 4487, - [4852] = 4488, - [4853] = 4489, - [4854] = 4490, - [4855] = 4491, - [4856] = 4492, - [4857] = 4493, - [4858] = 4494, - [4859] = 4495, - [4860] = 4496, - [4861] = 4497, - [4862] = 4482, - [4863] = 4481, - [4864] = 4498, - [4865] = 4499, - [4866] = 4500, - [4867] = 4501, - [4868] = 4502, - [4869] = 4503, - [4870] = 4504, - [4871] = 4505, - [4872] = 4506, - [4873] = 4481, - [4874] = 4482, - [4875] = 4483, - [4876] = 4484, - [4877] = 4479, - [4878] = 4486, - [4879] = 4487, - [4880] = 4488, - [4881] = 4489, - [4882] = 4490, - [4883] = 4491, - [4884] = 4492, - [4885] = 4493, - [4886] = 4494, - [4887] = 4495, - [4888] = 4496, - [4889] = 4497, - [4890] = 4498, - [4891] = 4499, - [4892] = 4500, - [4893] = 4501, - [4894] = 4502, - [4895] = 4503, - [4896] = 4504, - [4897] = 4505, - [4898] = 4506, - [4899] = 4481, - [4900] = 4482, - [4901] = 4483, - [4902] = 4484, - [4903] = 4479, - [4904] = 4486, - [4905] = 4487, - [4906] = 4488, - [4907] = 4489, - [4908] = 4490, - [4909] = 4491, - [4910] = 4492, - [4911] = 4493, - [4912] = 4494, - [4913] = 4495, - [4914] = 4496, - [4915] = 4497, - [4916] = 4498, - [4917] = 4499, - [4918] = 4500, - [4919] = 4501, - [4920] = 4502, - [4921] = 4503, - [4922] = 4504, - [4923] = 4505, - [4924] = 4506, - [4925] = 4481, - [4926] = 4482, - [4927] = 4483, - [4928] = 4484, - [4929] = 4479, - [4930] = 4486, - [4931] = 4487, - [4932] = 4488, - [4933] = 4489, - [4934] = 4490, - [4935] = 4491, - [4936] = 4492, - [4937] = 4493, - [4938] = 4494, - [4939] = 4495, - [4940] = 4496, - [4941] = 4497, - [4942] = 4498, - [4943] = 4499, - [4944] = 4500, - [4945] = 4501, - [4946] = 4502, - [4947] = 4503, - [4948] = 4504, - [4949] = 4505, - [4950] = 4506, - [4951] = 4481, - [4952] = 4482, - [4953] = 4483, - [4954] = 4484, - [4955] = 4479, - [4956] = 4486, - [4957] = 4487, - [4958] = 4488, - [4959] = 4489, - [4960] = 4490, - [4961] = 4491, - [4962] = 4492, - [4963] = 4493, - [4964] = 4494, - [4965] = 4495, - [4966] = 4496, - [4967] = 4497, - [4968] = 4498, - [4969] = 4499, - [4970] = 4500, - [4971] = 4501, - [4972] = 4502, - [4973] = 4503, - [4974] = 4504, - [4975] = 4505, - [4976] = 4506, - [4977] = 4481, - [4978] = 4482, - [4979] = 4483, - [4980] = 4484, - [4981] = 4479, - [4982] = 4486, - [4983] = 4487, - [4984] = 4488, - [4985] = 4489, - [4986] = 4490, - [4987] = 4491, - [4988] = 4492, - [4989] = 4493, - [4990] = 4494, - [4991] = 4495, - [4992] = 4496, - [4993] = 4497, - [4994] = 4498, - [4995] = 4499, - [4996] = 4500, - [4997] = 4501, - [4998] = 4502, - [4999] = 4503, - [5000] = 4504, - [5001] = 4505, - [5002] = 4506, - [5003] = 4481, - [5004] = 4482, - [5005] = 4483, - [5006] = 4484, - [5007] = 4479, - [5008] = 4486, - [5009] = 4487, - [5010] = 4488, - [5011] = 4489, - [5012] = 4490, - [5013] = 4491, - [5014] = 4492, - [5015] = 4493, - [5016] = 4494, - [5017] = 4495, - [5018] = 4496, - [5019] = 4497, - [5020] = 4498, - [5021] = 4499, - [5022] = 4500, - [5023] = 4501, - [5024] = 4502, - [5025] = 4503, - [5026] = 4504, - [5027] = 4505, - [5028] = 4506, - [5029] = 4481, - [5030] = 4482, - [5031] = 4483, - [5032] = 4484, - [5033] = 4479, - [5034] = 4486, - [5035] = 4487, - [5036] = 4488, - [5037] = 4489, - [5038] = 4490, - [5039] = 4491, - [5040] = 4492, - [5041] = 4493, - [5042] = 4494, - [5043] = 4495, - [5044] = 4496, - [5045] = 4497, - [5046] = 4498, - [5047] = 4499, - [5048] = 4500, - [5049] = 5049, - [5050] = 4501, - [5051] = 4502, - [5052] = 4503, - [5053] = 4504, - [5054] = 4505, - [5055] = 4506, - [5056] = 4481, - [5057] = 4482, - [5058] = 4483, - [5059] = 4484, - [5060] = 4486, - [5061] = 4487, - [5062] = 4488, - [5063] = 4489, - [5064] = 4490, - [5065] = 4491, - [5066] = 4492, - [5067] = 4493, - [5068] = 4494, - [5069] = 4495, - [5070] = 4496, - [5071] = 4497, - [5072] = 4498, - [5073] = 4499, - [5074] = 4500, - [5075] = 4501, - [5076] = 4502, - [5077] = 4503, - [5078] = 4504, - [5079] = 4505, - [5080] = 4506, - [5081] = 4481, - [5082] = 4482, - [5083] = 4483, - [5084] = 4484, - [5085] = 4479, - [5086] = 4486, - [5087] = 4487, - [5088] = 4488, - [5089] = 4489, - [5090] = 4490, - [5091] = 4491, - [5092] = 4492, - [5093] = 4493, - [5094] = 4494, - [5095] = 4495, - [5096] = 4496, - [5097] = 4497, - [5098] = 4498, - [5099] = 4499, - [5100] = 4500, - [5101] = 4501, - [5102] = 4502, - [5103] = 4503, - [5104] = 4504, - [5105] = 4505, - [5106] = 4506, - [5107] = 4481, - [5108] = 4482, - [5109] = 4483, - [5110] = 4484, - [5111] = 4479, - [5112] = 4486, - [5113] = 4487, - [5114] = 4488, - [5115] = 4489, - [5116] = 4490, - [5117] = 4491, - [5118] = 4492, - [5119] = 4493, - [5120] = 4494, - [5121] = 4495, - [5122] = 4496, - [5123] = 4497, - [5124] = 4498, - [5125] = 4499, - [5126] = 4500, - [5127] = 4501, - [5128] = 4502, - [5129] = 4503, - [5130] = 4504, - [5131] = 4505, - [5132] = 4506, - [5133] = 4481, - [5134] = 4482, - [5135] = 4483, - [5136] = 4484, - [5137] = 4479, - [5138] = 4486, - [5139] = 4487, - [5140] = 4488, - [5141] = 4489, - [5142] = 4490, - [5143] = 4491, - [5144] = 4492, - [5145] = 4493, - [5146] = 4494, - [5147] = 4495, - [5148] = 4496, - [5149] = 4497, - [5150] = 4498, - [5151] = 4499, - [5152] = 4500, - [5153] = 4501, - [5154] = 4502, - [5155] = 4503, - [5156] = 4504, - [5157] = 4505, - [5158] = 4506, - [5159] = 4481, - [5160] = 4482, - [5161] = 4483, - [5162] = 4484, - [5163] = 4479, - [5164] = 4486, - [5165] = 4487, - [5166] = 4488, - [5167] = 4489, - [5168] = 4490, - [5169] = 4491, - [5170] = 4492, - [5171] = 4493, - [5172] = 4494, - [5173] = 4495, - [5174] = 4496, - [5175] = 4497, - [5176] = 4498, - [5177] = 4499, - [5178] = 4500, - [5179] = 4501, - [5180] = 4502, - [5181] = 4503, - [5182] = 4504, - [5183] = 4505, - [5184] = 4506, - [5185] = 4481, - [5186] = 4482, - [5187] = 4483, - [5188] = 4484, - [5189] = 4479, - [5190] = 4486, - [5191] = 4487, - [5192] = 4488, - [5193] = 4489, - [5194] = 4490, - [5195] = 4491, - [5196] = 4492, - [5197] = 4493, - [5198] = 4494, - [5199] = 4495, - [5200] = 4496, - [5201] = 4497, - [5202] = 4498, - [5203] = 4499, - [5204] = 4500, - [5205] = 4501, - [5206] = 4502, - [5207] = 4503, - [5208] = 4504, - [5209] = 4505, - [5210] = 4506, - [5211] = 4481, - [5212] = 4482, - [5213] = 4483, - [5214] = 4484, - [5215] = 4479, - [5216] = 4486, - [5217] = 4487, - [5218] = 4488, - [5219] = 4489, - [5220] = 4490, - [5221] = 4491, - [5222] = 4492, - [5223] = 4493, - [5224] = 4494, - [5225] = 4495, - [5226] = 4496, - [5227] = 4497, - [5228] = 4498, - [5229] = 4499, - [5230] = 4500, - [5231] = 4501, - [5232] = 4502, - [5233] = 4503, - [5234] = 4504, - [5235] = 4505, - [5236] = 4506, - [5237] = 4481, - [5238] = 4482, - [5239] = 4483, - [5240] = 4484, - [5241] = 4479, - [5242] = 4486, - [5243] = 4487, - [5244] = 4488, - [5245] = 4489, - [5246] = 4490, - [5247] = 4491, - [5248] = 4492, - [5249] = 4493, - [5250] = 4494, - [5251] = 4495, - [5252] = 4496, - [5253] = 4497, - [5254] = 4498, - [5255] = 5255, - [5256] = 4499, - [5257] = 4500, - [5258] = 4501, - [5259] = 4502, - [5260] = 4503, - [5261] = 4504, - [5262] = 4505, - [5263] = 4506, - [5264] = 4481, - [5265] = 4482, - [5266] = 4483, - [5267] = 4484, - [5268] = 4479, - [5269] = 4486, - [5270] = 4487, - [5271] = 4488, - [5272] = 4489, - [5273] = 4490, - [5274] = 4491, - [5275] = 4492, - [5276] = 4493, - [5277] = 4494, - [5278] = 4495, - [5279] = 4496, - [5280] = 4497, - [5281] = 4498, - [5282] = 4499, - [5283] = 4500, - [5284] = 4501, - [5285] = 4502, - [5286] = 4503, - [5287] = 4504, - [5288] = 4505, - [5289] = 4506, - [5290] = 4481, - [5291] = 4482, - [5292] = 4483, - [5293] = 4484, - [5294] = 4479, - [5295] = 4486, - [5296] = 4487, - [5297] = 4488, - [5298] = 4489, - [5299] = 4490, - [5300] = 4491, - [5301] = 4492, - [5302] = 4493, - [5303] = 4494, - [5304] = 4495, - [5305] = 4496, - [5306] = 4497, - [5307] = 4498, - [5308] = 4499, - [5309] = 4500, - [5310] = 4501, - [5311] = 4502, - [5312] = 4503, - [5313] = 4504, - [5314] = 4505, - [5315] = 4506, - [5316] = 4481, - [5317] = 4482, - [5318] = 4483, - [5319] = 4484, - [5320] = 4479, - [5321] = 4486, - [5322] = 4487, - [5323] = 4488, - [5324] = 4489, - [5325] = 4490, - [5326] = 4491, - [5327] = 4492, - [5328] = 4493, - [5329] = 5329, - [5330] = 4494, - [5331] = 4495, - [5332] = 4496, - [5333] = 4497, - [5334] = 4498, - [5335] = 4499, - [5336] = 4500, - [5337] = 4501, - [5338] = 4502, - [5339] = 4503, - [5340] = 4504, - [5341] = 4505, - [5342] = 4506, - [5343] = 4481, - [5344] = 4482, - [5345] = 4483, - [5346] = 4484, - [5347] = 4479, - [5348] = 4486, - [5349] = 4487, - [5350] = 4488, - [5351] = 4489, - [5352] = 4490, - [5353] = 4491, - [5354] = 4492, - [5355] = 4493, - [5356] = 4494, - [5357] = 4495, - [5358] = 4496, - [5359] = 4497, - [5360] = 4498, - [5361] = 4499, - [5362] = 4500, - [5363] = 4501, - [5364] = 4502, - [5365] = 4503, - [5366] = 4504, - [5367] = 4505, - [5368] = 4506, - [5369] = 4481, - [5370] = 4482, - [5371] = 4483, - [5372] = 4484, - [5373] = 4479, - [5374] = 4486, - [5375] = 4487, - [5376] = 4488, - [5377] = 4489, - [5378] = 4490, - [5379] = 4491, - [5380] = 4492, - [5381] = 4493, - [5382] = 4494, - [5383] = 4495, - [5384] = 4496, - [5385] = 4497, - [5386] = 4498, - [5387] = 4499, - [5388] = 4500, - [5389] = 4501, - [5390] = 4502, - [5391] = 4503, - [5392] = 4504, - [5393] = 4505, - [5394] = 4506, - [5395] = 5049, - [5396] = 5396, - [5397] = 5397, - [5398] = 5398, - [5399] = 5399, - [5400] = 5400, - [5401] = 5399, - [5402] = 5402, - [5403] = 5397, - [5404] = 5398, - [5405] = 5400, - [5406] = 5397, - [5407] = 5398, - [5408] = 5399, - [5409] = 5400, - [5410] = 5399, - [5411] = 5400, - [5412] = 5397, - [5413] = 5398, - [5414] = 5398, - [5415] = 5399, - [5416] = 5400, - [5417] = 5397, - [5418] = 5399, - [5419] = 5397, - [5420] = 5400, - [5421] = 5398, - [5422] = 5398, - [5423] = 5397, - [5424] = 5399, - [5425] = 5397, - [5426] = 5398, - [5427] = 5400, - [5428] = 5399, - [5429] = 5400, - [5430] = 5399, - [5431] = 5400, - [5432] = 5432, - [5433] = 5400, - [5434] = 5397, - [5435] = 5398, - [5436] = 5399, - [5437] = 5400, - [5438] = 5438, - [5439] = 5399, - [5440] = 5400, - [5441] = 5398, - [5442] = 5397, - [5443] = 5399, - [5444] = 5400, - [5445] = 5397, - [5446] = 5398, - [5447] = 5399, - [5448] = 5400, - [5449] = 5399, - [5450] = 5400, - [5451] = 5399, - [5452] = 5397, - [5453] = 5398, - [5454] = 5400, - [5455] = 5398, - [5456] = 5399, - [5457] = 5397, - [5458] = 5397, - [5459] = 5398, - [5460] = 5400, - [5461] = 5397, - [5462] = 5398, - [5463] = 5399, - [5464] = 5398, - [5465] = 5465, - [5466] = 5400, - [5467] = 5398, - [5468] = 5397, - [5469] = 5397, - [5470] = 5398, - [5471] = 5399, - [5472] = 5400, - [5473] = 5399, - [5474] = 5400, - [5475] = 5399, - [5476] = 5400, - [5477] = 5397, - [5478] = 5397, - [5479] = 5398, - [5480] = 5399, - [5481] = 5400, - [5482] = 5399, - [5483] = 5397, - [5484] = 5400, - [5485] = 5399, - [5486] = 5400, - [5487] = 5398, - [5488] = 5397, - [5489] = 5398, - [5490] = 5398, - [5491] = 5397, - [5492] = 5397, - [5493] = 5399, - [5494] = 5400, - [5495] = 5399, - [5496] = 5398, - [5497] = 5400, - [5498] = 5397, - [5499] = 5398, - [5500] = 5399, - [5501] = 5402, - [5502] = 5397, - [5503] = 5398, - [5504] = 5400, - [5505] = 5399, - [5506] = 5400, - [5507] = 5399, - [5508] = 5402, - [5509] = 5400, - [5510] = 5399, - [5511] = 5397, - [5512] = 5398, - [5513] = 5432, - [5514] = 5400, - [5515] = 5399, - [5516] = 5400, - [5517] = 5398, - [5518] = 5397, - [5519] = 5399, - [5520] = 5520, - [5521] = 5400, - [5522] = 5438, - [5523] = 5397, - [5524] = 5398, - [5525] = 5525, - [5526] = 5399, - [5527] = 5400, - [5528] = 5402, - [5529] = 5399, - [5530] = 5400, - [5531] = 5397, - [5532] = 5398, - [5533] = 5399, - [5534] = 5398, - [5535] = 5397, - [5536] = 5400, - [5537] = 5397, - [5538] = 5398, - [5539] = 5398, - [5540] = 5398, - [5541] = 5397, - [5542] = 5398, - [5543] = 5397, - [5544] = 5465, - [5545] = 5397, - [5546] = 5398, - [5547] = 5399, - [5548] = 5397, - [5549] = 5402, - [5550] = 5550, - [5551] = 5551, - [5552] = 5552, - [5553] = 5553, - [5554] = 5554, - [5555] = 5555, - [5556] = 5556, - [5557] = 5557, - [5558] = 5558, - [5559] = 5559, - [5560] = 5560, - [5561] = 5561, - [5562] = 5562, - [5563] = 5563, - [5564] = 5555, - [5565] = 5565, - [5566] = 5566, - [5567] = 5567, - [5568] = 5568, - [5569] = 5569, - [5570] = 5570, - [5571] = 5571, - [5572] = 5572, - [5573] = 5573, - [5574] = 5569, - [5575] = 5553, - [5576] = 5552, - [5577] = 5577, - [5578] = 5578, - [5579] = 5551, - [5580] = 5580, - [5581] = 5581, - [5582] = 5550, - [5583] = 5568, - [5584] = 5572, - [5585] = 5571, - [5586] = 5570, - [5587] = 5587, - [5588] = 5588, - [5589] = 5589, - [5590] = 5569, - [5591] = 5591, - [5592] = 5551, - [5593] = 5591, - [5594] = 5567, - [5595] = 5595, - [5596] = 5566, - [5597] = 5597, - [5598] = 5565, - [5599] = 5563, - [5600] = 5562, - [5601] = 5591, - [5602] = 5561, - [5603] = 5603, - [5604] = 5604, - [5605] = 5605, - [5606] = 5606, - [5607] = 5560, - [5608] = 5559, - [5609] = 5558, - [5610] = 5581, - [5611] = 5557, - [5612] = 5556, - [5613] = 5555, - [5614] = 5554, - [5615] = 5606, - [5616] = 5605, - [5617] = 5604, - [5618] = 5550, - [5619] = 5603, - [5620] = 5597, - [5621] = 5606, - [5622] = 5553, - [5623] = 5554, - [5624] = 5555, - [5625] = 5556, - [5626] = 5557, - [5627] = 5558, - [5628] = 5559, - [5629] = 5560, - [5630] = 5561, - [5631] = 5562, - [5632] = 5563, - [5633] = 5587, - [5634] = 5565, - [5635] = 5566, - [5636] = 5567, - [5637] = 5568, - [5638] = 5553, - [5639] = 5570, - [5640] = 5571, - [5641] = 5572, - [5642] = 5573, - [5643] = 5569, - [5644] = 5588, - [5645] = 5552, - [5646] = 5577, - [5647] = 5578, - [5648] = 5551, - [5649] = 5580, - [5650] = 5581, - [5651] = 5550, - [5652] = 5589, - [5653] = 5597, - [5654] = 5603, - [5655] = 5551, - [5656] = 5587, - [5657] = 5588, - [5658] = 5589, - [5659] = 5597, - [5660] = 5591, - [5661] = 5595, - [5662] = 5604, - [5663] = 5591, - [5664] = 5605, - [5665] = 5595, - [5666] = 5595, - [5667] = 5589, - [5668] = 5603, - [5669] = 5606, - [5670] = 5605, - [5671] = 5591, - [5672] = 5588, - [5673] = 5587, - [5674] = 5556, - [5675] = 5604, - [5676] = 5606, - [5677] = 5605, - [5678] = 5606, - [5679] = 5550, - [5680] = 5578, - [5681] = 5595, - [5682] = 5581, - [5683] = 5580, - [5684] = 5551, - [5685] = 5578, - [5686] = 5577, - [5687] = 5606, - [5688] = 5605, - [5689] = 5604, - [5690] = 5552, - [5691] = 5603, - [5692] = 5597, - [5693] = 5578, - [5694] = 5589, - [5695] = 5553, - [5696] = 5554, - [5697] = 5555, - [5698] = 5556, - [5699] = 5557, - [5700] = 5558, - [5701] = 5559, - [5702] = 5560, - [5703] = 5561, - [5704] = 5562, - [5705] = 5563, - [5706] = 5588, - [5707] = 5565, - [5708] = 5566, - [5709] = 5567, - [5710] = 5568, - [5711] = 5578, - [5712] = 5570, - [5713] = 5571, - [5714] = 5572, - [5715] = 5573, - [5716] = 5569, - [5717] = 5605, - [5718] = 5552, - [5719] = 5577, - [5720] = 5578, - [5721] = 5551, - [5722] = 5580, - [5723] = 5581, - [5724] = 5550, - [5725] = 5573, - [5726] = 5572, - [5727] = 5595, - [5728] = 5571, - [5729] = 5587, - [5730] = 5588, - [5731] = 5589, - [5732] = 5570, - [5733] = 5587, - [5734] = 5605, - [5735] = 5568, - [5736] = 5567, - [5737] = 5566, - [5738] = 5595, - [5739] = 5565, - [5740] = 5604, - [5741] = 5563, - [5742] = 5589, - [5743] = 5588, - [5744] = 5591, - [5745] = 5587, - [5746] = 5562, - [5747] = 5561, - [5748] = 5560, - [5749] = 5559, - [5750] = 5558, - [5751] = 5557, - [5752] = 5556, - [5753] = 5555, - [5754] = 5554, - [5755] = 5553, - [5756] = 5580, - [5757] = 5597, - [5758] = 5603, - [5759] = 5604, - [5760] = 5578, - [5761] = 5568, - [5762] = 5570, - [5763] = 5571, - [5764] = 5572, - [5765] = 5568, - [5766] = 5573, - [5767] = 5569, - [5768] = 5567, - [5769] = 5604, - [5770] = 5550, - [5771] = 5581, - [5772] = 5559, - [5773] = 5580, - [5774] = 5566, - [5775] = 5565, - [5776] = 5591, - [5777] = 5563, - [5778] = 5552, - [5779] = 5591, - [5780] = 5581, - [5781] = 5577, - [5782] = 5566, - [5783] = 5557, - [5784] = 5550, - [5785] = 5551, - [5786] = 5595, - [5787] = 5562, - [5788] = 5561, - [5789] = 5580, - [5790] = 5581, - [5791] = 5587, - [5792] = 5560, - [5793] = 5581, - [5794] = 5559, - [5795] = 5589, - [5796] = 5588, - [5797] = 5587, - [5798] = 5550, - [5799] = 5587, - [5800] = 5588, - [5801] = 5580, - [5802] = 5580, - [5803] = 5551, - [5804] = 5589, - [5805] = 5550, - [5806] = 5581, - [5807] = 5580, - [5808] = 5551, - [5809] = 5578, - [5810] = 5577, - [5811] = 5552, - [5812] = 5588, - [5813] = 5558, - [5814] = 5569, - [5815] = 5573, - [5816] = 5572, - [5817] = 5571, - [5818] = 5570, - [5819] = 5557, - [5820] = 5568, - [5821] = 5567, - [5822] = 5551, - [5823] = 5558, - [5824] = 5606, - [5825] = 5565, - [5826] = 5595, - [5827] = 5563, - [5828] = 5562, - [5829] = 5561, - [5830] = 5560, - [5831] = 5559, - [5832] = 5558, - [5833] = 5561, - [5834] = 5577, - [5835] = 5552, - [5836] = 5557, - [5837] = 5556, - [5838] = 5555, - [5839] = 5554, - [5840] = 5553, - [5841] = 5556, - [5842] = 5597, - [5843] = 5603, - [5844] = 5560, - [5845] = 5606, - [5846] = 5604, - [5847] = 5605, - [5848] = 5606, - [5849] = 5605, - [5850] = 5604, - [5851] = 5595, - [5852] = 5603, - [5853] = 5597, - [5854] = 5572, - [5855] = 5587, - [5856] = 5591, - [5857] = 5589, - [5858] = 5559, - [5859] = 5591, - [5860] = 5562, - [5861] = 5571, - [5862] = 5554, - [5863] = 5553, - [5864] = 5554, - [5865] = 5577, - [5866] = 5597, - [5867] = 5569, - [5868] = 5868, - [5869] = 5591, - [5870] = 5555, - [5871] = 5563, - [5872] = 5556, - [5873] = 5557, - [5874] = 5558, - [5875] = 5595, - [5876] = 5578, - [5877] = 5559, - [5878] = 5560, - [5879] = 5565, - [5880] = 5561, - [5881] = 5562, - [5882] = 5563, - [5883] = 5589, - [5884] = 5588, - [5885] = 5587, - [5886] = 5552, - [5887] = 5566, - [5888] = 5595, - [5889] = 5595, - [5890] = 5553, - [5891] = 5606, - [5892] = 5550, - [5893] = 5581, - [5894] = 5580, - [5895] = 5551, - [5896] = 5578, - [5897] = 5573, - [5898] = 5572, - [5899] = 5571, - [5900] = 5577, - [5901] = 5552, - [5902] = 5565, - [5903] = 5569, - [5904] = 5573, - [5905] = 5572, - [5906] = 5571, - [5907] = 5570, - [5908] = 5567, - [5909] = 5605, - [5910] = 5568, - [5911] = 5567, - [5912] = 5566, - [5913] = 5565, - [5914] = 5591, - [5915] = 5563, - [5916] = 5562, - [5917] = 5561, - [5918] = 5606, - [5919] = 5571, - [5920] = 5560, - [5921] = 5559, - [5922] = 5558, - [5923] = 5557, - [5924] = 5556, - [5925] = 5555, - [5926] = 5554, - [5927] = 5553, - [5928] = 5604, - [5929] = 5570, - [5930] = 5569, - [5931] = 5568, - [5932] = 5597, - [5933] = 5603, - [5934] = 5566, - [5935] = 5604, - [5936] = 5605, - [5937] = 5571, - [5938] = 5567, - [5939] = 5568, - [5940] = 5577, - [5941] = 5597, - [5942] = 5553, - [5943] = 5597, - [5944] = 5554, - [5945] = 5591, - [5946] = 5555, - [5947] = 5570, - [5948] = 5589, - [5949] = 5570, - [5950] = 5573, - [5951] = 5588, - [5952] = 5567, - [5953] = 5572, - [5954] = 5573, - [5955] = 5556, - [5956] = 5591, - [5957] = 5557, - [5958] = 5558, - [5959] = 5559, - [5960] = 5569, - [5961] = 5557, - [5962] = 5566, - [5963] = 5567, - [5964] = 5560, - [5965] = 5595, - [5966] = 5561, - [5967] = 5552, - [5968] = 5562, - [5969] = 5577, - [5970] = 5563, - [5971] = 5578, - [5972] = 5572, - [5973] = 5589, - [5974] = 5588, - [5975] = 5587, - [5976] = 5565, - [5977] = 5566, - [5978] = 5567, - [5979] = 5571, - [5980] = 5550, - [5981] = 5581, - [5982] = 5571, - [5983] = 5572, - [5984] = 5580, - [5985] = 5551, - [5986] = 5578, - [5987] = 5577, - [5988] = 5552, - [5989] = 5555, - [5990] = 5569, - [5991] = 5573, - [5992] = 5572, - [5993] = 5566, - [5994] = 5565, - [5995] = 5563, - [5996] = 5571, - [5997] = 5570, - [5998] = 5568, - [5999] = 5568, - [6000] = 5567, - [6001] = 5566, - [6002] = 5565, - [6003] = 5570, - [6004] = 5573, - [6005] = 5563, - [6006] = 5562, - [6007] = 5561, - [6008] = 5560, - [6009] = 5559, - [6010] = 5558, - [6011] = 5557, - [6012] = 5556, - [6013] = 5555, - [6014] = 5570, - [6015] = 5569, - [6016] = 5554, - [6017] = 5553, - [6018] = 5603, - [6019] = 5572, - [6020] = 5597, - [6021] = 5603, - [6022] = 5580, - [6023] = 5604, - [6024] = 5605, - [6025] = 5562, - [6026] = 5568, - [6027] = 5561, - [6028] = 5606, - [6029] = 5573, - [6030] = 5569, - [6031] = 5581, - [6032] = 5552, - [6033] = 5550, - [6034] = 5577, - [6035] = 5603, - [6036] = 5550, - [6037] = 5578, - [6038] = 5581, - [6039] = 5580, - [6040] = 5604, - [6041] = 5605, - [6042] = 5587, - [6043] = 5588, - [6044] = 5551, - [6045] = 5591, - [6046] = 5551, - [6047] = 5578, - [6048] = 5589, - [6049] = 5580, - [6050] = 5581, - [6051] = 5606, - [6052] = 5550, - [6053] = 5595, - [6054] = 5587, - [6055] = 5577, - [6056] = 5588, - [6057] = 5560, - [6058] = 5559, - [6059] = 5558, - [6060] = 5595, - [6061] = 5589, - [6062] = 5552, - [6063] = 5589, - [6064] = 5588, - [6065] = 5587, - [6066] = 5591, - [6067] = 5551, - [6068] = 5552, - [6069] = 5569, - [6070] = 5595, - [6071] = 5550, - [6072] = 5581, - [6073] = 5580, - [6074] = 5551, - [6075] = 5578, - [6076] = 5577, - [6077] = 5552, - [6078] = 5567, - [6079] = 5573, - [6080] = 5563, - [6081] = 5569, - [6082] = 5573, - [6083] = 5572, - [6084] = 5571, - [6085] = 5570, - [6086] = 5595, - [6087] = 5568, - [6088] = 5567, - [6089] = 5555, - [6090] = 5556, - [6091] = 5555, - [6092] = 5566, - [6093] = 5565, - [6094] = 5591, - [6095] = 5562, - [6096] = 5562, - [6097] = 5561, - [6098] = 5560, - [6099] = 5559, - [6100] = 5557, - [6101] = 5558, - [6102] = 5557, - [6103] = 5556, - [6104] = 5555, - [6105] = 5554, - [6106] = 5553, - [6107] = 5606, - [6108] = 5605, - [6109] = 5597, - [6110] = 5565, - [6111] = 5571, - [6112] = 5603, - [6113] = 5604, - [6114] = 5604, - [6115] = 5605, - [6116] = 5606, - [6117] = 5603, - [6118] = 5597, - [6119] = 5570, - [6120] = 5568, - [6121] = 5554, - [6122] = 5553, - [6123] = 5563, - [6124] = 5589, - [6125] = 5588, - [6126] = 5606, - [6127] = 5605, - [6128] = 5567, - [6129] = 5566, - [6130] = 5553, - [6131] = 5554, - [6132] = 5565, - [6133] = 5555, - [6134] = 5556, - [6135] = 5604, - [6136] = 5591, - [6137] = 5557, - [6138] = 5603, - [6139] = 5597, - [6140] = 5558, - [6141] = 5559, - [6142] = 5562, - [6143] = 5563, - [6144] = 5595, - [6145] = 5560, - [6146] = 5561, - [6147] = 5553, - [6148] = 5562, - [6149] = 5554, - [6150] = 5563, - [6151] = 5589, - [6152] = 5588, - [6153] = 5580, - [6154] = 5560, - [6155] = 5597, - [6156] = 5587, - [6157] = 5555, - [6158] = 5556, - [6159] = 5557, - [6160] = 5571, - [6161] = 5550, - [6162] = 5581, - [6163] = 5580, - [6164] = 5562, - [6165] = 5570, - [6166] = 5578, - [6167] = 5577, - [6168] = 5552, - [6169] = 5570, - [6170] = 5561, - [6171] = 5569, - [6172] = 5573, - [6173] = 5572, - [6174] = 5559, - [6175] = 5568, - [6176] = 5571, - [6177] = 5570, - [6178] = 5559, - [6179] = 5568, - [6180] = 5567, - [6181] = 5566, - [6182] = 5565, - [6183] = 5563, - [6184] = 5562, - [6185] = 5558, - [6186] = 5557, - [6187] = 5603, - [6188] = 5561, - [6189] = 5560, - [6190] = 5559, - [6191] = 5558, - [6192] = 5557, - [6193] = 5556, - [6194] = 5555, - [6195] = 5554, - [6196] = 5559, - [6197] = 5553, - [6198] = 5560, - [6199] = 5561, - [6200] = 5597, - [6201] = 5603, - [6202] = 5565, - [6203] = 5604, - [6204] = 5605, - [6205] = 5606, - [6206] = 5556, - [6207] = 5558, - [6208] = 5581, - [6209] = 5563, - [6210] = 5565, - [6211] = 5566, - [6212] = 5566, - [6213] = 5567, - [6214] = 5560, - [6215] = 5577, - [6216] = 5561, - [6217] = 5556, - [6218] = 5556, - [6219] = 5554, - [6220] = 5555, - [6221] = 5567, - [6222] = 5568, - [6223] = 5550, - [6224] = 5570, - [6225] = 5571, - [6226] = 5591, - [6227] = 5572, - [6228] = 5554, - [6229] = 5573, - [6230] = 5569, - [6231] = 5571, - [6232] = 5572, - [6233] = 5595, - [6234] = 5552, - [6235] = 5573, - [6236] = 5577, - [6237] = 5569, - [6238] = 5553, - [6239] = 5553, - [6240] = 5578, - [6241] = 5552, - [6242] = 5589, - [6243] = 5588, - [6244] = 5587, - [6245] = 5551, - [6246] = 5580, - [6247] = 5581, - [6248] = 5550, - [6249] = 5604, - [6250] = 5597, - [6251] = 5553, - [6252] = 5550, - [6253] = 5605, - [6254] = 5580, - [6255] = 5551, - [6256] = 5578, - [6257] = 5577, - [6258] = 5552, - [6259] = 5577, - [6260] = 5577, - [6261] = 5569, - [6262] = 5573, - [6263] = 5572, - [6264] = 5571, - [6265] = 5570, - [6266] = 5587, - [6267] = 5568, - [6268] = 5567, - [6269] = 5566, - [6270] = 5603, - [6271] = 5606, - [6272] = 5565, - [6273] = 5588, - [6274] = 5563, - [6275] = 5562, - [6276] = 5561, - [6277] = 5560, - [6278] = 5559, - [6279] = 5558, - [6280] = 5557, - [6281] = 5605, - [6282] = 5554, - [6283] = 5606, - [6284] = 5556, - [6285] = 5555, - [6286] = 5554, - [6287] = 5553, - [6288] = 5589, - [6289] = 5578, - [6290] = 5597, - [6291] = 5603, - [6292] = 5597, - [6293] = 5551, - [6294] = 5604, - [6295] = 5605, - [6296] = 5606, - [6297] = 5580, - [6298] = 5581, - [6299] = 5595, - [6300] = 5550, - [6301] = 5581, - [6302] = 5604, - [6303] = 5603, - [6304] = 5591, - [6305] = 5558, - [6306] = 5580, - [6307] = 5578, - [6308] = 5604, - [6309] = 5551, - [6310] = 5578, - [6311] = 5587, - [6312] = 5588, - [6313] = 5605, - [6314] = 5606, - [6315] = 5555, - [6316] = 5589, - [6317] = 5591, - [6318] = 5577, - [6319] = 5605, - [6320] = 5606, - [6321] = 5552, - [6322] = 5595, - [6323] = 5595, - [6324] = 5605, - [6325] = 5569, - [6326] = 5573, - [6327] = 5572, - [6328] = 5571, - [6329] = 5604, - [6330] = 5587, - [6331] = 5589, - [6332] = 5588, - [6333] = 5587, - [6334] = 5551, - [6335] = 5603, - [6336] = 5567, - [6337] = 5604, - [6338] = 5570, - [6339] = 5603, - [6340] = 5550, - [6341] = 5581, - [6342] = 5580, - [6343] = 5551, - [6344] = 5578, - [6345] = 5565, - [6346] = 5557, - [6347] = 5595, - [6348] = 5577, - [6349] = 5552, - [6350] = 5597, - [6351] = 5569, - [6352] = 5573, - [6353] = 5572, - [6354] = 5571, - [6355] = 5570, - [6356] = 5581, - [6357] = 5597, - [6358] = 5568, - [6359] = 5567, - [6360] = 5566, - [6361] = 5565, - [6362] = 5553, - [6363] = 5563, - [6364] = 5562, - [6365] = 5561, - [6366] = 5553, - [6367] = 5550, - [6368] = 5560, - [6369] = 5559, - [6370] = 5558, - [6371] = 5557, - [6372] = 5556, - [6373] = 5555, - [6374] = 5554, - [6375] = 5553, - [6376] = 5554, - [6377] = 5558, - [6378] = 5591, - [6379] = 5559, - [6380] = 5555, - [6381] = 5597, - [6382] = 5603, - [6383] = 5552, - [6384] = 5604, - [6385] = 5605, - [6386] = 5606, - [6387] = 5556, - [6388] = 5569, - [6389] = 5557, - [6390] = 5558, - [6391] = 5559, - [6392] = 5568, - [6393] = 5560, - [6394] = 5561, - [6395] = 5562, - [6396] = 5573, - [6397] = 5591, - [6398] = 5560, - [6399] = 5587, - [6400] = 5566, - [6401] = 5565, - [6402] = 5563, - [6403] = 5562, - [6404] = 5563, - [6405] = 5591, - [6406] = 5565, - [6407] = 5566, - [6408] = 5551, - [6409] = 6409, - [6410] = 5561, - [6411] = 5568, - [6412] = 5595, - [6413] = 5570, - [6414] = 5606, - [6415] = 5571, - [6416] = 5605, - [6417] = 5572, - [6418] = 5604, - [6419] = 5589, - [6420] = 5554, - [6421] = 5588, - [6422] = 5587, - [6423] = 5573, - [6424] = 5569, - [6425] = 5603, - [6426] = 5552, - [6427] = 5550, - [6428] = 5581, - [6429] = 5580, - [6430] = 5561, - [6431] = 5555, - [6432] = 5551, - [6433] = 5578, - [6434] = 5577, - [6435] = 5552, - [6436] = 5597, - [6437] = 5569, - [6438] = 5573, - [6439] = 5572, - [6440] = 5571, - [6441] = 5570, - [6442] = 5595, - [6443] = 5562, - [6444] = 5577, - [6445] = 5568, - [6446] = 5567, - [6447] = 5566, - [6448] = 5565, - [6449] = 5578, - [6450] = 5563, - [6451] = 5562, - [6452] = 5588, - [6453] = 5561, - [6454] = 5560, - [6455] = 5559, - [6456] = 5558, - [6457] = 5557, - [6458] = 5556, - [6459] = 5555, - [6460] = 5554, - [6461] = 5553, - [6462] = 5563, - [6463] = 5556, - [6464] = 5604, - [6465] = 5580, - [6466] = 5597, - [6467] = 5603, - [6468] = 5560, - [6469] = 5604, - [6470] = 5605, - [6471] = 5606, - [6472] = 5581, - [6473] = 5550, - [6474] = 5603, - [6475] = 5587, - [6476] = 5588, - [6477] = 5559, - [6478] = 5589, - [6479] = 5553, - [6480] = 5606, - [6481] = 5551, - [6482] = 5557, - [6483] = 5554, - [6484] = 5589, - [6485] = 5591, - [6486] = 5556, - [6487] = 5557, - [6488] = 5558, - [6489] = 5591, - [6490] = 5559, - [6491] = 5595, - [6492] = 5560, - [6493] = 5561, - [6494] = 5589, - [6495] = 5558, - [6496] = 5562, - [6497] = 5595, - [6498] = 5591, - [6499] = 5563, - [6500] = 5558, - [6501] = 5565, - [6502] = 5566, - [6503] = 5567, - [6504] = 5589, - [6505] = 5588, - [6506] = 5588, - [6507] = 5587, - [6508] = 5568, - [6509] = 5557, - [6510] = 5572, - [6511] = 5573, - [6512] = 5550, - [6513] = 5581, - [6514] = 5580, - [6515] = 5551, - [6516] = 5554, - [6517] = 5578, - [6518] = 5577, - [6519] = 5552, - [6520] = 5570, - [6521] = 5569, - [6522] = 5573, - [6523] = 5572, - [6524] = 5571, - [6525] = 5570, - [6526] = 5587, - [6527] = 5589, - [6528] = 5571, - [6529] = 5568, - [6530] = 5567, - [6531] = 5566, - [6532] = 5565, - [6533] = 5588, - [6534] = 5563, - [6535] = 5562, - [6536] = 5561, - [6537] = 5560, - [6538] = 5559, - [6539] = 5558, - [6540] = 5557, - [6541] = 5556, - [6542] = 5555, - [6543] = 5554, - [6544] = 5553, - [6545] = 5606, - [6546] = 5605, - [6547] = 5597, - [6548] = 5587, - [6549] = 5603, - [6550] = 5572, - [6551] = 5604, - [6552] = 5605, - [6553] = 5606, - [6554] = 5563, - [6555] = 5573, - [6556] = 5603, - [6557] = 5597, - [6558] = 5566, - [6559] = 5560, - [6560] = 5569, - [6561] = 5553, - [6562] = 5554, - [6563] = 5555, - [6564] = 5561, - [6565] = 5562, - [6566] = 5552, - [6567] = 5577, - [6568] = 5578, - [6569] = 5567, - [6570] = 5563, - [6571] = 5551, - [6572] = 5550, - [6573] = 5591, - [6574] = 5556, - [6575] = 5557, - [6576] = 5558, - [6577] = 5580, - [6578] = 5559, - [6579] = 5595, - [6580] = 5581, - [6581] = 5560, - [6582] = 5581, - [6583] = 5561, - [6584] = 5550, - [6585] = 5562, - [6586] = 5556, - [6587] = 5589, - [6588] = 5588, - [6589] = 5587, - [6590] = 5573, - [6591] = 5580, - [6592] = 5562, - [6593] = 5565, - [6594] = 5566, - [6595] = 5567, - [6596] = 5550, - [6597] = 5581, - [6598] = 5580, - [6599] = 5551, - [6600] = 5578, - [6601] = 5577, - [6602] = 5552, - [6603] = 5555, - [6604] = 5569, - [6605] = 5573, - [6606] = 5572, - [6607] = 5571, - [6608] = 5570, - [6609] = 5568, - [6610] = 5568, - [6611] = 5567, - [6612] = 5566, - [6613] = 5566, - [6614] = 5565, - [6615] = 5570, - [6616] = 5563, - [6617] = 5562, - [6618] = 5561, - [6619] = 5560, - [6620] = 5559, - [6621] = 5558, - [6622] = 5580, - [6623] = 5578, - [6624] = 5557, - [6625] = 5556, - [6626] = 5555, - [6627] = 5554, - [6628] = 5553, - [6629] = 5571, - [6630] = 5555, - [6631] = 5597, - [6632] = 5603, - [6633] = 5553, - [6634] = 5568, - [6635] = 5604, - [6636] = 5605, - [6637] = 5606, - [6638] = 5573, - [6639] = 5569, - [6640] = 5587, - [6641] = 5552, - [6642] = 5588, - [6643] = 5577, - [6644] = 5577, - [6645] = 5578, - [6646] = 5551, - [6647] = 5552, - [6648] = 5570, - [6649] = 5589, - [6650] = 5554, - [6651] = 5597, - [6652] = 5580, - [6653] = 5591, - [6654] = 5572, - [6655] = 5569, - [6656] = 5581, - [6657] = 5550, - [6658] = 5595, - [6659] = 5603, - [6660] = 5572, - [6661] = 5595, - [6662] = 5588, - [6663] = 5604, - [6664] = 5589, - [6665] = 5605, - [6666] = 5591, - [6667] = 5606, - [6668] = 5589, - [6669] = 5588, - [6670] = 5587, - [6671] = 5573, - [6672] = 5572, - [6673] = 5595, - [6674] = 5571, - [6675] = 5550, - [6676] = 5570, - [6677] = 5581, - [6678] = 5580, - [6679] = 5551, - [6680] = 5578, - [6681] = 5577, - [6682] = 5552, - [6683] = 5565, - [6684] = 5569, - [6685] = 5573, - [6686] = 5550, - [6687] = 5568, - [6688] = 5572, - [6689] = 5571, - [6690] = 5570, - [6691] = 5591, - [6692] = 5568, - [6693] = 5567, - [6694] = 5566, - [6695] = 5565, - [6696] = 5606, - [6697] = 5563, - [6698] = 5567, - [6699] = 5561, - [6700] = 5560, - [6701] = 5559, - [6702] = 5558, - [6703] = 5557, - [6704] = 5556, - [6705] = 5555, - [6706] = 5554, - [6707] = 5553, - [6708] = 5566, - [6709] = 5605, - [6710] = 5604, - [6711] = 5597, - [6712] = 5603, - [6713] = 5603, - [6714] = 5604, - [6715] = 5605, - [6716] = 5606, - [6717] = 5597, - [6718] = 5581, - [6719] = 5565, - [6720] = 5565, - [6721] = 5595, - [6722] = 5591, - [6723] = 5553, - [6724] = 5606, - [6725] = 5605, - [6726] = 5604, - [6727] = 5563, - [6728] = 5562, - [6729] = 5571, - [6730] = 5554, - [6731] = 5555, - [6732] = 5556, - [6733] = 5557, - [6734] = 5558, - [6735] = 5591, - [6736] = 5603, - [6737] = 5597, - [6738] = 5553, - [6739] = 5559, - [6740] = 5561, - [6741] = 5554, - [6742] = 5595, - [6743] = 5555, - [6744] = 5560, - [6745] = 5561, - [6746] = 5562, - [6747] = 5556, - [6748] = 5563, - [6749] = 5589, - [6750] = 5588, - [6751] = 5560, - [6752] = 5587, - [6753] = 5557, - [6754] = 5558, - [6755] = 5559, - [6756] = 5560, - [6757] = 5550, - [6758] = 5581, - [6759] = 5580, - [6760] = 5551, - [6761] = 5578, - [6762] = 6762, - [6763] = 5577, - [6764] = 5552, - [6765] = 5561, - [6766] = 5569, - [6767] = 5573, - [6768] = 5572, - [6769] = 5571, - [6770] = 5570, - [6771] = 5587, - [6772] = 5559, - [6773] = 5568, - [6774] = 5567, - [6775] = 5566, - [6776] = 5565, - [6777] = 5562, - [6778] = 5563, - [6779] = 5562, - [6780] = 5561, - [6781] = 5560, - [6782] = 5551, - [6783] = 5558, - [6784] = 5559, - [6785] = 5558, - [6786] = 5557, - [6787] = 5556, - [6788] = 5555, - [6789] = 5554, - [6790] = 5553, - [6791] = 5563, - [6792] = 5565, - [6793] = 5557, - [6794] = 5556, - [6795] = 5578, - [6796] = 5597, - [6797] = 5603, - [6798] = 5604, - [6799] = 5605, - [6800] = 5606, - [6801] = 5566, - [6802] = 5567, - [6803] = 5568, - [6804] = 5555, - [6805] = 5570, - [6806] = 5568, - [6807] = 5569, - [6808] = 5554, - [6809] = 5553, - [6810] = 5552, - [6811] = 5591, - [6812] = 5577, - [6813] = 5578, - [6814] = 5577, - [6815] = 5567, - [6816] = 5551, - [6817] = 5580, - [6818] = 5595, - [6819] = 5581, - [6820] = 5550, - [6821] = 5587, - [6822] = 5589, - [6823] = 5588, - [6824] = 5587, - [6825] = 5552, - [6826] = 5569, - [6827] = 5573, - [6828] = 5588, - [6829] = 5589, - [6830] = 5550, - [6831] = 5581, - [6832] = 5580, - [6833] = 5551, - [6834] = 5578, - [6835] = 5577, - [6836] = 5597, - [6837] = 5552, - [6838] = 5569, - [6839] = 5573, - [6840] = 5572, - [6841] = 5571, - [6842] = 5570, - [6843] = 5568, - [6844] = 5567, - [6845] = 5566, - [6846] = 5572, - [6847] = 5603, - [6848] = 6762, - [6849] = 6762, - [6850] = 6762, - [6851] = 6762, - [6852] = 6762, - [6853] = 6762, - [6854] = 6762, - [6855] = 6762, - [6856] = 6762, - [6857] = 6762, - [6858] = 6762, - [6859] = 6762, - [6860] = 6762, - [6861] = 6762, - [6862] = 6762, - [6863] = 6762, - [6864] = 6762, - [6865] = 6762, - [6866] = 6762, - [6867] = 6762, - [6868] = 6762, - [6869] = 6762, - [6870] = 6762, - [6871] = 6762, - [6872] = 6762, - [6873] = 6762, - [6874] = 6762, - [6875] = 6762, - [6876] = 6762, - [6877] = 6762, - [6878] = 6762, - [6879] = 6762, - [6880] = 6762, - [6881] = 6762, + [3502] = 800, + [3503] = 749, + [3504] = 769, + [3505] = 824, + [3506] = 751, + [3507] = 799, + [3508] = 823, + [3509] = 798, + [3510] = 797, + [3511] = 796, + [3512] = 794, + [3513] = 780, + [3514] = 793, + [3515] = 752, + [3516] = 756, + [3517] = 793, + [3518] = 792, + [3519] = 794, + [3520] = 796, + [3521] = 797, + [3522] = 757, + [3523] = 758, + [3524] = 790, + [3525] = 789, + [3526] = 798, + [3527] = 788, + [3528] = 799, + [3529] = 762, + [3530] = 764, + [3531] = 771, + [3532] = 822, + [3533] = 800, + [3534] = 820, + [3535] = 754, + [3536] = 819, + [3537] = 891, + [3538] = 817, + [3539] = 802, + [3540] = 814, + [3541] = 813, + [3542] = 827, + [3543] = 812, + [3544] = 811, + [3545] = 759, + [3546] = 760, + [3547] = 787, + [3548] = 803, + [3549] = 786, + [3550] = 810, + [3551] = 809, + [3552] = 804, + [3553] = 805, + [3554] = 784, + [3555] = 783, + [3556] = 782, + [3557] = 781, + [3558] = 780, + [3559] = 779, + [3560] = 778, + [3561] = 765, + [3562] = 766, + [3563] = 781, + [3564] = 807, + [3565] = 767, + [3566] = 827, + [3567] = 806, + [3568] = 773, + [3569] = 772, + [3570] = 763, + [3571] = 768, + [3572] = 3572, + [3573] = 3572, + [3574] = 3572, + [3575] = 3572, + [3576] = 3572, + [3577] = 3572, + [3578] = 3572, + [3579] = 3572, + [3580] = 3572, + [3581] = 3572, + [3582] = 3572, + [3583] = 3572, + [3584] = 3572, + [3585] = 3572, + [3586] = 3572, + [3587] = 3572, + [3588] = 3572, + [3589] = 3572, + [3590] = 3572, + [3591] = 3572, + [3592] = 3572, + [3593] = 3572, + [3594] = 3572, + [3595] = 3572, + [3596] = 3572, + [3597] = 3572, + [3598] = 3572, + [3599] = 3572, + [3600] = 3572, + [3601] = 3572, + [3602] = 3572, + [3603] = 3572, + [3604] = 3572, + [3605] = 3572, + [3606] = 3572, + [3607] = 3607, + [3608] = 3608, + [3609] = 3609, + [3610] = 3608, + [3611] = 3611, + [3612] = 3612, + [3613] = 3613, + [3614] = 3614, + [3615] = 3615, + [3616] = 3609, + [3617] = 3609, + [3618] = 3618, + [3619] = 3618, + [3620] = 3618, + [3621] = 3613, + [3622] = 3611, + [3623] = 3608, + [3624] = 3618, + [3625] = 3618, + [3626] = 3612, + [3627] = 3609, + [3628] = 3615, + [3629] = 3614, + [3630] = 3609, + [3631] = 3615, + [3632] = 3614, + [3633] = 3633, + [3634] = 3615, + [3635] = 3633, + [3636] = 3613, + [3637] = 3611, + [3638] = 3608, + [3639] = 3639, + [3640] = 3612, + [3641] = 3612, + [3642] = 3639, + [3643] = 3608, + [3644] = 3611, + [3645] = 3639, + [3646] = 3633, + [3647] = 3614, + [3648] = 3615, + [3649] = 3609, + [3650] = 3613, + [3651] = 3633, + [3652] = 3614, + [3653] = 3615, + [3654] = 3607, + [3655] = 3609, + [3656] = 3639, + [3657] = 3618, + [3658] = 3609, + [3659] = 3615, + [3660] = 3614, + [3661] = 3614, + [3662] = 3613, + [3663] = 3611, + [3664] = 3608, + [3665] = 3612, + [3666] = 3639, + [3667] = 3633, + [3668] = 3633, + [3669] = 3612, + [3670] = 3608, + [3671] = 3611, + [3672] = 3613, + [3673] = 3614, + [3674] = 3633, + [3675] = 3614, + [3676] = 3615, + [3677] = 3615, + [3678] = 3611, + [3679] = 3609, + [3680] = 3609, + [3681] = 3639, + [3682] = 3618, + [3683] = 3618, + [3684] = 3612, + [3685] = 3608, + [3686] = 3611, + [3687] = 3618, + [3688] = 3613, + [3689] = 3639, + [3690] = 3618, + [3691] = 3618, + [3692] = 3609, + [3693] = 3615, + [3694] = 3613, + [3695] = 3611, + [3696] = 3609, + [3697] = 3615, + [3698] = 3614, + [3699] = 3633, + [3700] = 3608, + [3701] = 3618, + [3702] = 3612, + [3703] = 3633, + [3704] = 3615, + [3705] = 3609, + [3706] = 3615, + [3707] = 3618, + [3708] = 3614, + [3709] = 3613, + [3710] = 3611, + [3711] = 3608, + [3712] = 3612, + [3713] = 3639, + [3714] = 3633, + [3715] = 3639, + [3716] = 3612, + [3717] = 3633, + [3718] = 3608, + [3719] = 3614, + [3720] = 3615, + [3721] = 3609, + [3722] = 3613, + [3723] = 3639, + [3724] = 3611, + [3725] = 3618, + [3726] = 3639, + [3727] = 3613, + [3728] = 3618, + [3729] = 3633, + [3730] = 3633, + [3731] = 3613, + [3732] = 3609, + [3733] = 3613, + [3734] = 3613, + [3735] = 3611, + [3736] = 3608, + [3737] = 3612, + [3738] = 3608, + [3739] = 3611, + [3740] = 3613, + [3741] = 3612, + [3742] = 3639, + [3743] = 3611, + [3744] = 3609, + [3745] = 3615, + [3746] = 3611, + [3747] = 3614, + [3748] = 3633, + [3749] = 3639, + [3750] = 3633, + [3751] = 3608, + [3752] = 3615, + [3753] = 3611, + [3754] = 3613, + [3755] = 3633, + [3756] = 3633, + [3757] = 3614, + [3758] = 3614, + [3759] = 3615, + [3760] = 3612, + [3761] = 3609, + [3762] = 3608, + [3763] = 3615, + [3764] = 3609, + [3765] = 3612, + [3766] = 3615, + [3767] = 3609, + [3768] = 3615, + [3769] = 3614, + [3770] = 3633, + [3771] = 3607, + [3772] = 3639, + [3773] = 3612, + [3774] = 3608, + [3775] = 3611, + [3776] = 3613, + [3777] = 3615, + [3778] = 3614, + [3779] = 3609, + [3780] = 3633, + [3781] = 3613, + [3782] = 3611, + [3783] = 3614, + [3784] = 3608, + [3785] = 3613, + [3786] = 3611, + [3787] = 3608, + [3788] = 3612, + [3789] = 3612, + [3790] = 3639, + [3791] = 3614, + [3792] = 3609, + [3793] = 3633, + [3794] = 3639, + [3795] = 3614, + [3796] = 3615, + [3797] = 3609, + [3798] = 3633, + [3799] = 3615, + [3800] = 3614, + [3801] = 3618, + [3802] = 3633, + [3803] = 3639, + [3804] = 3612, + [3805] = 3618, + [3806] = 3608, + [3807] = 3611, + [3808] = 3612, + [3809] = 3608, + [3810] = 3611, + [3811] = 3613, + [3812] = 3613, + [3813] = 3639, + [3814] = 3639, + [3815] = 3613, + [3816] = 3618, + [3817] = 3618, + [3818] = 3618, + [3819] = 3611, + [3820] = 3612, + [3821] = 3608, + [3822] = 3618, + [3823] = 3618, + [3824] = 3614, + [3825] = 3609, + [3826] = 3615, + [3827] = 3612, + [3828] = 3614, + [3829] = 3639, + [3830] = 3633, + [3831] = 3609, + [3832] = 3639, + [3833] = 3612, + [3834] = 3608, + [3835] = 3633, + [3836] = 3633, + [3837] = 3612, + [3838] = 3615, + [3839] = 3609, + [3840] = 3614, + [3841] = 3633, + [3842] = 3614, + [3843] = 3615, + [3844] = 3609, + [3845] = 3639, + [3846] = 3614, + [3847] = 3618, + [3848] = 3615, + [3849] = 3614, + [3850] = 3609, + [3851] = 3611, + [3852] = 3612, + [3853] = 3613, + [3854] = 3633, + [3855] = 3618, + [3856] = 3618, + [3857] = 3639, + [3858] = 3639, + [3859] = 3612, + [3860] = 3618, + [3861] = 3613, + [3862] = 3611, + [3863] = 3608, + [3864] = 3612, + [3865] = 3639, + [3866] = 3639, + [3867] = 3618, + [3868] = 3613, + [3869] = 3611, + [3870] = 3633, + [3871] = 3614, + [3872] = 3615, + [3873] = 3609, + [3874] = 3608, + [3875] = 3608, + [3876] = 3612, + [3877] = 3608, + [3878] = 3611, + [3879] = 3612, + [3880] = 3608, + [3881] = 3611, + [3882] = 3613, + [3883] = 3611, + [3884] = 3609, + [3885] = 3615, + [3886] = 3613, + [3887] = 3614, + [3888] = 3618, + [3889] = 3607, + [3890] = 3633, + [3891] = 3639, + [3892] = 3612, + [3893] = 3639, + [3894] = 3633, + [3895] = 3608, + [3896] = 3611, + [3897] = 3613, + [3898] = 3614, + [3899] = 3615, + [3900] = 3609, + [3901] = 3613, + [3902] = 3618, + [3903] = 3611, + [3904] = 3608, + [3905] = 3639, + [3906] = 3639, + [3907] = 3613, + [3908] = 3612, + [3909] = 3609, + [3910] = 3615, + [3911] = 3614, + [3912] = 3633, + [3913] = 3639, + [3914] = 3608, + [3915] = 3609, + [3916] = 3615, + [3917] = 3633, + [3918] = 3614, + [3919] = 3633, + [3920] = 3614, + [3921] = 3615, + [3922] = 3609, + [3923] = 3618, + [3924] = 3639, + [3925] = 3612, + [3926] = 3618, + [3927] = 3607, + [3928] = 3608, + [3929] = 3633, + [3930] = 3614, + [3931] = 3615, + [3932] = 3618, + [3933] = 3609, + [3934] = 3611, + [3935] = 3639, + [3936] = 3639, + [3937] = 3618, + [3938] = 3613, + [3939] = 3613, + [3940] = 3611, + [3941] = 3608, + [3942] = 3612, + [3943] = 3639, + [3944] = 3612, + [3945] = 3608, + [3946] = 3611, + [3947] = 3633, + [3948] = 3614, + [3949] = 3615, + [3950] = 3612, + [3951] = 3608, + [3952] = 3611, + [3953] = 3613, + [3954] = 3609, + [3955] = 3613, + [3956] = 3613, + [3957] = 3618, + [3958] = 3611, + [3959] = 3618, + [3960] = 3608, + [3961] = 3612, + [3962] = 3962, + [3963] = 3963, + [3964] = 3962, + [3965] = 3963, + [3966] = 3963, + [3967] = 3967, + [3968] = 3963, + [3969] = 3962, + [3970] = 3967, + [3971] = 3962, + [3972] = 3963, + [3973] = 3967, + [3974] = 3963, + [3975] = 3967, + [3976] = 3962, + [3977] = 3967, + [3978] = 3962, + [3979] = 3967, + [3980] = 3963, + [3981] = 3967, + [3982] = 3962, + [3983] = 3963, + [3984] = 3962, + [3985] = 3962, + [3986] = 3963, + [3987] = 3967, + [3988] = 3967, + [3989] = 3962, + [3990] = 3967, + [3991] = 3963, + [3992] = 3962, + [3993] = 3963, + [3994] = 3962, + [3995] = 3967, + [3996] = 3963, + [3997] = 3967, + [3998] = 3963, + [3999] = 3967, + [4000] = 3963, + [4001] = 3963, + [4002] = 3967, + [4003] = 3963, + [4004] = 3967, + [4005] = 3962, + [4006] = 3962, + [4007] = 3962, + [4008] = 3963, + [4009] = 3967, + [4010] = 3963, + [4011] = 3962, + [4012] = 3967, + [4013] = 3962, + [4014] = 3967, + [4015] = 3962, + [4016] = 3967, + [4017] = 3963, + [4018] = 3967, + [4019] = 3962, + [4020] = 3967, + [4021] = 3963, + [4022] = 3963, + [4023] = 3962, + [4024] = 3962, + [4025] = 3967, + [4026] = 3963, + [4027] = 3967, + [4028] = 3963, + [4029] = 3963, + [4030] = 3962, + [4031] = 3962, + [4032] = 3967, + [4033] = 3967, + [4034] = 3962, + [4035] = 3967, + [4036] = 3963, + [4037] = 3963, + [4038] = 3963, + [4039] = 3962, + [4040] = 3962, + [4041] = 3967, + [4042] = 3962, + [4043] = 3967, + [4044] = 3967, + [4045] = 3963, + [4046] = 3967, + [4047] = 3963, + [4048] = 3962, + [4049] = 3962, + [4050] = 3963, + [4051] = 3967, + [4052] = 3963, + [4053] = 3962, + [4054] = 3967, + [4055] = 3962, + [4056] = 3967, + [4057] = 3963, + [4058] = 3962, + [4059] = 3967, + [4060] = 3962, + [4061] = 3963, + [4062] = 3962, + [4063] = 3963, + [4064] = 3963, + [4065] = 3967, + [4066] = 3962, + [4067] = 684, + [4068] = 674, + [4069] = 4069, + [4070] = 4070, + [4071] = 4071, + [4072] = 4070, + [4073] = 4071, + [4074] = 4074, + [4075] = 4070, + [4076] = 4070, + [4077] = 4071, + [4078] = 4069, + [4079] = 684, + [4080] = 4071, + [4081] = 4069, + [4082] = 4070, + [4083] = 4070, + [4084] = 4074, + [4085] = 674, + [4086] = 4071, + [4087] = 4069, + [4088] = 4069, + [4089] = 4070, + [4090] = 4069, + [4091] = 4071, + [4092] = 4069, + [4093] = 4069, + [4094] = 4069, + [4095] = 4071, + [4096] = 4069, + [4097] = 4070, + [4098] = 4071, + [4099] = 4069, + [4100] = 4070, + [4101] = 4071, + [4102] = 4074, + [4103] = 4071, + [4104] = 4070, + [4105] = 4069, + [4106] = 4069, + [4107] = 4070, + [4108] = 4071, + [4109] = 4071, + [4110] = 4070, + [4111] = 4071, + [4112] = 4070, + [4113] = 4069, + [4114] = 684, + [4115] = 4069, + [4116] = 4070, + [4117] = 4071, + [4118] = 684, + [4119] = 4069, + [4120] = 4069, + [4121] = 4074, + [4122] = 4071, + [4123] = 4070, + [4124] = 4071, + [4125] = 4070, + [4126] = 4071, + [4127] = 4069, + [4128] = 4070, + [4129] = 684, + [4130] = 4070, + [4131] = 4071, + [4132] = 4069, + [4133] = 4071, + [4134] = 4069, + [4135] = 4069, + [4136] = 4069, + [4137] = 4070, + [4138] = 4071, + [4139] = 4071, + [4140] = 684, + [4141] = 4070, + [4142] = 4069, + [4143] = 4071, + [4144] = 4069, + [4145] = 4070, + [4146] = 4070, + [4147] = 4069, + [4148] = 4071, + [4149] = 4070, + [4150] = 4069, + [4151] = 4071, + [4152] = 4070, + [4153] = 4069, + [4154] = 4071, + [4155] = 4070, + [4156] = 4069, + [4157] = 4070, + [4158] = 4071, + [4159] = 4070, + [4160] = 4069, + [4161] = 4071, + [4162] = 4069, + [4163] = 4071, + [4164] = 4070, + [4165] = 4070, + [4166] = 4069, + [4167] = 4071, + [4168] = 4071, + [4169] = 4070, + [4170] = 4070, + [4171] = 4069, + [4172] = 684, + [4173] = 4070, + [4174] = 4071, + [4175] = 4069, + [4176] = 4069, + [4177] = 4071, + [4178] = 4074, + [4179] = 4070, + [4180] = 4070, + [4181] = 4069, + [4182] = 4071, + [4183] = 4071, + [4184] = 4070, + [4185] = 4071, + [4186] = 684, + [4187] = 684, + [4188] = 4074, + [4189] = 4074, + [4190] = 4190, + [4191] = 4074, + [4192] = 4074, + [4193] = 4190, + [4194] = 684, + [4195] = 684, + [4196] = 4196, + [4197] = 4197, + [4198] = 4198, + [4199] = 4197, + [4200] = 4197, + [4201] = 4197, + [4202] = 4202, + [4203] = 4202, + [4204] = 4198, + [4205] = 4196, + [4206] = 4198, + [4207] = 4202, + [4208] = 4202, + [4209] = 4198, + [4210] = 4197, + [4211] = 4196, + [4212] = 4196, + [4213] = 4213, + [4214] = 4198, + [4215] = 4196, + [4216] = 4197, + [4217] = 4217, + [4218] = 4202, + [4219] = 4219, + [4220] = 4198, + [4221] = 4202, + [4222] = 4197, + [4223] = 4202, + [4224] = 4197, + [4225] = 4202, + [4226] = 4202, + [4227] = 4202, + [4228] = 4196, + [4229] = 4198, + [4230] = 4196, + [4231] = 4198, + [4232] = 4202, + [4233] = 4202, + [4234] = 4197, + [4235] = 4196, + [4236] = 4198, + [4237] = 4237, + [4238] = 4196, + [4239] = 4198, + [4240] = 4240, + [4241] = 4198, + [4242] = 4197, + [4243] = 4196, + [4244] = 4219, + [4245] = 4196, + [4246] = 4202, + [4247] = 4196, + [4248] = 4197, + [4249] = 4198, + [4250] = 4197, + [4251] = 4198, + [4252] = 4202, + [4253] = 4197, + [4254] = 4219, + [4255] = 4196, + [4256] = 4202, + [4257] = 4196, + [4258] = 4198, + [4259] = 4219, + [4260] = 4196, + [4261] = 4198, + [4262] = 4197, + [4263] = 4196, + [4264] = 4198, + [4265] = 4196, + [4266] = 4197, + [4267] = 4202, + [4268] = 4198, + [4269] = 4202, + [4270] = 4197, + [4271] = 4202, + [4272] = 4196, + [4273] = 4197, + [4274] = 4198, + [4275] = 4196, + [4276] = 4240, + [4277] = 4202, + [4278] = 4198, + [4279] = 4198, + [4280] = 4197, + [4281] = 4198, + [4282] = 4196, + [4283] = 4197, + [4284] = 4196, + [4285] = 4198, + [4286] = 4202, + [4287] = 4197, + [4288] = 874, + [4289] = 4197, + [4290] = 4197, + [4291] = 4198, + [4292] = 4237, + [4293] = 4197, + [4294] = 4198, + [4295] = 4202, + [4296] = 4196, + [4297] = 4202, + [4298] = 4198, + [4299] = 4197, + [4300] = 4198, + [4301] = 4202, + [4302] = 4196, + [4303] = 4197, + [4304] = 874, + [4305] = 4197, + [4306] = 4202, + [4307] = 4197, + [4308] = 4198, + [4309] = 4197, + [4310] = 4198, + [4311] = 4197, + [4312] = 4198, + [4313] = 4196, + [4314] = 4198, + [4315] = 4219, + [4316] = 4196, + [4317] = 4196, + [4318] = 4198, + [4319] = 827, + [4320] = 4202, + [4321] = 874, + [4322] = 827, + [4323] = 4197, + [4324] = 4197, + [4325] = 4198, + [4326] = 4213, + [4327] = 4196, + [4328] = 4202, + [4329] = 874, + [4330] = 827, + [4331] = 4198, + [4332] = 4197, + [4333] = 4196, + [4334] = 4202, + [4335] = 4198, + [4336] = 4198, + [4337] = 4196, + [4338] = 4197, + [4339] = 874, + [4340] = 4202, + [4341] = 4197, + [4342] = 4202, + [4343] = 4197, + [4344] = 4198, + [4345] = 4197, + [4346] = 4197, + [4347] = 4196, + [4348] = 827, + [4349] = 4198, + [4350] = 4202, + [4351] = 4202, + [4352] = 4196, + [4353] = 4198, + [4354] = 4202, + [4355] = 4202, + [4356] = 4197, + [4357] = 4197, + [4358] = 4196, + [4359] = 4198, + [4360] = 4198, + [4361] = 827, + [4362] = 4202, + [4363] = 4197, + [4364] = 4196, + [4365] = 4197, + [4366] = 4198, + [4367] = 4197, + [4368] = 4202, + [4369] = 4196, + [4370] = 4198, + [4371] = 4196, + [4372] = 4372, + [4373] = 4373, + [4374] = 4373, + [4375] = 4375, + [4376] = 4376, + [4377] = 4377, + [4378] = 4378, + [4379] = 4379, + [4380] = 4380, + [4381] = 4381, + [4382] = 4382, + [4383] = 4383, + [4384] = 4384, + [4385] = 4385, + [4386] = 4386, + [4387] = 4387, + [4388] = 4372, + [4389] = 4383, + [4390] = 4382, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, + [4395] = 4395, + [4396] = 4396, + [4397] = 4391, + [4398] = 4398, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, + [4402] = 4402, + [4403] = 4373, + [4404] = 4380, + [4405] = 4375, + [4406] = 4376, + [4407] = 4393, + [4408] = 4394, + [4409] = 4373, + [4410] = 4375, + [4411] = 4376, + [4412] = 4377, + [4413] = 4378, + [4414] = 4379, + [4415] = 4377, + [4416] = 4381, + [4417] = 4382, + [4418] = 4383, + [4419] = 4384, + [4420] = 4385, + [4421] = 4386, + [4422] = 4387, + [4423] = 4372, + [4424] = 4378, + [4425] = 4379, + [4426] = 4392, + [4427] = 4395, + [4428] = 4396, + [4429] = 4391, + [4430] = 4398, + [4431] = 4399, + [4432] = 4400, + [4433] = 4401, + [4434] = 4402, + [4435] = 4379, + [4436] = 4380, + [4437] = 4393, + [4438] = 4394, + [4439] = 4382, + [4440] = 4373, + [4441] = 4375, + [4442] = 4376, + [4443] = 4377, + [4444] = 4378, + [4445] = 4379, + [4446] = 4381, + [4447] = 4381, + [4448] = 4382, + [4449] = 4383, + [4450] = 4384, + [4451] = 4385, + [4452] = 4386, + [4453] = 4387, + [4454] = 4393, + [4455] = 4372, + [4456] = 4378, + [4457] = 4377, + [4458] = 4380, + [4459] = 4376, + [4460] = 4392, + [4461] = 4395, + [4462] = 4396, + [4463] = 4391, + [4464] = 4398, + [4465] = 4399, + [4466] = 4400, + [4467] = 4401, + [4468] = 827, + [4469] = 4382, + [4470] = 4402, + [4471] = 4383, + [4472] = 4472, + [4473] = 4402, + [4474] = 4384, + [4475] = 4401, + [4476] = 4400, + [4477] = 4380, + [4478] = 4399, + [4479] = 4393, + [4480] = 4394, + [4481] = 4373, + [4482] = 4375, + [4483] = 4398, + [4484] = 4376, + [4485] = 4377, + [4486] = 4391, + [4487] = 4385, + [4488] = 4378, + [4489] = 4379, + [4490] = 4386, + [4491] = 4381, + [4492] = 4382, + [4493] = 4383, + [4494] = 4384, + [4495] = 4385, + [4496] = 4386, + [4497] = 4387, + [4498] = 4372, + [4499] = 4387, + [4500] = 4396, + [4501] = 4375, + [4502] = 4373, + [4503] = 4392, + [4504] = 4395, + [4505] = 4395, + [4506] = 4396, + [4507] = 4391, + [4508] = 4398, + [4509] = 4399, + [4510] = 4392, + [4511] = 4400, + [4512] = 4401, + [4513] = 4402, + [4514] = 4372, + [4515] = 4384, + [4516] = 4380, + [4517] = 4393, + [4518] = 4385, + [4519] = 4394, + [4520] = 4373, + [4521] = 874, + [4522] = 4375, + [4523] = 4376, + [4524] = 4377, + [4525] = 4372, + [4526] = 4387, + [4527] = 4378, + [4528] = 4379, + [4529] = 4386, + [4530] = 4392, + [4531] = 4381, + [4532] = 4382, + [4533] = 4383, + [4534] = 4384, + [4535] = 4385, + [4536] = 4386, + [4537] = 4387, + [4538] = 4372, + [4539] = 4385, + [4540] = 4384, + [4541] = 4383, + [4542] = 4395, + [4543] = 4543, + [4544] = 4396, + [4545] = 4391, + [4546] = 4381, + [4547] = 4372, + [4548] = 4392, + [4549] = 4395, + [4550] = 4396, + [4551] = 4391, + [4552] = 4398, + [4553] = 4399, + [4554] = 4381, + [4555] = 4400, + [4556] = 4401, + [4557] = 4402, + [4558] = 4398, + [4559] = 4399, + [4560] = 4379, + [4561] = 4380, + [4562] = 4393, + [4563] = 4394, + [4564] = 4373, + [4565] = 4375, + [4566] = 4376, + [4567] = 4377, + [4568] = 4378, + [4569] = 4379, + [4570] = 4400, + [4571] = 4381, + [4572] = 4382, + [4573] = 4383, + [4574] = 4384, + [4575] = 4385, + [4576] = 4386, + [4577] = 4387, + [4578] = 4372, + [4579] = 4378, + [4580] = 4394, + [4581] = 4377, + [4582] = 4393, + [4583] = 4392, + [4584] = 4395, + [4585] = 4396, + [4586] = 4391, + [4587] = 4398, + [4588] = 4399, + [4589] = 4400, + [4590] = 4401, + [4591] = 4402, + [4592] = 4401, + [4593] = 4376, + [4594] = 4380, + [4595] = 4393, + [4596] = 4375, + [4597] = 4394, + [4598] = 4373, + [4599] = 4375, + [4600] = 4373, + [4601] = 4376, + [4602] = 4377, + [4603] = 4378, + [4604] = 4379, + [4605] = 4402, + [4606] = 4381, + [4607] = 4382, + [4608] = 4383, + [4609] = 4384, + [4610] = 4394, + [4611] = 4393, + [4612] = 4380, + [4613] = 4380, + [4614] = 4393, + [4615] = 4385, + [4616] = 4386, + [4617] = 4394, + [4618] = 4402, + [4619] = 4373, + [4620] = 4375, + [4621] = 4401, + [4622] = 4400, + [4623] = 4387, + [4624] = 4372, + [4625] = 4399, + [4626] = 4380, + [4627] = 4398, + [4628] = 4392, + [4629] = 4395, + [4630] = 4396, + [4631] = 4391, + [4632] = 4398, + [4633] = 4399, + [4634] = 4400, + [4635] = 4401, + [4636] = 4402, + [4637] = 4376, + [4638] = 4391, + [4639] = 4380, + [4640] = 4393, + [4641] = 4396, + [4642] = 4394, + [4643] = 4373, + [4644] = 4375, + [4645] = 4376, + [4646] = 4398, + [4647] = 4377, + [4648] = 4378, + [4649] = 4379, + [4650] = 4377, + [4651] = 4381, + [4652] = 4395, + [4653] = 4382, + [4654] = 4383, + [4655] = 4384, + [4656] = 4385, + [4657] = 4386, + [4658] = 4387, + [4659] = 4372, + [4660] = 4392, + [4661] = 4386, + [4662] = 4378, + [4663] = 4392, + [4664] = 4395, + [4665] = 4396, + [4666] = 4391, + [4667] = 4387, + [4668] = 4379, + [4669] = 4398, + [4670] = 4399, + [4671] = 4372, + [4672] = 4400, + [4673] = 4401, + [4674] = 4402, + [4675] = 4381, + [4676] = 4396, + [4677] = 4382, + [4678] = 4383, + [4679] = 4380, + [4680] = 4393, + [4681] = 4387, + [4682] = 4386, + [4683] = 4394, + [4684] = 4384, + [4685] = 4385, + [4686] = 4373, + [4687] = 4385, + [4688] = 4375, + [4689] = 4384, + [4690] = 4376, + [4691] = 4377, + [4692] = 4378, + [4693] = 4379, + [4694] = 4386, + [4695] = 4381, + [4696] = 4383, + [4697] = 4382, + [4698] = 4383, + [4699] = 4384, + [4700] = 4385, + [4701] = 4386, + [4702] = 4387, + [4703] = 4372, + [4704] = 4382, + [4705] = 4381, + [4706] = 4392, + [4707] = 4395, + [4708] = 4396, + [4709] = 4391, + [4710] = 4398, + [4711] = 4399, + [4712] = 4400, + [4713] = 4401, + [4714] = 4402, + [4715] = 4387, + [4716] = 4372, + [4717] = 4380, + [4718] = 4393, + [4719] = 4394, + [4720] = 4373, + [4721] = 4375, + [4722] = 4376, + [4723] = 4379, + [4724] = 4377, + [4725] = 4378, + [4726] = 4379, + [4727] = 4402, + [4728] = 4381, + [4729] = 4382, + [4730] = 4383, + [4731] = 4384, + [4732] = 4385, + [4733] = 4386, + [4734] = 4387, + [4735] = 4372, + [4736] = 4392, + [4737] = 4395, + [4738] = 4378, + [4739] = 4396, + [4740] = 4391, + [4741] = 4398, + [4742] = 4377, + [4743] = 4399, + [4744] = 4400, + [4745] = 4401, + [4746] = 4376, + [4747] = 4402, + [4748] = 4401, + [4749] = 4375, + [4750] = 4380, + [4751] = 4400, + [4752] = 4373, + [4753] = 4394, + [4754] = 4399, + [4755] = 4398, + [4756] = 4391, + [4757] = 4393, + [4758] = 4380, + [4759] = 4393, + [4760] = 4396, + [4761] = 4394, + [4762] = 4402, + [4763] = 4401, + [4764] = 4373, + [4765] = 4375, + [4766] = 4376, + [4767] = 4400, + [4768] = 4377, + [4769] = 4378, + [4770] = 4379, + [4771] = 4395, + [4772] = 4381, + [4773] = 4382, + [4774] = 4383, + [4775] = 4384, + [4776] = 4385, + [4777] = 4386, + [4778] = 4387, + [4779] = 4372, + [4780] = 4399, + [4781] = 4392, + [4782] = 4395, + [4783] = 4396, + [4784] = 4391, + [4785] = 4399, + [4786] = 4400, + [4787] = 4401, + [4788] = 4398, + [4789] = 4402, + [4790] = 4392, + [4791] = 4380, + [4792] = 4393, + [4793] = 4394, + [4794] = 4391, + [4795] = 4373, + [4796] = 4375, + [4797] = 4376, + [4798] = 4377, + [4799] = 4378, + [4800] = 4379, + [4801] = 4402, + [4802] = 4381, + [4803] = 4382, + [4804] = 4383, + [4805] = 4384, + [4806] = 4385, + [4807] = 4386, + [4808] = 4387, + [4809] = 4375, + [4810] = 4372, + [4811] = 4395, + [4812] = 4392, + [4813] = 4392, + [4814] = 4392, + [4815] = 4395, + [4816] = 4396, + [4817] = 4391, + [4818] = 4398, + [4819] = 4399, + [4820] = 4400, + [4821] = 4401, + [4822] = 4402, + [4823] = 4395, + [4824] = 4396, + [4825] = 4392, + [4826] = 4395, + [4827] = 4372, + [4828] = 4372, + [4829] = 4396, + [4830] = 4380, + [4831] = 4387, + [4832] = 4393, + [4833] = 4394, + [4834] = 4373, + [4835] = 4375, + [4836] = 4376, + [4837] = 4377, + [4838] = 4387, + [4839] = 4378, + [4840] = 4379, + [4841] = 4386, + [4842] = 4381, + [4843] = 4382, + [4844] = 4383, + [4845] = 4384, + [4846] = 4385, + [4847] = 4386, + [4848] = 4387, + [4849] = 4372, + [4850] = 4392, + [4851] = 4395, + [4852] = 4396, + [4853] = 4391, + [4854] = 4398, + [4855] = 4399, + [4856] = 4400, + [4857] = 4401, + [4858] = 4402, + [4859] = 4385, + [4860] = 4380, + [4861] = 4393, + [4862] = 4394, + [4863] = 4373, + [4864] = 4375, + [4865] = 4386, + [4866] = 4376, + [4867] = 4377, + [4868] = 4378, + [4869] = 4379, + [4870] = 4384, + [4871] = 4381, + [4872] = 4382, + [4873] = 4383, + [4874] = 4384, + [4875] = 4385, + [4876] = 4386, + [4877] = 4387, + [4878] = 4372, + [4879] = 4392, + [4880] = 4385, + [4881] = 4383, + [4882] = 4395, + [4883] = 4396, + [4884] = 4382, + [4885] = 4391, + [4886] = 4398, + [4887] = 4381, + [4888] = 4379, + [4889] = 4384, + [4890] = 4383, + [4891] = 4399, + [4892] = 4400, + [4893] = 4401, + [4894] = 4382, + [4895] = 4381, + [4896] = 4378, + [4897] = 4377, + [4898] = 4376, + [4899] = 4379, + [4900] = 4378, + [4901] = 4402, + [4902] = 4377, + [4903] = 4375, + [4904] = 4380, + [4905] = 4393, + [4906] = 4394, + [4907] = 4394, + [4908] = 4375, + [4909] = 4376, + [4910] = 4376, + [4911] = 4377, + [4912] = 4378, + [4913] = 4379, + [4914] = 4373, + [4915] = 4381, + [4916] = 4382, + [4917] = 4383, + [4918] = 4384, + [4919] = 4385, + [4920] = 4386, + [4921] = 4387, + [4922] = 4372, + [4923] = 4392, + [4924] = 4395, + [4925] = 4396, + [4926] = 4391, + [4927] = 4398, + [4928] = 4399, + [4929] = 4400, + [4930] = 4401, + [4931] = 4402, + [4932] = 4394, + [4933] = 4393, + [4934] = 4380, + [4935] = 4393, + [4936] = 4383, + [4937] = 4394, + [4938] = 4373, + [4939] = 4375, + [4940] = 4376, + [4941] = 4377, + [4942] = 4378, + [4943] = 4379, + [4944] = 4380, + [4945] = 4373, + [4946] = 4381, + [4947] = 4382, + [4948] = 4383, + [4949] = 4384, + [4950] = 4385, + [4951] = 4394, + [4952] = 4386, + [4953] = 4387, + [4954] = 4372, + [4955] = 4393, + [4956] = 4392, + [4957] = 4395, + [4958] = 4391, + [4959] = 4396, + [4960] = 4391, + [4961] = 4543, + [4962] = 4398, + [4963] = 4399, + [4964] = 4400, + [4965] = 4380, + [4966] = 4402, + [4967] = 4401, + [4968] = 4401, + [4969] = 4400, + [4970] = 4402, + [4971] = 4971, + [4972] = 4380, + [4973] = 4402, + [4974] = 4393, + [4975] = 4394, + [4976] = 4373, + [4977] = 4375, + [4978] = 4376, + [4979] = 4377, + [4980] = 4401, + [4981] = 4378, + [4982] = 4379, + [4983] = 4398, + [4984] = 4381, + [4985] = 4382, + [4986] = 4383, + [4987] = 4384, + [4988] = 4385, + [4989] = 4386, + [4990] = 4387, + [4991] = 4372, + [4992] = 4392, + [4993] = 4395, + [4994] = 4396, + [4995] = 4391, + [4996] = 4398, + [4997] = 4399, + [4998] = 4400, + [4999] = 4401, + [5000] = 4402, + [5001] = 4399, + [5002] = 4380, + [5003] = 4393, + [5004] = 4394, + [5005] = 4373, + [5006] = 4375, + [5007] = 4400, + [5008] = 4376, + [5009] = 4377, + [5010] = 4378, + [5011] = 4379, + [5012] = 4398, + [5013] = 4381, + [5014] = 4382, + [5015] = 4399, + [5016] = 4383, + [5017] = 4384, + [5018] = 4398, + [5019] = 4385, + [5020] = 4386, + [5021] = 4387, + [5022] = 4391, + [5023] = 4399, + [5024] = 4391, + [5025] = 4396, + [5026] = 4396, + [5027] = 4395, + [5028] = 4372, + [5029] = 4392, + [5030] = 4392, + [5031] = 4395, + [5032] = 4398, + [5033] = 4399, + [5034] = 4396, + [5035] = 4391, + [5036] = 4372, + [5037] = 4387, + [5038] = 4398, + [5039] = 4395, + [5040] = 4392, + [5041] = 4399, + [5042] = 4400, + [5043] = 4401, + [5044] = 4386, + [5045] = 4402, + [5046] = 4372, + [5047] = 4380, + [5048] = 4393, + [5049] = 4394, + [5050] = 4373, + [5051] = 4385, + [5052] = 4375, + [5053] = 4376, + [5054] = 4377, + [5055] = 4384, + [5056] = 4378, + [5057] = 4379, + [5058] = 4387, + [5059] = 4381, + [5060] = 4382, + [5061] = 4383, + [5062] = 4384, + [5063] = 4385, + [5064] = 4386, + [5065] = 4387, + [5066] = 4372, + [5067] = 4373, + [5068] = 4392, + [5069] = 4395, + [5070] = 4396, + [5071] = 4391, + [5072] = 4398, + [5073] = 4399, + [5074] = 4400, + [5075] = 4401, + [5076] = 4402, + [5077] = 4400, + [5078] = 4382, + [5079] = 4380, + [5080] = 4393, + [5081] = 4394, + [5082] = 4373, + [5083] = 4375, + [5084] = 4376, + [5085] = 4377, + [5086] = 4378, + [5087] = 4379, + [5088] = 4386, + [5089] = 4381, + [5090] = 4382, + [5091] = 4383, + [5092] = 4384, + [5093] = 4381, + [5094] = 4385, + [5095] = 4386, + [5096] = 4387, + [5097] = 4385, + [5098] = 4379, + [5099] = 4378, + [5100] = 4384, + [5101] = 4392, + [5102] = 4395, + [5103] = 4396, + [5104] = 4391, + [5105] = 4398, + [5106] = 4399, + [5107] = 4377, + [5108] = 4376, + [5109] = 4400, + [5110] = 4383, + [5111] = 4401, + [5112] = 4401, + [5113] = 4402, + [5114] = 4402, + [5115] = 4375, + [5116] = 4395, + [5117] = 4380, + [5118] = 4393, + [5119] = 4394, + [5120] = 4394, + [5121] = 4373, + [5122] = 4393, + [5123] = 4375, + [5124] = 4376, + [5125] = 4377, + [5126] = 4378, + [5127] = 4379, + [5128] = 4382, + [5129] = 4381, + [5130] = 4382, + [5131] = 4383, + [5132] = 4384, + [5133] = 4385, + [5134] = 4386, + [5135] = 4387, + [5136] = 4372, + [5137] = 4392, + [5138] = 4380, + [5139] = 4395, + [5140] = 4396, + [5141] = 4391, + [5142] = 4398, + [5143] = 4381, + [5144] = 4399, + [5145] = 4400, + [5146] = 4401, + [5147] = 4402, + [5148] = 4393, + [5149] = 4394, + [5150] = 4380, + [5151] = 4393, + [5152] = 4394, + [5153] = 4373, + [5154] = 4375, + [5155] = 4376, + [5156] = 4377, + [5157] = 4379, + [5158] = 4402, + [5159] = 4401, + [5160] = 4378, + [5161] = 4379, + [5162] = 4373, + [5163] = 4381, + [5164] = 4400, + [5165] = 4382, + [5166] = 4399, + [5167] = 5167, + [5168] = 4375, + [5169] = 4383, + [5170] = 4384, + [5171] = 4385, + [5172] = 4386, + [5173] = 4387, + [5174] = 4378, + [5175] = 4372, + [5176] = 4392, + [5177] = 4395, + [5178] = 4376, + [5179] = 4398, + [5180] = 4396, + [5181] = 4377, + [5182] = 4376, + [5183] = 4391, + [5184] = 4375, + [5185] = 4391, + [5186] = 4396, + [5187] = 4398, + [5188] = 4399, + [5189] = 4400, + [5190] = 4401, + [5191] = 4402, + [5192] = 4373, + [5193] = 4380, + [5194] = 4380, + [5195] = 4393, + [5196] = 4392, + [5197] = 4394, + [5198] = 4373, + [5199] = 4375, + [5200] = 4376, + [5201] = 4377, + [5202] = 4378, + [5203] = 4379, + [5204] = 4377, + [5205] = 4381, + [5206] = 4382, + [5207] = 4383, + [5208] = 4384, + [5209] = 4400, + [5210] = 4385, + [5211] = 4386, + [5212] = 4387, + [5213] = 4372, + [5214] = 4401, + [5215] = 4392, + [5216] = 4395, + [5217] = 4396, + [5218] = 4391, + [5219] = 4398, + [5220] = 4372, + [5221] = 4399, + [5222] = 4400, + [5223] = 4401, + [5224] = 4402, + [5225] = 4394, + [5226] = 4380, + [5227] = 4393, + [5228] = 4394, + [5229] = 4373, + [5230] = 4375, + [5231] = 4376, + [5232] = 4377, + [5233] = 4378, + [5234] = 4379, + [5235] = 4387, + [5236] = 4393, + [5237] = 4380, + [5238] = 4402, + [5239] = 4386, + [5240] = 5240, + [5241] = 4381, + [5242] = 4382, + [5243] = 4383, + [5244] = 4384, + [5245] = 4385, + [5246] = 4385, + [5247] = 4386, + [5248] = 4387, + [5249] = 4384, + [5250] = 4383, + [5251] = 4372, + [5252] = 4401, + [5253] = 4400, + [5254] = 4382, + [5255] = 4392, + [5256] = 4395, + [5257] = 4381, + [5258] = 4396, + [5259] = 4391, + [5260] = 4398, + [5261] = 4399, + [5262] = 4400, + [5263] = 4401, + [5264] = 4399, + [5265] = 4402, + [5266] = 4378, + [5267] = 4380, + [5268] = 4393, + [5269] = 4394, + [5270] = 4373, + [5271] = 4375, + [5272] = 4376, + [5273] = 4377, + [5274] = 4378, + [5275] = 4379, + [5276] = 4398, + [5277] = 4381, + [5278] = 4382, + [5279] = 4383, + [5280] = 4384, + [5281] = 4385, + [5282] = 4386, + [5283] = 4387, + [5284] = 4372, + [5285] = 4379, + [5286] = 4392, + [5287] = 4395, + [5288] = 4396, + [5289] = 4391, + [5290] = 5290, + [5291] = 5291, + [5292] = 5290, + [5293] = 5291, + [5294] = 5294, + [5295] = 5295, + [5296] = 5296, + [5297] = 5290, + [5298] = 5298, + [5299] = 5295, + [5300] = 5296, + [5301] = 5290, + [5302] = 5296, + [5303] = 5303, + [5304] = 5291, + [5305] = 5294, + [5306] = 5294, + [5307] = 5307, + [5308] = 5291, + [5309] = 5291, + [5310] = 5290, + [5311] = 5294, + [5312] = 5294, + [5313] = 5296, + [5314] = 5296, + [5315] = 5290, + [5316] = 5291, + [5317] = 5296, + [5318] = 5290, + [5319] = 5296, + [5320] = 5296, + [5321] = 5291, + [5322] = 5294, + [5323] = 5294, + [5324] = 5291, + [5325] = 5295, + [5326] = 5290, + [5327] = 5290, + [5328] = 5296, + [5329] = 5290, + [5330] = 5296, + [5331] = 5291, + [5332] = 5294, + [5333] = 5294, + [5334] = 5291, + [5335] = 5335, + [5336] = 5290, + [5337] = 5296, + [5338] = 5290, + [5339] = 5296, + [5340] = 5291, + [5341] = 5294, + [5342] = 5296, + [5343] = 5296, + [5344] = 5344, + [5345] = 5290, + [5346] = 5295, + [5347] = 5296, + [5348] = 5290, + [5349] = 5296, + [5350] = 5291, + [5351] = 5294, + [5352] = 5290, + [5353] = 5294, + [5354] = 5290, + [5355] = 5291, + [5356] = 5291, + [5357] = 5294, + [5358] = 5290, + [5359] = 5296, + [5360] = 5290, + [5361] = 5294, + [5362] = 5291, + [5363] = 5291, + [5364] = 5294, + [5365] = 5296, + [5366] = 5290, + [5367] = 5296, + [5368] = 5294, + [5369] = 5296, + [5370] = 5291, + [5371] = 5291, + [5372] = 5290, + [5373] = 5294, + [5374] = 5291, + [5375] = 5296, + [5376] = 5290, + [5377] = 5294, + [5378] = 5290, + [5379] = 5296, + [5380] = 5290, + [5381] = 5291, + [5382] = 5294, + [5383] = 5291, + [5384] = 5303, + [5385] = 5296, + [5386] = 5290, + [5387] = 5335, + [5388] = 5294, + [5389] = 5290, + [5390] = 5296, + [5391] = 5291, + [5392] = 5294, + [5393] = 5294, + [5394] = 5294, + [5395] = 5291, + [5396] = 5291, + [5397] = 5296, + [5398] = 5291, + [5399] = 5294, + [5400] = 5296, + [5401] = 5290, + [5402] = 5296, + [5403] = 5294, + [5404] = 5291, + [5405] = 5290, + [5406] = 5296, + [5407] = 5290, + [5408] = 5294, + [5409] = 5344, + [5410] = 5291, + [5411] = 5291, + [5412] = 5294, + [5413] = 5290, + [5414] = 5291, + [5415] = 5294, + [5416] = 5296, + [5417] = 5294, + [5418] = 5290, + [5419] = 5291, + [5420] = 5296, + [5421] = 5296, + [5422] = 5291, + [5423] = 5294, + [5424] = 5295, + [5425] = 5296, + [5426] = 5290, + [5427] = 5290, + [5428] = 5294, + [5429] = 5291, + [5430] = 5296, + [5431] = 5290, + [5432] = 5291, + [5433] = 5290, + [5434] = 5294, + [5435] = 5291, + [5436] = 5294, + [5437] = 5296, + [5438] = 5294, + [5439] = 5296, + [5440] = 5291, + [5441] = 5294, + [5442] = 5290, + [5443] = 5443, + [5444] = 5444, + [5445] = 5445, + [5446] = 5446, + [5447] = 5447, + [5448] = 5448, + [5449] = 5449, + [5450] = 5450, + [5451] = 5451, + [5452] = 5452, + [5453] = 5453, + [5454] = 5454, + [5455] = 5455, + [5456] = 5456, + [5457] = 5457, + [5458] = 5458, + [5459] = 5459, + [5460] = 5443, + [5461] = 5461, + [5462] = 5462, + [5463] = 5463, + [5464] = 5462, + [5465] = 5461, + [5466] = 5463, + [5467] = 5443, + [5468] = 5459, + [5469] = 5456, + [5470] = 5455, + [5471] = 5454, + [5472] = 5453, + [5473] = 5452, + [5474] = 5451, + [5475] = 5450, + [5476] = 5458, + [5477] = 5457, + [5478] = 5478, + [5479] = 5444, + [5480] = 5480, + [5481] = 5449, + [5482] = 5480, + [5483] = 5483, + [5484] = 5484, + [5485] = 5485, + [5486] = 5486, + [5487] = 5487, + [5488] = 5488, + [5489] = 5489, + [5490] = 5490, + [5491] = 5491, + [5492] = 5492, + [5493] = 5448, + [5494] = 5494, + [5495] = 5495, + [5496] = 5496, + [5497] = 5497, + [5498] = 5447, + [5499] = 5445, + [5500] = 5446, + [5501] = 5447, + [5502] = 5448, + [5503] = 5449, + [5504] = 5497, + [5505] = 5450, + [5506] = 5451, + [5507] = 5452, + [5508] = 5453, + [5509] = 5454, + [5510] = 5455, + [5511] = 5456, + [5512] = 5446, + [5513] = 5445, + [5514] = 5497, + [5515] = 5496, + [5516] = 5459, + [5517] = 5443, + [5518] = 5461, + [5519] = 5495, + [5520] = 5496, + [5521] = 5495, + [5522] = 5494, + [5523] = 5444, + [5524] = 5492, + [5525] = 5462, + [5526] = 5491, + [5527] = 5494, + [5528] = 5492, + [5529] = 5491, + [5530] = 5490, + [5531] = 5463, + [5532] = 5490, + [5533] = 5489, + [5534] = 5488, + [5535] = 5489, + [5536] = 5487, + [5537] = 5486, + [5538] = 5488, + [5539] = 5487, + [5540] = 5486, + [5541] = 5485, + [5542] = 5485, + [5543] = 5484, + [5544] = 5483, + [5545] = 5480, + [5546] = 5458, + [5547] = 5457, + [5548] = 5484, + [5549] = 5478, + [5550] = 5444, + [5551] = 5483, + [5552] = 5454, + [5553] = 5480, + [5554] = 5483, + [5555] = 5484, + [5556] = 5485, + [5557] = 5486, + [5558] = 5487, + [5559] = 5488, + [5560] = 5489, + [5561] = 5490, + [5562] = 5491, + [5563] = 5492, + [5564] = 5459, + [5565] = 5494, + [5566] = 5495, + [5567] = 5496, + [5568] = 5497, + [5569] = 5478, + [5570] = 5445, + [5571] = 5446, + [5572] = 5447, + [5573] = 5448, + [5574] = 5449, + [5575] = 5451, + [5576] = 5450, + [5577] = 5451, + [5578] = 5452, + [5579] = 5453, + [5580] = 5454, + [5581] = 5455, + [5582] = 5456, + [5583] = 5480, + [5584] = 5457, + [5585] = 5458, + [5586] = 5444, + [5587] = 5459, + [5588] = 5443, + [5589] = 5461, + [5590] = 5478, + [5591] = 5457, + [5592] = 5458, + [5593] = 5461, + [5594] = 5483, + [5595] = 5443, + [5596] = 5462, + [5597] = 5459, + [5598] = 5484, + [5599] = 5485, + [5600] = 5463, + [5601] = 5486, + [5602] = 5463, + [5603] = 5462, + [5604] = 5487, + [5605] = 5488, + [5606] = 5489, + [5607] = 5490, + [5608] = 5463, + [5609] = 5491, + [5610] = 5492, + [5611] = 5494, + [5612] = 5495, + [5613] = 5496, + [5614] = 5462, + [5615] = 5478, + [5616] = 5497, + [5617] = 5445, + [5618] = 5446, + [5619] = 5461, + [5620] = 5443, + [5621] = 5459, + [5622] = 5447, + [5623] = 5448, + [5624] = 5449, + [5625] = 5456, + [5626] = 5455, + [5627] = 5454, + [5628] = 5453, + [5629] = 5452, + [5630] = 5451, + [5631] = 5450, + [5632] = 5449, + [5633] = 5448, + [5634] = 5447, + [5635] = 5446, + [5636] = 5445, + [5637] = 5450, + [5638] = 5497, + [5639] = 5496, + [5640] = 5495, + [5641] = 5494, + [5642] = 5454, + [5643] = 5492, + [5644] = 5491, + [5645] = 5490, + [5646] = 5489, + [5647] = 5488, + [5648] = 5487, + [5649] = 5486, + [5650] = 5485, + [5651] = 5484, + [5652] = 5483, + [5653] = 5480, + [5654] = 5444, + [5655] = 5478, + [5656] = 5457, + [5657] = 5458, + [5658] = 5452, + [5659] = 5461, + [5660] = 5456, + [5661] = 5455, + [5662] = 5453, + [5663] = 5454, + [5664] = 5455, + [5665] = 5456, + [5666] = 5459, + [5667] = 5443, + [5668] = 5461, + [5669] = 5463, + [5670] = 5462, + [5671] = 5463, + [5672] = 5462, + [5673] = 5458, + [5674] = 5461, + [5675] = 5443, + [5676] = 5459, + [5677] = 5457, + [5678] = 5478, + [5679] = 5456, + [5680] = 5443, + [5681] = 5455, + [5682] = 5452, + [5683] = 5453, + [5684] = 5452, + [5685] = 5451, + [5686] = 5450, + [5687] = 5449, + [5688] = 5448, + [5689] = 5447, + [5690] = 5446, + [5691] = 5445, + [5692] = 5451, + [5693] = 5453, + [5694] = 5445, + [5695] = 5497, + [5696] = 5496, + [5697] = 5495, + [5698] = 5494, + [5699] = 5480, + [5700] = 5492, + [5701] = 5491, + [5702] = 5490, + [5703] = 5489, + [5704] = 5488, + [5705] = 5487, + [5706] = 5486, + [5707] = 5485, + [5708] = 5484, + [5709] = 5483, + [5710] = 5480, + [5711] = 5483, + [5712] = 5456, + [5713] = 5484, + [5714] = 5444, + [5715] = 5478, + [5716] = 5457, + [5717] = 5458, + [5718] = 5485, + [5719] = 5486, + [5720] = 5487, + [5721] = 5488, + [5722] = 5489, + [5723] = 5452, + [5724] = 5451, + [5725] = 5450, + [5726] = 5490, + [5727] = 5491, + [5728] = 5492, + [5729] = 5463, + [5730] = 5494, + [5731] = 5495, + [5732] = 5496, + [5733] = 5462, + [5734] = 5462, + [5735] = 5497, + [5736] = 5461, + [5737] = 5443, + [5738] = 5459, + [5739] = 5445, + [5740] = 5446, + [5741] = 5447, + [5742] = 5448, + [5743] = 5456, + [5744] = 5455, + [5745] = 5455, + [5746] = 5454, + [5747] = 5453, + [5748] = 5449, + [5749] = 5451, + [5750] = 5450, + [5751] = 5449, + [5752] = 5448, + [5753] = 5447, + [5754] = 5446, + [5755] = 5454, + [5756] = 5445, + [5757] = 5449, + [5758] = 5449, + [5759] = 5497, + [5760] = 5496, + [5761] = 5495, + [5762] = 5494, + [5763] = 5492, + [5764] = 5491, + [5765] = 5490, + [5766] = 5489, + [5767] = 5488, + [5768] = 5487, + [5769] = 5486, + [5770] = 5485, + [5771] = 5484, + [5772] = 5483, + [5773] = 5480, + [5774] = 5774, + [5775] = 5444, + [5776] = 5453, + [5777] = 5478, + [5778] = 5457, + [5779] = 5458, + [5780] = 5450, + [5781] = 5451, + [5782] = 5452, + [5783] = 5453, + [5784] = 5454, + [5785] = 5455, + [5786] = 5456, + [5787] = 5448, + [5788] = 5447, + [5789] = 5446, + [5790] = 5463, + [5791] = 5459, + [5792] = 5443, + [5793] = 5461, + [5794] = 5463, + [5795] = 5462, + [5796] = 5444, + [5797] = 5462, + [5798] = 5461, + [5799] = 5443, + [5800] = 5459, + [5801] = 5463, + [5802] = 5456, + [5803] = 5455, + [5804] = 5454, + [5805] = 5453, + [5806] = 5452, + [5807] = 5451, + [5808] = 5452, + [5809] = 5450, + [5810] = 5496, + [5811] = 5448, + [5812] = 5447, + [5813] = 5446, + [5814] = 5445, + [5815] = 5497, + [5816] = 5496, + [5817] = 5495, + [5818] = 5494, + [5819] = 5489, + [5820] = 5445, + [5821] = 5497, + [5822] = 5492, + [5823] = 5491, + [5824] = 5490, + [5825] = 5489, + [5826] = 5488, + [5827] = 5487, + [5828] = 5486, + [5829] = 5485, + [5830] = 5484, + [5831] = 5483, + [5832] = 5480, + [5833] = 5458, + [5834] = 5457, + [5835] = 5444, + [5836] = 5478, + [5837] = 5457, + [5838] = 5458, + [5839] = 5478, + [5840] = 5450, + [5841] = 5444, + [5842] = 5483, + [5843] = 5484, + [5844] = 5485, + [5845] = 5486, + [5846] = 5487, + [5847] = 5463, + [5848] = 5488, + [5849] = 5489, + [5850] = 5490, + [5851] = 5491, + [5852] = 5492, + [5853] = 5496, + [5854] = 5462, + [5855] = 5494, + [5856] = 5495, + [5857] = 5478, + [5858] = 5497, + [5859] = 5461, + [5860] = 5443, + [5861] = 5459, + [5862] = 5445, + [5863] = 5446, + [5864] = 5447, + [5865] = 5448, + [5866] = 5456, + [5867] = 5455, + [5868] = 5454, + [5869] = 5453, + [5870] = 5452, + [5871] = 5451, + [5872] = 5449, + [5873] = 5450, + [5874] = 5449, + [5875] = 5448, + [5876] = 5447, + [5877] = 5446, + [5878] = 5445, + [5879] = 5449, + [5880] = 5497, + [5881] = 5496, + [5882] = 5495, + [5883] = 5495, + [5884] = 5494, + [5885] = 5492, + [5886] = 5494, + [5887] = 5492, + [5888] = 5491, + [5889] = 5490, + [5890] = 5489, + [5891] = 5488, + [5892] = 5487, + [5893] = 5486, + [5894] = 5485, + [5895] = 5484, + [5896] = 5483, + [5897] = 5480, + [5898] = 5450, + [5899] = 5444, + [5900] = 5478, + [5901] = 5457, + [5902] = 5458, + [5903] = 5451, + [5904] = 5448, + [5905] = 5452, + [5906] = 5453, + [5907] = 5454, + [5908] = 5455, + [5909] = 5456, + [5910] = 5480, + [5911] = 5443, + [5912] = 5461, + [5913] = 5463, + [5914] = 5462, + [5915] = 5491, + [5916] = 5447, + [5917] = 5490, + [5918] = 5463, + [5919] = 5462, + [5920] = 5461, + [5921] = 5443, + [5922] = 5459, + [5923] = 5458, + [5924] = 5457, + [5925] = 5456, + [5926] = 5455, + [5927] = 5454, + [5928] = 5453, + [5929] = 5452, + [5930] = 5451, + [5931] = 5450, + [5932] = 5449, + [5933] = 5448, + [5934] = 5447, + [5935] = 5446, + [5936] = 5446, + [5937] = 5445, + [5938] = 5491, + [5939] = 5497, + [5940] = 5496, + [5941] = 5495, + [5942] = 5494, + [5943] = 5444, + [5944] = 5492, + [5945] = 5491, + [5946] = 5490, + [5947] = 5490, + [5948] = 5488, + [5949] = 5487, + [5950] = 5489, + [5951] = 5488, + [5952] = 5487, + [5953] = 5486, + [5954] = 5485, + [5955] = 5484, + [5956] = 5483, + [5957] = 5480, + [5958] = 5480, + [5959] = 5483, + [5960] = 5444, + [5961] = 5478, + [5962] = 5457, + [5963] = 5458, + [5964] = 5484, + [5965] = 5485, + [5966] = 5486, + [5967] = 5487, + [5968] = 5497, + [5969] = 5488, + [5970] = 5489, + [5971] = 5490, + [5972] = 5484, + [5973] = 5492, + [5974] = 5463, + [5975] = 5494, + [5976] = 5495, + [5977] = 5496, + [5978] = 5462, + [5979] = 5486, + [5980] = 5485, + [5981] = 5484, + [5982] = 5497, + [5983] = 5445, + [5984] = 5446, + [5985] = 5447, + [5986] = 5461, + [5987] = 5443, + [5988] = 5459, + [5989] = 5448, + [5990] = 5449, + [5991] = 5450, + [5992] = 5456, + [5993] = 5455, + [5994] = 5454, + [5995] = 5453, + [5996] = 5452, + [5997] = 5451, + [5998] = 5450, + [5999] = 5449, + [6000] = 5448, + [6001] = 5447, + [6002] = 5446, + [6003] = 5445, + [6004] = 5451, + [6005] = 5497, + [6006] = 5496, + [6007] = 5495, + [6008] = 5494, + [6009] = 5452, + [6010] = 5492, + [6011] = 5483, + [6012] = 5480, + [6013] = 5496, + [6014] = 5491, + [6015] = 5490, + [6016] = 5489, + [6017] = 5488, + [6018] = 5487, + [6019] = 5486, + [6020] = 5485, + [6021] = 5484, + [6022] = 5483, + [6023] = 5480, + [6024] = 5459, + [6025] = 5454, + [6026] = 5444, + [6027] = 5478, + [6028] = 5457, + [6029] = 5458, + [6030] = 5455, + [6031] = 5456, + [6032] = 5495, + [6033] = 5459, + [6034] = 5443, + [6035] = 5461, + [6036] = 5462, + [6037] = 5463, + [6038] = 5463, + [6039] = 5462, + [6040] = 5453, + [6041] = 5458, + [6042] = 5457, + [6043] = 5494, + [6044] = 5492, + [6045] = 5444, + [6046] = 5461, + [6047] = 5443, + [6048] = 5459, + [6049] = 5478, + [6050] = 5444, + [6051] = 5480, + [6052] = 5483, + [6053] = 5456, + [6054] = 5455, + [6055] = 5454, + [6056] = 5453, + [6057] = 5452, + [6058] = 5451, + [6059] = 5450, + [6060] = 5449, + [6061] = 5448, + [6062] = 5447, + [6063] = 5446, + [6064] = 5491, + [6065] = 5445, + [6066] = 5478, + [6067] = 5497, + [6068] = 5496, + [6069] = 5495, + [6070] = 5494, + [6071] = 5485, + [6072] = 5492, + [6073] = 5491, + [6074] = 5490, + [6075] = 5457, + [6076] = 5489, + [6077] = 5478, + [6078] = 5489, + [6079] = 5488, + [6080] = 5487, + [6081] = 5486, + [6082] = 5485, + [6083] = 5484, + [6084] = 5483, + [6085] = 5480, + [6086] = 5486, + [6087] = 5487, + [6088] = 5444, + [6089] = 5496, + [6090] = 5457, + [6091] = 5458, + [6092] = 5488, + [6093] = 5489, + [6094] = 5490, + [6095] = 5491, + [6096] = 5488, + [6097] = 5492, + [6098] = 5494, + [6099] = 5495, + [6100] = 5463, + [6101] = 5496, + [6102] = 5497, + [6103] = 5445, + [6104] = 5446, + [6105] = 5447, + [6106] = 5462, + [6107] = 5487, + [6108] = 5448, + [6109] = 5486, + [6110] = 5449, + [6111] = 5450, + [6112] = 5461, + [6113] = 5443, + [6114] = 5459, + [6115] = 5451, + [6116] = 5452, + [6117] = 5453, + [6118] = 5454, + [6119] = 5456, + [6120] = 5455, + [6121] = 5454, + [6122] = 5453, + [6123] = 5452, + [6124] = 5451, + [6125] = 5450, + [6126] = 5449, + [6127] = 5448, + [6128] = 5485, + [6129] = 5447, + [6130] = 5446, + [6131] = 5445, + [6132] = 5497, + [6133] = 5496, + [6134] = 5484, + [6135] = 5495, + [6136] = 5494, + [6137] = 5456, + [6138] = 5492, + [6139] = 5457, + [6140] = 5483, + [6141] = 5491, + [6142] = 5490, + [6143] = 5489, + [6144] = 5488, + [6145] = 5487, + [6146] = 5486, + [6147] = 5485, + [6148] = 5484, + [6149] = 5483, + [6150] = 5480, + [6151] = 5459, + [6152] = 5443, + [6153] = 5444, + [6154] = 5478, + [6155] = 5457, + [6156] = 5458, + [6157] = 5461, + [6158] = 5462, + [6159] = 5463, + [6160] = 5480, + [6161] = 5463, + [6162] = 5458, + [6163] = 5457, + [6164] = 5478, + [6165] = 5462, + [6166] = 5444, + [6167] = 5480, + [6168] = 5483, + [6169] = 5484, + [6170] = 5461, + [6171] = 5458, + [6172] = 5444, + [6173] = 5478, + [6174] = 5443, + [6175] = 5459, + [6176] = 5485, + [6177] = 5486, + [6178] = 5487, + [6179] = 5488, + [6180] = 5456, + [6181] = 5455, + [6182] = 5454, + [6183] = 5453, + [6184] = 5452, + [6185] = 5451, + [6186] = 5450, + [6187] = 5449, + [6188] = 5448, + [6189] = 5447, + [6190] = 5446, + [6191] = 5445, + [6192] = 5489, + [6193] = 5497, + [6194] = 5492, + [6195] = 5495, + [6196] = 5494, + [6197] = 5490, + [6198] = 5451, + [6199] = 5491, + [6200] = 5490, + [6201] = 5489, + [6202] = 5488, + [6203] = 5487, + [6204] = 5458, + [6205] = 5486, + [6206] = 5485, + [6207] = 5484, + [6208] = 5483, + [6209] = 5480, + [6210] = 5491, + [6211] = 5492, + [6212] = 5444, + [6213] = 5478, + [6214] = 5457, + [6215] = 5458, + [6216] = 5494, + [6217] = 5495, + [6218] = 5496, + [6219] = 5497, + [6220] = 5445, + [6221] = 5446, + [6222] = 5447, + [6223] = 5448, + [6224] = 5463, + [6225] = 5449, + [6226] = 5450, + [6227] = 5451, + [6228] = 5462, + [6229] = 5452, + [6230] = 5453, + [6231] = 5454, + [6232] = 5461, + [6233] = 5443, + [6234] = 5459, + [6235] = 5455, + [6236] = 5456, + [6237] = 5459, + [6238] = 5455, + [6239] = 5456, + [6240] = 5455, + [6241] = 5454, + [6242] = 5453, + [6243] = 5452, + [6244] = 5451, + [6245] = 5450, + [6246] = 5449, + [6247] = 5448, + [6248] = 5447, + [6249] = 5446, + [6250] = 5445, + [6251] = 5497, + [6252] = 5496, + [6253] = 5495, + [6254] = 5494, + [6255] = 5492, + [6256] = 5491, + [6257] = 5490, + [6258] = 5489, + [6259] = 5488, + [6260] = 5487, + [6261] = 5486, + [6262] = 5485, + [6263] = 5484, + [6264] = 5483, + [6265] = 5480, + [6266] = 5443, + [6267] = 5463, + [6268] = 6268, + [6269] = 5444, + [6270] = 5478, + [6271] = 5457, + [6272] = 5458, + [6273] = 5458, + [6274] = 5457, + [6275] = 5478, + [6276] = 5463, + [6277] = 5444, + [6278] = 5480, + [6279] = 5483, + [6280] = 5484, + [6281] = 5485, + [6282] = 5462, + [6283] = 5486, + [6284] = 5487, + [6285] = 5488, + [6286] = 5489, + [6287] = 5461, + [6288] = 5443, + [6289] = 5459, + [6290] = 5490, + [6291] = 5491, + [6292] = 5492, + [6293] = 5494, + [6294] = 5456, + [6295] = 5455, + [6296] = 5454, + [6297] = 5453, + [6298] = 5452, + [6299] = 5480, + [6300] = 5450, + [6301] = 5449, + [6302] = 5448, + [6303] = 5447, + [6304] = 5446, + [6305] = 5445, + [6306] = 5495, + [6307] = 5497, + [6308] = 5496, + [6309] = 5495, + [6310] = 5494, + [6311] = 5496, + [6312] = 5492, + [6313] = 5491, + [6314] = 5490, + [6315] = 5489, + [6316] = 5488, + [6317] = 5487, + [6318] = 5486, + [6319] = 5485, + [6320] = 5484, + [6321] = 5483, + [6322] = 5494, + [6323] = 5497, + [6324] = 5444, + [6325] = 5478, + [6326] = 5457, + [6327] = 5458, + [6328] = 5445, + [6329] = 5446, + [6330] = 5447, + [6331] = 5448, + [6332] = 5449, + [6333] = 5450, + [6334] = 5451, + [6335] = 5452, + [6336] = 5463, + [6337] = 5453, + [6338] = 5454, + [6339] = 5461, + [6340] = 5455, + [6341] = 5456, + [6342] = 5462, + [6343] = 5462, + [6344] = 5443, + [6345] = 5461, + [6346] = 5461, + [6347] = 5443, + [6348] = 5459, + [6349] = 5462, + [6350] = 5463, + [6351] = 5456, + [6352] = 5455, + [6353] = 5454, + [6354] = 5453, + [6355] = 5452, + [6356] = 5451, + [6357] = 5450, + [6358] = 5449, + [6359] = 5448, + [6360] = 5447, + [6361] = 5446, + [6362] = 5445, + [6363] = 5497, + [6364] = 5496, + [6365] = 5495, + [6366] = 5494, + [6367] = 5492, + [6368] = 5491, + [6369] = 5490, + [6370] = 5489, + [6371] = 5488, + [6372] = 5487, + [6373] = 5486, + [6374] = 5485, + [6375] = 5484, + [6376] = 5483, + [6377] = 5480, + [6378] = 5444, + [6379] = 5478, + [6380] = 5457, + [6381] = 5458, + [6382] = 5458, + [6383] = 5457, + [6384] = 5478, + [6385] = 5444, + [6386] = 5480, + [6387] = 5483, + [6388] = 5484, + [6389] = 5463, + [6390] = 5485, + [6391] = 5486, + [6392] = 5487, + [6393] = 5488, + [6394] = 5489, + [6395] = 5462, + [6396] = 5490, + [6397] = 5491, + [6398] = 5492, + [6399] = 5463, + [6400] = 5461, + [6401] = 5443, + [6402] = 5459, + [6403] = 5495, + [6404] = 5496, + [6405] = 5497, + [6406] = 5445, + [6407] = 5456, + [6408] = 5455, + [6409] = 5454, + [6410] = 5453, + [6411] = 5452, + [6412] = 5451, + [6413] = 5450, + [6414] = 5449, + [6415] = 5448, + [6416] = 5447, + [6417] = 5446, + [6418] = 5445, + [6419] = 5446, + [6420] = 5497, + [6421] = 5496, + [6422] = 5495, + [6423] = 5494, + [6424] = 5447, + [6425] = 5492, + [6426] = 5491, + [6427] = 5490, + [6428] = 5489, + [6429] = 5488, + [6430] = 5487, + [6431] = 5486, + [6432] = 5485, + [6433] = 5484, + [6434] = 5483, + [6435] = 5480, + [6436] = 5448, + [6437] = 5449, + [6438] = 5444, + [6439] = 5478, + [6440] = 5457, + [6441] = 5458, + [6442] = 5450, + [6443] = 5451, + [6444] = 5452, + [6445] = 5453, + [6446] = 5454, + [6447] = 5459, + [6448] = 5456, + [6449] = 5459, + [6450] = 5489, + [6451] = 5443, + [6452] = 5461, + [6453] = 5462, + [6454] = 5462, + [6455] = 5463, + [6456] = 5461, + [6457] = 5443, + [6458] = 5459, + [6459] = 5458, + [6460] = 5456, + [6461] = 5455, + [6462] = 5454, + [6463] = 5453, + [6464] = 5452, + [6465] = 5451, + [6466] = 5450, + [6467] = 5449, + [6468] = 5448, + [6469] = 5447, + [6470] = 5446, + [6471] = 5445, + [6472] = 5457, + [6473] = 5497, + [6474] = 5496, + [6475] = 5495, + [6476] = 5494, + [6477] = 5492, + [6478] = 5491, + [6479] = 5490, + [6480] = 5489, + [6481] = 5488, + [6482] = 5487, + [6483] = 5486, + [6484] = 5485, + [6485] = 5484, + [6486] = 5483, + [6487] = 5480, + [6488] = 5478, + [6489] = 5444, + [6490] = 5444, + [6491] = 5478, + [6492] = 5457, + [6493] = 5458, + [6494] = 5480, + [6495] = 5483, + [6496] = 5484, + [6497] = 5485, + [6498] = 5486, + [6499] = 5487, + [6500] = 5488, + [6501] = 5451, + [6502] = 5490, + [6503] = 5463, + [6504] = 5491, + [6505] = 5492, + [6506] = 5494, + [6507] = 5495, + [6508] = 5496, + [6509] = 5462, + [6510] = 5497, + [6511] = 5445, + [6512] = 5446, + [6513] = 5447, + [6514] = 5461, + [6515] = 5443, + [6516] = 5459, + [6517] = 5448, + [6518] = 5449, + [6519] = 5450, + [6520] = 5456, + [6521] = 5455, + [6522] = 5454, + [6523] = 5453, + [6524] = 5452, + [6525] = 5451, + [6526] = 5450, + [6527] = 5449, + [6528] = 5448, + [6529] = 5447, + [6530] = 5446, + [6531] = 5445, + [6532] = 5451, + [6533] = 5497, + [6534] = 5496, + [6535] = 5495, + [6536] = 5494, + [6537] = 5452, + [6538] = 5492, + [6539] = 5491, + [6540] = 5490, + [6541] = 5489, + [6542] = 5488, + [6543] = 5487, + [6544] = 5486, + [6545] = 5485, + [6546] = 5484, + [6547] = 5483, + [6548] = 5480, + [6549] = 5453, + [6550] = 5455, + [6551] = 5444, + [6552] = 5478, + [6553] = 5457, + [6554] = 5458, + [6555] = 5455, + [6556] = 5456, + [6557] = 5459, + [6558] = 5443, + [6559] = 5461, + [6560] = 5462, + [6561] = 5463, + [6562] = 5463, + [6563] = 5462, + [6564] = 5458, + [6565] = 5457, + [6566] = 5461, + [6567] = 5443, + [6568] = 5459, + [6569] = 5478, + [6570] = 5444, + [6571] = 5480, + [6572] = 5483, + [6573] = 5456, + [6574] = 5455, + [6575] = 5454, + [6576] = 5453, + [6577] = 5452, + [6578] = 5478, + [6579] = 5450, + [6580] = 5449, + [6581] = 5448, + [6582] = 5447, + [6583] = 5446, + [6584] = 5445, + [6585] = 5484, + [6586] = 5497, + [6587] = 5496, + [6588] = 5495, + [6589] = 5494, + [6590] = 5485, + [6591] = 5492, + [6592] = 5491, + [6593] = 5490, + [6594] = 5489, + [6595] = 5488, + [6596] = 5487, + [6597] = 5486, + [6598] = 5485, + [6599] = 5484, + [6600] = 5483, + [6601] = 5480, + [6602] = 5486, + [6603] = 5487, + [6604] = 5444, + [6605] = 5461, + [6606] = 5457, + [6607] = 5458, + [6608] = 5488, + [6609] = 5489, + [6610] = 5490, + [6611] = 5491, + [6612] = 5492, + [6613] = 5494, + [6614] = 5495, + [6615] = 5454, + [6616] = 5497, + [6617] = 5463, + [6618] = 5445, + [6619] = 5446, + [6620] = 5447, + [6621] = 6621, + [6622] = 5448, + [6623] = 5449, + [6624] = 5462, + [6625] = 5450, + [6626] = 5451, + [6627] = 5452, + [6628] = 5461, + [6629] = 5443, + [6630] = 5459, + [6631] = 5453, + [6632] = 5454, + [6633] = 5455, + [6634] = 5456, + [6635] = 5456, + [6636] = 5455, + [6637] = 5454, + [6638] = 5453, + [6639] = 5452, + [6640] = 5451, + [6641] = 5450, + [6642] = 5449, + [6643] = 5448, + [6644] = 5447, + [6645] = 5446, + [6646] = 5445, + [6647] = 5496, + [6648] = 5497, + [6649] = 5496, + [6650] = 5495, + [6651] = 5494, + [6652] = 5459, + [6653] = 5492, + [6654] = 5491, + [6655] = 5490, + [6656] = 5489, + [6657] = 5488, + [6658] = 5487, + [6659] = 5486, + [6660] = 5485, + [6661] = 5484, + [6662] = 5483, + [6663] = 5480, + [6664] = 5444, + [6665] = 5478, + [6666] = 5457, + [6667] = 5458, + [6668] = 5463, + [6669] = 5462, + [6670] = 5461, + [6671] = 5443, + [6672] = 5459, + [6673] = 5456, + [6674] = 5455, + [6675] = 5454, + [6676] = 5453, + [6677] = 5452, + [6678] = 5451, + [6679] = 5450, + [6680] = 5449, + [6681] = 5448, + [6682] = 5447, + [6683] = 5446, + [6684] = 5445, + [6685] = 5497, + [6686] = 5496, + [6687] = 5495, + [6688] = 5494, + [6689] = 5492, + [6690] = 5491, + [6691] = 5490, + [6692] = 5489, + [6693] = 5488, + [6694] = 5487, + [6695] = 5486, + [6696] = 5485, + [6697] = 5484, + [6698] = 5483, + [6699] = 5480, + [6700] = 5444, + [6701] = 5478, + [6702] = 5457, + [6703] = 5458, + [6704] = 5463, + [6705] = 5462, + [6706] = 6621, + [6707] = 6621, + [6708] = 6621, + [6709] = 6621, + [6710] = 6621, + [6711] = 6621, + [6712] = 6621, + [6713] = 6621, + [6714] = 6621, + [6715] = 6621, + [6716] = 6621, + [6717] = 6621, + [6718] = 6621, + [6719] = 6621, + [6720] = 6621, + [6721] = 6621, + [6722] = 6621, + [6723] = 6621, + [6724] = 6621, + [6725] = 6621, + [6726] = 6621, + [6727] = 6621, + [6728] = 6621, + [6729] = 6621, + [6730] = 6621, + [6731] = 6621, + [6732] = 6621, + [6733] = 6621, + [6734] = 6621, + [6735] = 6621, + [6736] = 6621, + [6737] = 6621, + [6738] = 6621, + [6739] = 6621, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); - eof = lexer->eof(lexer); switch (state) { case 0: if (eof) ADVANCE(115); - if (lookahead == '!') ADVANCE(984); - if (lookahead == '(') ADVANCE(895); - if (lookahead == ')') ADVANCE(896); - if (lookahead == ',') ADVANCE(136); - if (lookahead == '-') ADVANCE(986); - if (lookahead == '?') ADVANCE(1033); - if (lookahead == '@') ADVANCE(987); - if (lookahead == '{') ADVANCE(985); - if (lookahead == '}') ADVANCE(1031); + if (lookahead == '!') ADVANCE(983); + if (lookahead == '(') ADVANCE(894); + if (lookahead == ')') ADVANCE(895); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '-') ADVANCE(982); + if (lookahead == '?') ADVANCE(1031); + if (lookahead == '@') ADVANCE(985); + if (lookahead == '{') ADVANCE(984); + if (lookahead == '}') ADVANCE(1029); if (lookahead == '"' || - lookahead == '\'') ADVANCE(897); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '\'') ADVANCE(896); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(984); - if (lookahead == '@') ADVANCE(1032); + if (lookahead == '!') ADVANCE(983); + if (lookahead == '@') ADVANCE(1030); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(1) + lookahead == '?') ADVANCE(1031); if (lookahead == '(' || lookahead == ')' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(121); + if (lookahead == '!') ADVANCE(120); END_STATE(); case 3: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1024); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1022); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(3) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 4: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1029); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1027); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(4) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(4) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 5: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(990); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(988); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 6: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(993); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(990); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 7: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(991); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(989); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 8: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1000); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(995); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 9: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(992); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(991); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 10: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(994); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(993); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 11: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(996); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(997); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 12: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(998); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(986); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 13: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1002); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(992); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(988); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(999); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(995); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(994); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 16: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1017); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1001); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1004); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(996); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(997); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1003); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 19: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1019); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(998); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 20: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1006); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1005); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 21: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(999); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1000); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 22: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1008); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1007); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1001); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1002); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 24: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1010); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1017); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 25: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1003); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1004); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 26: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1012); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1009); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 27: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1005); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1006); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 28: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1014); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1011); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 29: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1007); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1008); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 30: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1016); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1013); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 31: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1009); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1010); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 32: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1011); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1014); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 33: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1013); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1012); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(33) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 34: - if (lookahead == '(') ADVANCE(895); + if (lookahead == '(') ADVANCE(894); if (lookahead == '@') ADVANCE(1015); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(34) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 35: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1018); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1016); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 36: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1022); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1019); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(36) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 37: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1020); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1018); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(37) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 38: - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(1023); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(1020); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 39: - if (lookahead == '(') ADVANCE(895); + if (lookahead == '(') ADVANCE(894); if (lookahead == '@') ADVANCE(1021); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(39) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 40: - if (lookahead == '(') ADVANCE(133); - if (lookahead == ')') ADVANCE(896); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(892); - if (lookahead != 0) ADVANCE(894); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(895); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(891); + if (lookahead != 0) ADVANCE(893); END_STATE(); case 41: - if (lookahead == '(') ADVANCE(133); - if (lookahead == ')') ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(893); - if (lookahead != 0) ADVANCE(894); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(892); + if (lookahead != 0) ADVANCE(893); END_STATE(); case 42: - if (lookahead == '(') ADVANCE(133); - if (lookahead == '@') ADVANCE(94); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (lookahead == '(') ADVANCE(132); + if (lookahead == '@') ADVANCE(95); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) END_STATE(); case 43: - if (lookahead == ')') ADVANCE(134); - if (lookahead == ',') ADVANCE(136); - if (lookahead == '?') ADVANCE(1033); - if (lookahead == '@') ADVANCE(1032); + if (lookahead == ')') ADVANCE(133); + if (lookahead == ',') ADVANCE(135); + if (lookahead == '?') ADVANCE(1031); + if (lookahead == '@') ADVANCE(1030); if (lookahead == '"' || - lookahead == '\'') ADVANCE(897); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) + lookahead == '\'') ADVANCE(896); if (lookahead == '!' || lookahead == '(' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(43) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 44: - if (lookahead == ')') ADVANCE(134); - if (lookahead == '@') ADVANCE(1032); + if (lookahead == ')') ADVANCE(133); + if (lookahead == '@') ADVANCE(1030); if (lookahead == '"' || - lookahead == '\'') ADVANCE(897); + lookahead == '\'') ADVANCE(896); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(44) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(44) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 45: - if (lookahead == '-') ADVANCE(986); - if (lookahead == '@') ADVANCE(1032); - if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); - END_STATE(); - case 46: - if (lookahead == '-') ADVANCE(46); + if (lookahead == '-') ADVANCE(45); if (lookahead != 0 && lookahead != '!' && lookahead != '(' && @@ -9020,9917 +8759,9820 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '?' && lookahead != '@' && lookahead != '{' && - lookahead != '}') ADVANCE(1033); + lookahead != '}') ADVANCE(1031); + END_STATE(); + case 46: + if (lookahead == '-') ADVANCE(48); END_STATE(); case 47: - if (lookahead == '-') ADVANCE(116); + if (lookahead == '-') ADVANCE(47); + if (lookahead == '}') ADVANCE(112); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 48: - if (lookahead == '@') ADVANCE(1024); - if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + if (lookahead == '-') ADVANCE(47); + if (lookahead != 0) ADVANCE(48); END_STATE(); case 49: - if (lookahead == '@') ADVANCE(1032); - if (lookahead == '}') ADVANCE(1031); + if (lookahead == '@') ADVANCE(1022); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(49) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '{') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '{' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(49) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 50: - if (lookahead == '@') ADVANCE(1032); + if (lookahead == '@') ADVANCE(1030); + if (lookahead == '}') ADVANCE(1029); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(50) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '{') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(50) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 51: - if (lookahead == '@') ADVANCE(1029); + if (lookahead == '@') ADVANCE(1030); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(51) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(51) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 52: - if (lookahead == '@') ADVANCE(990); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1027); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(52) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '{' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(52) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 53: - if (lookahead == '@') ADVANCE(993); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(988); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(53) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 54: - if (lookahead == '@') ADVANCE(991); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(990); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(54) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(54) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 55: - if (lookahead == '@') ADVANCE(1000); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(989); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 56: - if (lookahead == '@') ADVANCE(992); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(995); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(56) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 57: - if (lookahead == '@') ADVANCE(994); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(991); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(57) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(57) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 58: - if (lookahead == '@') ADVANCE(996); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(993); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(58) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(58) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 59: - if (lookahead == '@') ADVANCE(998); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(997); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(59) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(59) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 60: - if (lookahead == '@') ADVANCE(1002); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1023); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(60) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '{' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(60) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 61: - if (lookahead == '@') ADVANCE(1025); + if (lookahead == '@') ADVANCE(1028); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(61) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(61) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 62: - if (lookahead == '@') ADVANCE(1030); + if (lookahead == '@') ADVANCE(986); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(62) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(62) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 63: - if (lookahead == '@') ADVANCE(988); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(992); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(63) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(63) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 64: - if (lookahead == '@') ADVANCE(995); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(999); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(64) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(64) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 65: - if (lookahead == '@') ADVANCE(1017); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1024); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(65) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '{' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(65) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 66: - if (lookahead == '@') ADVANCE(1004); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(994); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(66) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(66) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 67: - if (lookahead == '@') ADVANCE(1026); + if (lookahead == '@') ADVANCE(1001); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(67) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(67) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 68: - if (lookahead == '@') ADVANCE(997); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1025); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(68) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '{' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(68) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 69: - if (lookahead == '@') ADVANCE(1019); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(996); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(69) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(69) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 70: - if (lookahead == '@') ADVANCE(1006); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1003); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(70) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(70) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 71: - if (lookahead == '@') ADVANCE(1027); + if (lookahead == '@') ADVANCE(1026); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(71) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(71) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 72: - if (lookahead == '@') ADVANCE(999); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(998); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(72) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(72) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 73: - if (lookahead == '@') ADVANCE(1008); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1005); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(73) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(73) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 74: - if (lookahead == '@') ADVANCE(1028); + if (lookahead == '@') ADVANCE(1000); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(74) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '{' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(74) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 75: - if (lookahead == '@') ADVANCE(1001); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1007); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(75) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(75) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 76: - if (lookahead == '@') ADVANCE(1010); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1002); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(76) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(76) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 77: - if (lookahead == '@') ADVANCE(1003); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1017); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(77) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(77) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 78: - if (lookahead == '@') ADVANCE(1012); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1004); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(78) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(78) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 79: - if (lookahead == '@') ADVANCE(1005); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1009); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(79) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(79) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 80: - if (lookahead == '@') ADVANCE(1014); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1006); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(80) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(80) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 81: - if (lookahead == '@') ADVANCE(1007); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1011); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(81) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(81) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 82: - if (lookahead == '@') ADVANCE(1016); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1008); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(82) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(82) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 83: - if (lookahead == '@') ADVANCE(1009); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1013); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(83) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(83) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 84: - if (lookahead == '@') ADVANCE(1011); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1010); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(84) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(84) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 85: - if (lookahead == '@') ADVANCE(1013); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1014); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(85) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(85) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 86: - if (lookahead == '@') ADVANCE(1015); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1012); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(86) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(86) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 87: - if (lookahead == '@') ADVANCE(1018); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1015); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(87) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(87) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 88: - if (lookahead == '@') ADVANCE(1022); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1016); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(88) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(88) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 89: - if (lookahead == '@') ADVANCE(1020); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1019); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(89) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(89) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 90: - if (lookahead == '@') ADVANCE(1023); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1018); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(90) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(90) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 91: - if (lookahead == '@') ADVANCE(1021); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(1020); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(91) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(91) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 92: - if (lookahead == 'a') ADVANCE(105); + if (lookahead == '@') ADVANCE(1021); + if (lookahead == '{') ADVANCE(984); + if (lookahead == ',' || + lookahead == '?') ADVANCE(1031); + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(92) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 93: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'a') ADVANCE(106); END_STATE(); case 94: - if (lookahead == 'c') ADVANCE(92); - if (lookahead == 'd') ADVANCE(97); - if (lookahead == 'e') ADVANCE(103); + if (lookahead == 'a') ADVANCE(109); END_STATE(); case 95: - if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'c') ADVANCE(93); + if (lookahead == 'd') ADVANCE(98); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 96: - if (lookahead == 'd') ADVANCE(104); + if (lookahead == 'c') ADVANCE(101); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'd') ADVANCE(105); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 99: - if (lookahead == 'f') ADVANCE(93); + if (lookahead == 'e') ADVANCE(859); END_STATE(); case 100: - if (lookahead == 'h') ADVANCE(859); + if (lookahead == 'f') ADVANCE(94); END_STATE(); case 101: - if (lookahead == 'i') ADVANCE(107); + if (lookahead == 'h') ADVANCE(858); END_STATE(); case 102: - if (lookahead == 'l') ADVANCE(106); + if (lookahead == 'i') ADVANCE(108); END_STATE(); case 103: - if (lookahead == 'n') ADVANCE(96); + if (lookahead == 'l') ADVANCE(107); END_STATE(); case 104: - if (lookahead == 's') ADVANCE(109); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 105: - if (lookahead == 's') ADVANCE(98); + if (lookahead == 's') ADVANCE(110); END_STATE(); case 106: - if (lookahead == 't') ADVANCE(858); + if (lookahead == 's') ADVANCE(99); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(95); + if (lookahead == 't') ADVANCE(857); END_STATE(); case 108: - if (lookahead == 'u') ADVANCE(102); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 109: - if (lookahead == 'w') ADVANCE(101); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 110: - if (lookahead == '}') ADVANCE(122); + if (lookahead == 'w') ADVANCE(102); END_STATE(); case 111: - if (lookahead == '}') ADVANCE(117); + if (lookahead == '}') ADVANCE(121); END_STATE(); case 112: - if (lookahead == '}') ADVANCE(111); + if (lookahead == '}') ADVANCE(116); END_STATE(); case 113: if (eof) ADVANCE(115); - if (lookahead == '(') ADVANCE(895); - if (lookahead == '@') ADVANCE(989); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '(') ADVANCE(894); + if (lookahead == '@') ADVANCE(987); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(113) - if (lookahead != 0) ADVANCE(1033); + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 114: if (eof) ADVANCE(115); - if (lookahead == '@') ADVANCE(989); - if (lookahead == '{') ADVANCE(985); + if (lookahead == '@') ADVANCE(987); + if (lookahead == '{') ADVANCE(984); if (lookahead == ',' || - lookahead == '?') ADVANCE(1033); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(114) + lookahead == '?') ADVANCE(1031); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(983); - if (lookahead != 0) ADVANCE(1033); + lookahead == '}') ADVANCE(982); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(114) + if (lookahead != 0) ADVANCE(1031); END_STATE(); case 115: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE_DASH_DASH); + ACCEPT_TOKEN(sym_comment); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_DASH_DASH_RBRACE_RBRACE); + ACCEPT_TOKEN(aux_sym_keyword_token1); END_STATE(); case 118: - ACCEPT_TOKEN(aux_sym_keyword_token1); + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + if (lookahead == '-') ADVANCE(46); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); - if (lookahead == '-') ADVANCE(47); + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE_BANG_BANG); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_LBRACE_BANG_BANG); + ACCEPT_TOKEN(anon_sym_BANG_BANG_RBRACE); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_BANG_BANG_RBRACE); + ACCEPT_TOKEN(anon_sym_ATphp); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_ATphp); + ACCEPT_TOKEN(anon_sym_ATendphp); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_ATendphp); + ACCEPT_TOKEN(aux_sym_attribute_token1); END_STATE(); case 125: - ACCEPT_TOKEN(aux_sym_attribute_token1); + ACCEPT_TOKEN(aux_sym__inline_directive_token1); END_STATE(); case 126: ACCEPT_TOKEN(aux_sym__inline_directive_token1); + if (lookahead == 'F') ADVANCE(471); + if (lookahead == 'I') ADVANCE(419); + if (lookahead == 'U') ADVANCE(547); + if (lookahead == 'W') ADVANCE(453); END_STATE(); case 127: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'F') ADVANCE(472); - if (lookahead == 'I') ADVANCE(420); - if (lookahead == 'U') ADVANCE(548); - if (lookahead == 'W') ADVANCE(454); + if (lookahead == 'R') ADVANCE(398); END_STATE(); case 128: - ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'R') ADVANCE(399); - END_STATE(); - case 129: ACCEPT_TOKEN(aux_sym__inline_directive_token1); if (lookahead == 'S') ADVANCE(273); END_STATE(); - case 130: + case 129: ACCEPT_TOKEN(anon_sym_ATfragment); END_STATE(); - case 131: + case 130: ACCEPT_TOKEN(anon_sym_ATendfragment); END_STATE(); - case 132: + case 131: ACCEPT_TOKEN(anon_sym_ATsection); - if (lookahead == 'M') ADVANCE(475); + if (lookahead == 'M') ADVANCE(474); END_STATE(); - case 133: + case 132: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 134: + case 133: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 135: + case 134: ACCEPT_TOKEN(aux_sym_section_token1); END_STATE(); - case 136: + case 135: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 137: + case 136: ACCEPT_TOKEN(anon_sym_ATonce); END_STATE(); - case 138: + case 137: ACCEPT_TOKEN(anon_sym_ATendonce); END_STATE(); - case 139: + case 138: ACCEPT_TOKEN(anon_sym_ATverbatim); END_STATE(); - case 140: + case 139: ACCEPT_TOKEN(anon_sym_ATendverbatim); END_STATE(); - case 141: + case 140: ACCEPT_TOKEN(anon_sym_ATpush); - if (lookahead == 'I') ADVANCE(421); - if (lookahead == 'O') ADVANCE(543); + if (lookahead == 'I') ADVANCE(420); + if (lookahead == 'O') ADVANCE(542); END_STATE(); - case 142: + case 141: ACCEPT_TOKEN(anon_sym_ATendpush); END_STATE(); - case 143: + case 142: ACCEPT_TOKEN(anon_sym_ATpushOnce); END_STATE(); - case 144: + case 143: ACCEPT_TOKEN(anon_sym_ATendPushOnce); END_STATE(); - case 145: + case 144: ACCEPT_TOKEN(anon_sym_ATpushIf); END_STATE(); - case 146: + case 145: ACCEPT_TOKEN(anon_sym_ATendPushIf); END_STATE(); - case 147: + case 146: ACCEPT_TOKEN(anon_sym_ATprepend); - if (lookahead == 'O') ADVANCE(544); + if (lookahead == 'O') ADVANCE(543); END_STATE(); - case 148: + case 147: ACCEPT_TOKEN(anon_sym_ATendprepend); END_STATE(); - case 149: + case 148: ACCEPT_TOKEN(anon_sym_ATprependOnce); END_STATE(); - case 150: + case 149: ACCEPT_TOKEN(anon_sym_ATendPrependOnce); END_STATE(); - case 151: + case 150: ACCEPT_TOKEN(anon_sym_ATelse); - if (lookahead == 'i') ADVANCE(152); + if (lookahead == 'i') ADVANCE(151); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); - case 152: + case 151: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); - if (lookahead == 'f') ADVANCE(153); + if (lookahead == 'f') ADVANCE(152); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); - case 153: + case 152: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); - case 154: + case 153: ACCEPT_TOKEN(anon_sym_ATif); END_STATE(); - case 155: + case 154: ACCEPT_TOKEN(anon_sym_ATendif); END_STATE(); - case 156: + case 155: ACCEPT_TOKEN(anon_sym_ATunless); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(182); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); END_STATE(); - case 157: + case 156: ACCEPT_TOKEN(anon_sym_ATendunless); END_STATE(); - case 158: + case 157: ACCEPT_TOKEN(anon_sym_ATisset); END_STATE(); - case 159: + case 158: ACCEPT_TOKEN(anon_sym_ATendisset); END_STATE(); - case 160: + case 159: ACCEPT_TOKEN(anon_sym_ATempty); END_STATE(); - case 161: + case 160: ACCEPT_TOKEN(anon_sym_ATendempty); END_STATE(); - case 162: + case 161: ACCEPT_TOKEN(anon_sym_ATauth); END_STATE(); - case 163: + case 162: ACCEPT_TOKEN(anon_sym_ATendauth); END_STATE(); - case 164: + case 163: ACCEPT_TOKEN(anon_sym_ATguest); END_STATE(); - case 165: + case 164: ACCEPT_TOKEN(anon_sym_ATendguest); END_STATE(); - case 166: + case 165: ACCEPT_TOKEN(anon_sym_ATproduction); END_STATE(); - case 167: + case 166: ACCEPT_TOKEN(anon_sym_ATendproduction); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(anon_sym_ATenv); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(anon_sym_ATendenv); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(anon_sym_AThasSection); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(anon_sym_ATsectionMissing); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(anon_sym_ATerror); END_STATE(); - case 173: + case 172: ACCEPT_TOKEN(anon_sym_ATenderror); END_STATE(); - case 174: + case 173: ACCEPT_TOKEN(anon_sym_ATcan); - if (lookahead == 'a') ADVANCE(526); - if (lookahead == 'n') ADVANCE(559); + if (lookahead == 'a') ADVANCE(525); + if (lookahead == 'n') ADVANCE(558); END_STATE(); - case 175: + case 174: ACCEPT_TOKEN(anon_sym_ATendcan); END_STATE(); - case 176: + case 175: ACCEPT_TOKEN(anon_sym_ATcannot); END_STATE(); - case 177: + case 176: ACCEPT_TOKEN(anon_sym_ATendcannot); END_STATE(); - case 178: + case 177: ACCEPT_TOKEN(anon_sym_ATcanany); END_STATE(); - case 179: + case 178: ACCEPT_TOKEN(anon_sym_ATendcanany); END_STATE(); - case 180: + case 179: ACCEPT_TOKEN(anon_sym_ATfeature); END_STATE(); - case 181: + case 180: ACCEPT_TOKEN(anon_sym_ATendfeature); END_STATE(); - case 182: + case 181: ACCEPT_TOKEN(aux_sym__custom_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(182); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); + END_STATE(); + case 182: + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'C') ADVANCE(563); + if (lookahead == 's') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(897); END_STATE(); case 183: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'C') ADVANCE(564); - if (lookahead == 's') ADVANCE(118); + if (lookahead == 'I') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 184: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'I') ADVANCE(423); + if (lookahead == 'O') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 185: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'O') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 186: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(547); + if (lookahead == 'P') ADVANCE(827); + if (lookahead == 'a') ADVANCE(786); + if (lookahead == 'b') ADVANCE(768); + if (lookahead == 'c') ADVANCE(753); + if (lookahead == 'e') ADVANCE(805); + if (lookahead == 'f') ADVANCE(770); + if (lookahead == 'g') ADVANCE(850); + if (lookahead == 'i') ADVANCE(784); + if (lookahead == 'o') ADVANCE(808); + if (lookahead == 'p') ADVANCE(773); + if (lookahead == 's') ADVANCE(769); + if (lookahead == 't') ADVANCE(754); + if (lookahead == 'u') ADVANCE(813); + if (lookahead == 'v') ADVANCE(777); + if (lookahead == 'w') ADVANCE(791); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 187: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(828); - if (lookahead == 'a') ADVANCE(787); - if (lookahead == 'b') ADVANCE(769); - if (lookahead == 'c') ADVANCE(754); - if (lookahead == 'e') ADVANCE(806); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'g') ADVANCE(851); - if (lookahead == 'i') ADVANCE(785); - if (lookahead == 'o') ADVANCE(809); - if (lookahead == 'p') ADVANCE(774); - if (lookahead == 's') ADVANCE(770); - if (lookahead == 't') ADVANCE(755); - if (lookahead == 'u') ADVANCE(814); - if (lookahead == 'v') ADVANCE(778); - if (lookahead == 'w') ADVANCE(792); + if (lookahead == 'P') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 188: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(724); + if (lookahead == 'P') ADVANCE(723); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 189: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(628); + if (lookahead == 'P') ADVANCE(724); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 190: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(725); + if (lookahead == 'R') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 191: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'R') ADVANCE(375); + if (lookahead == 'S') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 192: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'S') ADVANCE(387); + if (lookahead == 'T') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 193: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'T') ADVANCE(381); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 194: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(292); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 195: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(306); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(730); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 196: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(731); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(305); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 197: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(322); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(313); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 198: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(314); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(303); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 199: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(304); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(308); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 200: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(316); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(315); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 201: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(308); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(321); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 202: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(315); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(310); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 203: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(329); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(328); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 204: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(311); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 205: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(300); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(299); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 206: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); if (lookahead == 'n') ADVANCE(320); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 207: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(321); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 208: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(331); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(332); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 209: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'l') ADVANCE(644); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(730); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 210: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(731); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 211: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); if (lookahead == 'n') ADVANCE(323); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 212: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(324); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(311); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 213: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(312); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 214: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(317); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(329); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 215: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(327); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(297); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 216: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(330); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(300); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 217: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(299); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(322); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 218: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); if (lookahead == 'n') ADVANCE(301); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 219: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(302); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(318); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 220: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(319); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(327); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 221: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(328); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(325); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 222: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(326); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(302); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(303); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(307); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); if (lookahead == 'n') ADVANCE(309); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(310); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(324); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(325); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(333); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 227: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(334); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(331); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 228: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(332); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == 'n') ADVANCE(334); + if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'x') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 229: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'm') ADVANCE(580); - if (lookahead == 'n') ADVANCE(335); - if (lookahead == 'r') ADVANCE(621); - if (lookahead == 'x') ADVANCE(700); + if (lookahead == 'a') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(434); + if (lookahead == 'a') ADVANCE(306); + if (lookahead == 'q') ADVANCE(718); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 231: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(307); - if (lookahead == 'q') ADVANCE(719); + if (lookahead == 'a') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 232: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(485); + if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'c') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 233: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(261); - if (lookahead == 'c') ADVANCE(560); + if (lookahead == 'a') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(261); + if (lookahead == 'a') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(507); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'h') ADVANCE(370); + if (lookahead == 'l') ADVANCE(243); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == 's') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(514); - if (lookahead == 'h') ADVANCE(371); - if (lookahead == 'l') ADVANCE(244); - if (lookahead == 'o') ADVANCE(527); - if (lookahead == 's') ADVANCE(599); + if (lookahead == 'a') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(632); + if (lookahead == 'a') ADVANCE(608); + if (lookahead == 'e') ADVANCE(603); + if (lookahead == 'h') ADVANCE(577); + if (lookahead == 'r') ADVANCE(368); + if (lookahead == 'u') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 238: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(609); - if (lookahead == 'e') ADVANCE(604); - if (lookahead == 'h') ADVANCE(578); - if (lookahead == 'r') ADVANCE(369); - if (lookahead == 'u') ADVANCE(641); + if (lookahead == 'a') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 239: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(510); + if (lookahead == 'a') ADVANCE(632); + if (lookahead == 'e') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 240: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(633); - if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'a') ADVANCE(632); + if (lookahead == 'e') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 241: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(633); - if (lookahead == 'e') ADVANCE(499); + if (lookahead == 'a') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 242: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'a') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 243: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(694); + if (lookahead == 'a') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 244: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(649); + if (lookahead == 'a') ADVANCE(265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(266); + if (lookahead == 'a') ADVANCE(720); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(721); + if (lookahead == 'a') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(542); + if (lookahead == 'a') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 248: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(529); + if (lookahead == 'a') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(536); + if (lookahead == 'a') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(643); + if (lookahead == 'a') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(521); + if (lookahead == 'a') ADVANCE(610); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(611); + if (lookahead == 'a') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(275); + if (lookahead == 'a') ADVANCE(267); + if (lookahead == 'l') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(268); - if (lookahead == 'l') ADVANCE(662); + if (lookahead == 'a') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 255: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(701); + if (lookahead == 'a') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 256: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(703); + if (lookahead == 'a') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 257: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(274); + if (lookahead == 'a') ADVANCE(710); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 258: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(711); + if (lookahead == 'a') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 259: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(438); + if (lookahead == 'b') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 260: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(255); + if (lookahead == 'b') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 261: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(497); + if (lookahead == 'b') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(256); + if (lookahead == 'c') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(441); + if (lookahead == 'c') ADVANCE(491); + if (lookahead == 'j') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 264: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(492); - if (lookahead == 'j') ADVANCE(380); + if (lookahead == 'c') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 265: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(489); + if (lookahead == 'c') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 266: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(486); + if (lookahead == 'c') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 267: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(444); + if (lookahead == 'c') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(247); + if (lookahead == 'c') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(346); + if (lookahead == 'c') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(446); + if (lookahead == 'c') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(674); + if (lookahead == 'c') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(608); - if (lookahead == 't') ADVANCE(748); + if (lookahead == 'c') ADVANCE(607); + if (lookahead == 't') ADVANCE(747); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(449); + if (lookahead == 'c') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(684); + if (lookahead == 'c') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(358); + if (lookahead == 'c') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(362); + if (lookahead == 'c') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(601); + if (lookahead == 'c') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(287); + if (lookahead == 'c') ADVANCE(698); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'r') ADVANCE(734); + if (lookahead == 't') ADVANCE(717); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(699); - if (lookahead == 'l') ADVANCE(383); - if (lookahead == 'r') ADVANCE(735); - if (lookahead == 't') ADVANCE(718); + if (lookahead == 'c') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(249); + if (lookahead == 'c') ADVANCE(704); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(705); + if (lookahead == 'c') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(251); + if (lookahead == 'c') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(405); + if (lookahead == 'c') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'c') ADVANCE(714); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'd') ADVANCE(186); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(187); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(126); + if (lookahead == 'd') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(125); + if (lookahead == 'd') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(885); + if (lookahead == 'd') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(147); + if (lookahead == 'd') ADVANCE(882); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(883); + if (lookahead == 'd') ADVANCE(188); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(148); + if (lookahead == 'd') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(188); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(749); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(750); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(187); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(189); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(738); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(739); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(733); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(734); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(436); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(437); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(727); + if (lookahead == 'p') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(728); - if (lookahead == 'p') ADVANCE(635); + if (lookahead == 'd') ADVANCE(587); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(588); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(556); + if (lookahead == 'd') ADVANCE(580); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(730); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(729); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(581); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(591); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(591); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(428); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(429); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(576); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(577); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'd') ADVANCE(270); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(269); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(245); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(246); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(463); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(464); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(665); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(666); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(354); + if (lookahead == 'd') ADVANCE(707); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(708); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(373); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(372); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(394); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(390); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(391); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(427); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(428); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(735); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(736); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(586); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(587); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(705); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(706); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(671); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(672); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(662); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(663); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(467); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(429); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(430); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(283); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(284); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(430); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(431); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(285); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(286); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(431); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(432); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(189); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(190); - if (lookahead == 'v') ADVANCE(168); + if (lookahead == 'd') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(186); + if (lookahead == 'd') ADVANCE(728); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(729); + if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'r') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(424); - if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'r') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(424); - if (lookahead == 'r') ADVANCE(385); + if (lookahead == 'e') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'h') ADVANCE(549); + if (lookahead == 'l') ADVANCE(244); + if (lookahead == 't') ADVANCE(552); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == 'w') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(283); - if (lookahead == 'h') ADVANCE(550); - if (lookahead == 'l') ADVANCE(245); - if (lookahead == 't') ADVANCE(553); - if (lookahead == 'u') ADVANCE(282); - if (lookahead == 'w') ADVANCE(462); + if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'h') ADVANCE(549); + if (lookahead == 't') ADVANCE(552); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == 'w') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(283); - if (lookahead == 'h') ADVANCE(550); - if (lookahead == 't') ADVANCE(553); - if (lookahead == 'u') ADVANCE(282); - if (lookahead == 'w') ADVANCE(462); + if (lookahead == 'e') ADVANCE(282); + if (lookahead == 't') ADVANCE(552); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == 'w') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(283); - if (lookahead == 't') ADVANCE(553); - if (lookahead == 'u') ADVANCE(282); - if (lookahead == 'w') ADVANCE(462); + if (lookahead == 'e') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'e') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'e') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'e') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(436); + if (lookahead == 'e') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'e') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'e') ADVANCE(868); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(869); + if (lookahead == 'e') ADVANCE(876); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(877); + if (lookahead == 'e') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'e') ADVANCE(866); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(867); + if (lookahead == 'e') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'e') ADVANCE(861); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(862); + if (lookahead == 'e') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'e') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'e') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'e') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'e') ADVANCE(137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(138); + if (lookahead == 'e') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'e') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'e') ADVANCE(867); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(868); + if (lookahead == 'e') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(870); + if (lookahead == 'e') ADVANCE(737); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(738); + if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'i') ADVANCE(537); + if (lookahead == 'o') ADVANCE(592); + if (lookahead == 'r') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(243); - if (lookahead == 'i') ADVANCE(538); - if (lookahead == 'o') ADVANCE(593); - if (lookahead == 'r') ADVANCE(230); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'i') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(695); - if (lookahead == 'i') ADVANCE(281); + if (lookahead == 'e') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(695); + if (lookahead == 'e') ADVANCE(581); + if (lookahead == 'o') ADVANCE(304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(582); - if (lookahead == 'o') ADVANCE(305); + if (lookahead == 'e') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(490); + if (lookahead == 'e') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'e') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(294); + if (lookahead == 'e') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'e') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(232); + if (lookahead == 'e') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'e') ADVANCE(593); + if (lookahead == 'i') ADVANCE(703); + if (lookahead == 'o') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(594); - if (lookahead == 'i') ADVANCE(704); - if (lookahead == 'o') ADVANCE(493); + if (lookahead == 'e') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(525); + if (lookahead == 'e') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(648); + if (lookahead == 'e') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(272); + if (lookahead == 'e') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'e') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(595); + if (lookahead == 'e') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'e') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'e') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'e') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'e') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 'e') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(678); + if (lookahead == 'e') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'e') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(515); + if (lookahead == 'e') ADVANCE(625); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(626); + if (lookahead == 'e') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(634); + if (lookahead == 'e') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(688); + if (lookahead == 'e') ADVANCE(686); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'e') ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'e') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'e') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(534); + if (lookahead == 'e') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(585); + if (lookahead == 'e') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(253); + if (lookahead == 'e') ADVANCE(606); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(607); + if (lookahead == 'e') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'e') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(535); + if (lookahead == 'e') ADVANCE(646); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(647); + if (lookahead == 'e') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(586); + if (lookahead == 'e') ADVANCE(654); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(656); + if (lookahead == 'e') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(537); + if (lookahead == 'e') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'e') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(651); + if (lookahead == 'e') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(660); + if (lookahead == 'e') ADVANCE(589); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'e') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'e') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'e') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(627); + if (lookahead == 'e') ADVANCE(628); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(629); + if (lookahead == 'e') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(506); + if (lookahead == 'e') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(291); + if (lookahead == 'f') ADVANCE(696); + if (lookahead == 'u') ADVANCE(692); + if (lookahead == 'w') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(697); - if (lookahead == 'u') ADVANCE(693); - if (lookahead == 'w') ADVANCE(252); + if (lookahead == 'f') ADVANCE(153); + if (lookahead == 'm') ADVANCE(588); + if (lookahead == 'n') ADVANCE(263); + if (lookahead == 's') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(154); - if (lookahead == 'm') ADVANCE(589); - if (lookahead == 'n') ADVANCE(264); - if (lookahead == 's') ADVANCE(646); + if (lookahead == 'f') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(118); + if (lookahead == 'f') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(126); + if (lookahead == 'f') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(145); + if (lookahead == 'f') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(155); + if (lookahead == 'f') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(146); + if (lookahead == 'f') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(574); + if (lookahead == 'f') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(458); + if (lookahead == 'f') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(623); + if (lookahead == 'f') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(683); + if (lookahead == 'f') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(630); + if (lookahead == 'f') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(412); + if (lookahead == 'f') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'f') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(568); + if (lookahead == 'f') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(576); + if (lookahead == 'g') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(118); + if (lookahead == 'g') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(512); + if (lookahead == 'g') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(171); + if (lookahead == 'g') ADVANCE(602); + if (lookahead == 'p') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(603); - if (lookahead == 'p') ADVANCE(573); + if (lookahead == 'g') ADVANCE(726); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(727); + if (lookahead == 'g') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(513); + if (lookahead == 'h') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(162); + if (lookahead == 'h') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(118); + if (lookahead == 'h') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(126); + if (lookahead == 'h') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(141); + if (lookahead == 'h') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(857); + if (lookahead == 'h') ADVANCE(864); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(865); + if (lookahead == 'h') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(163); + if (lookahead == 'h') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(859); + if (lookahead == 'h') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(142); + if (lookahead == 'h') ADVANCE(865); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(185); + if (lookahead == 'h') ADVANCE(184); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(866); + if (lookahead == 'h') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(184); + if (lookahead == 'h') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(551); + if (lookahead == 'h') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(474); + if (lookahead == 'h') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(384); + if (lookahead == 'h') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(390); + if (lookahead == 'h') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(481); + if (lookahead == 'i') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(631); + if (lookahead == 'i') ADVANCE(732); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'i') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(433); + if (lookahead == 'i') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(508); + if (lookahead == 'i') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(370); + if (lookahead == 'i') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'i') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(707); + if (lookahead == 'i') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(539); + if (lookahead == 'i') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'i') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(522); + if (lookahead == 'i') ADVANCE(649); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(650); + if (lookahead == 'i') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(670); + if (lookahead == 'i') ADVANCE(582); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(583); + if (lookahead == 'i') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(642); + if (lookahead == 'i') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(558); + if (lookahead == 'i') ADVANCE(656); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(657); + if (lookahead == 'i') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(622); + if (lookahead == 'i') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(562); + if (lookahead == 'i') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'i') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(658); + if (lookahead == 'i') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(563); + if (lookahead == 'i') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(614); + if (lookahead == 'i') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(616); + if (lookahead == 'i') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(566); + if (lookahead == 'i') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(664); + if (lookahead == 'i') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(500); + if (lookahead == 'i') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(571); + if (lookahead == 'i') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(709); + if (lookahead == 'k') ADVANCE(872); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(873); + if (lookahead == 'k') ADVANCE(860); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(861); + if (lookahead == 'k') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(885); + if (lookahead == 'k') ADVANCE(861); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(862); + if (lookahead == 'k') ADVANCE(873); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(874); + if (lookahead == 'k') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'l') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(293); + if (lookahead == 'l') ADVANCE(740); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(741); + if (lookahead == 'l') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(717); + if (lookahead == 'l') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(676); + if (lookahead == 'l') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(347); + if (lookahead == 'l') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'l') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(350); + if (lookahead == 'l') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(372); + if (lookahead == 'l') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(692); + if (lookahead == 'l') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(410); + if (lookahead == 'l') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'l') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(401); + if (lookahead == 'l') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'l') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(665); + if (lookahead == 'l') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'l') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(409); + if (lookahead == 'l') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'm') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(885); + if (lookahead == 'm') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'm') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(140); + if (lookahead == 'm') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(637); + if (lookahead == 'm') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(584); + if (lookahead == 'm') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'm') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(406); + if (lookahead == 'n') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'n') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(135); + if (lookahead == 'n') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'n') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'n') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(167); + if (lookahead == 'n') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(175); + if (lookahead == 'n') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(435); + if (lookahead == 'n') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 523: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'n') ADVANCE(731); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(732); + if (lookahead == 'n') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(313); + if (lookahead == 'n') ADVANCE(743); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(744); + if (lookahead == 'n') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(696); + if (lookahead == 'n') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(491); + if (lookahead == 'n') ADVANCE(744); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(745); + if (lookahead == 'n') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(425); + if (lookahead == 'n') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(296); + if (lookahead == 'n') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(336); + if (lookahead == 'n') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(673); + if (lookahead == 'n') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(681); + if (lookahead == 'n') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(541); + if (lookahead == 'n') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(689); + if (lookahead == 'n') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(469); + if (lookahead == 'n') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(720); + if (lookahead == 'n') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 540: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(501); + if (lookahead == 'n') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 541: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(570); + if (lookahead == 'n') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(248); + if (lookahead == 'n') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(280); + if (lookahead == 'n') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'n') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(505); + if (lookahead == 'o') ADVANCE(736); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(737); + if (lookahead == 'o') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(293); + if (lookahead == 'o') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(599); + if (lookahead == 'y') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(600); - if (lookahead == 'y') ADVANCE(495); + if (lookahead == 'o') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(596); + if (lookahead == 'o') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(337); + if (lookahead == 'o') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(528); + if (lookahead == 'o') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(610); + if (lookahead == 'o') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(517); + if (lookahead == 'o') ADVANCE(678); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(679); + if (lookahead == 'o') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(602); + if (lookahead == 'o') ADVANCE(644); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(645); + if (lookahead == 'o') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'o') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(519); + if (lookahead == 'o') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(530); + if (lookahead == 'o') ADVANCE(596); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(597); + if (lookahead == 'o') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(520); + if (lookahead == 'o') ADVANCE(623); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(598); + if (lookahead == 'o') ADVANCE(597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(624); + if (lookahead == 'o') ADVANCE(605); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(606); + if (lookahead == 'o') ADVANCE(687); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(687); + if (lookahead == 'o') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(516); + if (lookahead == 'o') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'o') ADVANCE(611); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'o') ADVANCE(612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(613); + if (lookahead == 'o') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(617); + if (lookahead == 'o') ADVANCE(619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(620); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(545); + if (lookahead == 'p') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(123); + if (lookahead == 'p') ADVANCE(870); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(871); + if (lookahead == 'p') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(675); + if (lookahead == 'p') ADVANCE(722); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(723); + if (lookahead == 'p') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(386); + if (lookahead == 'p') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(685); + if (lookahead == 'p') ADVANCE(697); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(698); + if (lookahead == 'p') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'p') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(396); + if (lookahead == 'p') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(413); + if (lookahead == 'p') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(605); + if (lookahead == 'p') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(557); + if (lookahead == 'p') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(573); + if (lookahead == 'p') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(619); + if (lookahead == 'p') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(575); + if (lookahead == 'r') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(863); + if (lookahead == 'r') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(260); + if (lookahead == 'r') ADVANCE(878); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 595: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(879); + if (lookahead == 'r') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 596: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'r') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 597: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'r') ADVANCE(863); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 598: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(864); + if (lookahead == 'r') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 599: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(742); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 600: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(743); + if (lookahead == 'r') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 601: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(561); + if (lookahead == 'r') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 602: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(295); + if (lookahead == 'r') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 603: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(235); + if (lookahead == 'r') ADVANCE(668); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 604: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(669); + if (lookahead == 'r') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 605: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(555); + if (lookahead == 'r') ADVANCE(746); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 606: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(747); + if (lookahead == 'r') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 607: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(635); + if (lookahead == 'r') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 608: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(468); + if (lookahead == 'r') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 609: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(397); + if (lookahead == 'r') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 610: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(674); + if (lookahead == 'r') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 611: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(344); + if (lookahead == 'r') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 612: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(682); + if (lookahead == 'r') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 613: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(351); + if (lookahead == 'r') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 614: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(372); + if (lookahead == 'r') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 615: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(352); + if (lookahead == 'r') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 616: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(356); + if (lookahead == 'r') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 617: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(691); + if (lookahead == 'r') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(359); + if (lookahead == 'r') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 619: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(398); + if (lookahead == 'r') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 620: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(377); + if (lookahead == 'r') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 621: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(554); + if (lookahead == 'r') ADVANCE(652); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 622: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(653); + if (lookahead == 'r') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 623: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(403); + if (lookahead == 'r') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 624: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(389); + if (lookahead == 'r') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 625: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(565); + if (lookahead == 'r') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 626: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(625); + if (lookahead == 'r') ADVANCE(670); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 627: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(671); + if (lookahead == 'r') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 628: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(404); + if (lookahead == 'r') ADVANCE(261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 629: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(262); + if (lookahead == 'r') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 630: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(259); + if (lookahead == 's') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 631: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(233); + if (lookahead == 's') ADVANCE(191); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 632: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(192); + if (lookahead == 's') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 633: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(484); + if (lookahead == 's') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 634: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(118); + if (lookahead == 's') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 635: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(126); + if (lookahead == 's') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(125); + if (lookahead == 's') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(885); + if (lookahead == 's') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 638: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(156); + if (lookahead == 's') ADVANCE(880); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 639: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(881); + if (lookahead == 's') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 640: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(157); + if (lookahead == 's') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 641: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(442); + if (lookahead == 's') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 642: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(453); + if (lookahead == 's') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 643: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(488); + if (lookahead == 's') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 644: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(345); + if (lookahead == 's') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 645: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(552); + if (lookahead == 's') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 646: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(388); + if (lookahead == 's') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 647: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(440); + if (lookahead == 's') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 648: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(677); + if (lookahead == 's') ADVANCE(635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 649: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(636); + if (lookahead == 's') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 650: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(234); + if (lookahead == 's') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 651: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(635); + if (lookahead == 's') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 652: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(447); + if (lookahead == 's') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 653: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(674); + if (lookahead == 's') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 654: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 's') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 655: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 's') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 656: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(639); + if (lookahead == 's') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 657: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(680); + if (lookahead == 's') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 658: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(667); + if (lookahead == 's') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 659: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(450); + if (lookahead == 's') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 660: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(640); + if (lookahead == 's') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 661: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(686); + if (lookahead == 's') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 662: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(353); + if (lookahead == 's') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 663: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(710); + if (lookahead == 's') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(690); + if (lookahead == 's') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 665: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(363); + if (lookahead == 's') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 666: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(740); + if (lookahead == 's') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(465); + if (lookahead == 's') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(393); + if (lookahead == 's') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(471); + if (lookahead == 's') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 670: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(668); + if (lookahead == 's') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 671: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(416); + if (lookahead == 't') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(118); + if (lookahead == 't') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(126); + if (lookahead == 't') ADVANCE(741); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 675: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(742); + if (lookahead == 't') ADVANCE(889); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 676: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(890); + if (lookahead == 't') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 677: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(164); + if (lookahead == 't') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 678: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(158); + if (lookahead == 't') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 679: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(176); + if (lookahead == 't') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 680: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(886); + if (lookahead == 't') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 681: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(130); + if (lookahead == 't') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 682: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(888); + if (lookahead == 't') ADVANCE(192); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 683: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(193); + if (lookahead == 't') ADVANCE(190); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 684: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(191); + if (lookahead == 't') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 685: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(183); + if (lookahead == 't') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 686: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(165); + if (lookahead == 't') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 687: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(177); + if (lookahead == 't') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 688: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(159); + if (lookahead == 't') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 689: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(131); + if (lookahead == 't') ADVANCE(886); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 690: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(887); + if (lookahead == 't') ADVANCE(888); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(889); + if (lookahead == 't') ADVANCE(890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(891); + if (lookahead == 't') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(439); + if (lookahead == 't') ADVANCE(721); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(722); + if (lookahead == 't') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(451); + if (lookahead == 't') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(463); + if (lookahead == 't') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(745); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(746); + if (lookahead == 't') ADVANCE(469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(470); + if (lookahead == 't') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(378); + if (lookahead == 't') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(459); + if (lookahead == 't') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(445); + if (lookahead == 't') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(461); + if (lookahead == 't') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(372); + if (lookahead == 't') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(415); + if (lookahead == 't') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(267); + if (lookahead == 't') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(250); + if (lookahead == 't') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(271); + if (lookahead == 't') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(569); + if (lookahead == 't') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(726); + if (lookahead == 't') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(473); + if (lookahead == 't') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(476); + if (lookahead == 't') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(479); + if (lookahead == 't') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(482); + if (lookahead == 'u') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(379); + if (lookahead == 'u') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(318); + if (lookahead == 'u') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(579); + if (lookahead == 'u') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(477); + if (lookahead == 'u') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(355); + if (lookahead == 'u') ADVANCE(701); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(702); + if (lookahead == 'u') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(615); + if (lookahead == 'u') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(652); + if (lookahead == 'u') ADVANCE(655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(655); + if (lookahead == 'u') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(659); + if (lookahead == 'u') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(618); + if (lookahead == 'u') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(407); + if (lookahead == 'u') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'u') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(290); + if (lookahead == 'u') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(549); + if (lookahead == 'v') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'v') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(169); + if (lookahead == 'v') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(365); + if (lookahead == 'v') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(572); + if (lookahead == 'v') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(400); + if (lookahead == 'v') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(414); + if (lookahead == 'w') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(135); + if (lookahead == 'w') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(478); + if (lookahead == 'w') ADVANCE(454); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(455); + if (lookahead == 'w') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(483); + if (lookahead == 'y') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(125); + if (lookahead == 'y') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(160); + if (lookahead == 'y') ADVANCE(874); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(875); + if (lookahead == 'y') ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym__custom_token2); if (lookahead == 'y') ADVANCE(178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(179); + if (lookahead == 'y') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(161); + if (lookahead == 'y') ADVANCE(875); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(876); + if (lookahead == 'y') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 750: - ACCEPT_TOKEN(aux_sym__custom_token2); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'I') ADVANCE(785); + if (lookahead == 'O') ADVANCE(808); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(898); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'I') ADVANCE(786); - if (lookahead == 'O') ADVANCE(809); + if (lookahead == 'O') ADVANCE(808); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'O') ADVANCE(809); + if (lookahead == 'a') ADVANCE(788); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(789); + if (lookahead == 'a') ADVANCE(807); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(808); + if (lookahead == 'a') ADVANCE(833); + if (lookahead == 'e') ADVANCE(802); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(834); - if (lookahead == 'e') ADVANCE(803); + if (lookahead == 'a') ADVANCE(843); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(844); + if (lookahead == 'a') ADVANCE(848); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(849); + if (lookahead == 'b') ADVANCE(756); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'b') ADVANCE(757); + if (lookahead == 'c') ADVANCE(789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'c') ADVANCE(847); + if (lookahead == 't') ADVANCE(849); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(848); - if (lookahead == 't') ADVANCE(850); + if (lookahead == 'c') ADVANCE(847); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(848); + if (lookahead == 'c') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(768); + if (lookahead == 'c') ADVANCE(763); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(764); + if (lookahead == 'c') ADVANCE(780); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(781); + if (lookahead == 'd') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(856); + if (lookahead == 'd') ADVANCE(751); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(752); + if (lookahead == 'd') ADVANCE(851); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(852); + if (lookahead == 'e') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(856); + if (lookahead == 'e') ADVANCE(787); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'e') ADVANCE(759); + if (lookahead == 't') ADVANCE(816); + if (lookahead == 'u') ADVANCE(762); + if (lookahead == 'w') ADVANCE(796); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(760); - if (lookahead == 't') ADVANCE(817); - if (lookahead == 'u') ADVANCE(763); - if (lookahead == 'w') ADVANCE(797); + if (lookahead == 'e') ADVANCE(755); + if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'o') ADVANCE(824); + if (lookahead == 'r') ADVANCE(752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(756); - if (lookahead == 'i') ADVANCE(811); - if (lookahead == 'o') ADVANCE(825); - if (lookahead == 'r') ADVANCE(753); + if (lookahead == 'e') ADVANCE(824); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(825); + if (lookahead == 'e') ADVANCE(821); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(822); + if (lookahead == 'e') ADVANCE(828); + if (lookahead == 'h') ADVANCE(819); + if (lookahead == 'r') ADVANCE(783); + if (lookahead == 'u') ADVANCE(835); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(829); - if (lookahead == 'h') ADVANCE(820); - if (lookahead == 'r') ADVANCE(784); - if (lookahead == 'u') ADVANCE(836); + if (lookahead == 'e') ADVANCE(764); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(765); + if (lookahead == 'e') ADVANCE(840); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(841); + if (lookahead == 'e') ADVANCE(823); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(824); + if (lookahead == 'e') ADVANCE(825); + if (lookahead == 'o') ADVANCE(801); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(826); - if (lookahead == 'o') ADVANCE(802); + if (lookahead == 'e') ADVANCE(809); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(810); + if (lookahead == 'e') ADVANCE(811); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(812); + if (lookahead == 'e') ADVANCE(839); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(840); + if (lookahead == 'e') ADVANCE(812); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(813); + if (lookahead == 'e') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(842); + if (lookahead == 'e') ADVANCE(822); + if (lookahead == 'o') ADVANCE(766); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(823); - if (lookahead == 'o') ADVANCE(767); + if (lookahead == 'f') ADVANCE(855); + if (lookahead == 's') ADVANCE(838); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(856); - if (lookahead == 's') ADVANCE(839); + if (lookahead == 'f') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(856); + if (lookahead == 'f') ADVANCE(846); + if (lookahead == 'u') ADVANCE(844); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(847); - if (lookahead == 'u') ADVANCE(845); + if (lookahead == 'f') ADVANCE(817); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(818); + if (lookahead == 'g') ADVANCE(806); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'g') ADVANCE(807); + if (lookahead == 'h') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(856); + if (lookahead == 'h') ADVANCE(750); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(751); + if (lookahead == 'h') ADVANCE(798); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(799); + if (lookahead == 'h') ADVANCE(774); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(775); + if (lookahead == 'i') ADVANCE(815); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(816); + if (lookahead == 'i') ADVANCE(804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(805); + if (lookahead == 'i') ADVANCE(840); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(841); + if (lookahead == 'i') ADVANCE(845); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(846); + if (lookahead == 'i') ADVANCE(836); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(837); + if (lookahead == 'i') ADVANCE(800); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(801); + if (lookahead == 'k') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'k') ADVANCE(856); + if (lookahead == 'l') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(768); + if (lookahead == 'l') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(842); + if (lookahead == 'l') ADVANCE(776); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(777); + if (lookahead == 'l') ADVANCE(780); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(781); + if (lookahead == 'm') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(856); + if (lookahead == 'm') ADVANCE(820); + if (lookahead == 'n') ADVANCE(853); + if (lookahead == 'r') ADVANCE(831); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(821); - if (lookahead == 'n') ADVANCE(854); - if (lookahead == 'r') ADVANCE(832); + if (lookahead == 'm') ADVANCE(781); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(782); + if (lookahead == 'n') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(856); + if (lookahead == 'n') ADVANCE(761); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(762); + if (lookahead == 'n') ADVANCE(765); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(766); + if (lookahead == 'n') ADVANCE(797); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(798); + if (lookahead == 'n') ADVANCE(764); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(765); + if (lookahead == 'n') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(842); + if (lookahead == 'n') ADVANCE(803); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(804); + if (lookahead == 'o') ADVANCE(824); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(825); + if (lookahead == 'o') ADVANCE(807); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(808); + if (lookahead == 'o') ADVANCE(826); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(827); + if (lookahead == 'o') ADVANCE(829); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym__custom_token3); if (lookahead == 'o') ADVANCE(830); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(831); + if (lookahead == 'p') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(856); + if (lookahead == 'p') ADVANCE(842); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(843); + if (lookahead == 'p') ADVANCE(778); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym__custom_token3); if (lookahead == 'p') ADVANCE(779); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(780); + if (lookahead == 'p') ADVANCE(818); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(819); + if (lookahead == 'r') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 825: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(856); + if (lookahead == 'r') ADVANCE(757); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(758); + if (lookahead == 'r') ADVANCE(854); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 'r') ADVANCE(772); + if (lookahead == 'u') ADVANCE(834); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(773); - if (lookahead == 'u') ADVANCE(835); + if (lookahead == 'r') ADVANCE(837); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(838); + if (lookahead == 'r') ADVANCE(767); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(768); + if (lookahead == 'r') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(842); + if (lookahead == 'r') ADVANCE(814); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(815); + if (lookahead == 's') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(856); + if (lookahead == 's') ADVANCE(799); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(800); + if (lookahead == 's') ADVANCE(790); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(791); + if (lookahead == 's') ADVANCE(789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(790); + if (lookahead == 's') ADVANCE(792); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(793); + if (lookahead == 's') ADVANCE(795); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(796); + if (lookahead == 's') ADVANCE(782); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(783); + if (lookahead == 's') ADVANCE(832); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(833); + if (lookahead == 's') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(842); + if (lookahead == 't') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(856); + if (lookahead == 't') ADVANCE(854); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(855); + if (lookahead == 't') ADVANCE(852); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(853); + if (lookahead == 't') ADVANCE(789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(790); + if (lookahead == 't') ADVANCE(758); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(759); + if (lookahead == 't') ADVANCE(771); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(772); + if (lookahead == 't') ADVANCE(793); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym__custom_token3); if (lookahead == 't') ADVANCE(794); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(795); + if (lookahead == 'u') ADVANCE(819); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(820); + if (lookahead == 'u') ADVANCE(775); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(776); + if (lookahead == 'u') ADVANCE(760); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(761); + if (lookahead == 'u') ADVANCE(829); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(830); + if (lookahead == 'v') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'v') ADVANCE(856); + if (lookahead == 'y') ADVANCE(855); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'y') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(855); END_STATE(); case 856: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(856); + ACCEPT_TOKEN(anon_sym_ATswitch); END_STATE(); case 857: - ACCEPT_TOKEN(anon_sym_ATswitch); + ACCEPT_TOKEN(anon_sym_ATdefault); END_STATE(); case 858: - ACCEPT_TOKEN(anon_sym_ATdefault); + ACCEPT_TOKEN(anon_sym_ATendswitch); END_STATE(); case 859: - ACCEPT_TOKEN(anon_sym_ATendswitch); + ACCEPT_TOKEN(anon_sym_ATcase); END_STATE(); case 860: - ACCEPT_TOKEN(anon_sym_ATcase); + ACCEPT_TOKEN(anon_sym_ATbreak); END_STATE(); case 861: - ACCEPT_TOKEN(anon_sym_ATbreak); + ACCEPT_TOKEN(aux_sym_loop_operator_token1); END_STATE(); case 862: - ACCEPT_TOKEN(aux_sym_loop_operator_token1); + ACCEPT_TOKEN(anon_sym_ATfor); + if (lookahead == 'e') ADVANCE(253); END_STATE(); case 863: - ACCEPT_TOKEN(anon_sym_ATfor); - if (lookahead == 'e') ADVANCE(254); + ACCEPT_TOKEN(anon_sym_ATendfor); END_STATE(); case 864: - ACCEPT_TOKEN(anon_sym_ATendfor); + ACCEPT_TOKEN(anon_sym_ATforeach); END_STATE(); case 865: - ACCEPT_TOKEN(anon_sym_ATforeach); + ACCEPT_TOKEN(anon_sym_ATendforeach); END_STATE(); case 866: - ACCEPT_TOKEN(anon_sym_ATendforeach); + ACCEPT_TOKEN(anon_sym_ATforelse); END_STATE(); case 867: - ACCEPT_TOKEN(anon_sym_ATforelse); + ACCEPT_TOKEN(anon_sym_ATendforelse); END_STATE(); case 868: - ACCEPT_TOKEN(anon_sym_ATendforelse); + ACCEPT_TOKEN(anon_sym_ATwhile); END_STATE(); case 869: - ACCEPT_TOKEN(anon_sym_ATwhile); + ACCEPT_TOKEN(anon_sym_ATendwhile); END_STATE(); case 870: - ACCEPT_TOKEN(anon_sym_ATendwhile); + ACCEPT_TOKEN(anon_sym_ATsetup); END_STATE(); case 871: - ACCEPT_TOKEN(anon_sym_ATsetup); + ACCEPT_TOKEN(anon_sym_ATendsetup); END_STATE(); case 872: - ACCEPT_TOKEN(anon_sym_ATendsetup); + ACCEPT_TOKEN(anon_sym_ATtask); END_STATE(); case 873: - ACCEPT_TOKEN(anon_sym_ATtask); + ACCEPT_TOKEN(anon_sym_ATendtask); END_STATE(); case 874: - ACCEPT_TOKEN(anon_sym_ATendtask); + ACCEPT_TOKEN(anon_sym_ATstory); END_STATE(); case 875: - ACCEPT_TOKEN(anon_sym_ATstory); + ACCEPT_TOKEN(anon_sym_ATendstory); END_STATE(); case 876: - ACCEPT_TOKEN(anon_sym_ATendstory); + ACCEPT_TOKEN(anon_sym_ATbefore); END_STATE(); case 877: - ACCEPT_TOKEN(anon_sym_ATbefore); + ACCEPT_TOKEN(anon_sym_ATendbefore); END_STATE(); case 878: - ACCEPT_TOKEN(anon_sym_ATendbefore); + ACCEPT_TOKEN(anon_sym_ATafter); END_STATE(); case 879: - ACCEPT_TOKEN(anon_sym_ATafter); + ACCEPT_TOKEN(anon_sym_ATendafter); END_STATE(); case 880: - ACCEPT_TOKEN(anon_sym_ATendafter); + ACCEPT_TOKEN(anon_sym_ATsuccess); END_STATE(); case 881: - ACCEPT_TOKEN(anon_sym_ATsuccess); + ACCEPT_TOKEN(anon_sym_ATendsuccess); END_STATE(); case 882: - ACCEPT_TOKEN(anon_sym_ATendsuccess); + ACCEPT_TOKEN(anon_sym_ATfinished); END_STATE(); case 883: - ACCEPT_TOKEN(anon_sym_ATfinished); + ACCEPT_TOKEN(anon_sym_ATendfinished); END_STATE(); case 884: - ACCEPT_TOKEN(anon_sym_ATendfinished); + ACCEPT_TOKEN(aux_sym__notification_token1); END_STATE(); case 885: - ACCEPT_TOKEN(aux_sym__notification_token1); + ACCEPT_TOKEN(anon_sym_ATpersist); END_STATE(); case 886: - ACCEPT_TOKEN(anon_sym_ATpersist); + ACCEPT_TOKEN(anon_sym_ATendpersist); END_STATE(); case 887: - ACCEPT_TOKEN(anon_sym_ATendpersist); + ACCEPT_TOKEN(anon_sym_ATteleport); END_STATE(); case 888: - ACCEPT_TOKEN(anon_sym_ATteleport); + ACCEPT_TOKEN(anon_sym_ATendteleport); END_STATE(); case 889: - ACCEPT_TOKEN(anon_sym_ATendteleport); + ACCEPT_TOKEN(anon_sym_ATvolt); END_STATE(); case 890: - ACCEPT_TOKEN(anon_sym_ATvolt); + ACCEPT_TOKEN(anon_sym_ATendvolt); END_STATE(); case 891: - ACCEPT_TOKEN(anon_sym_ATendvolt); + ACCEPT_TOKEN(aux_sym_parameter_token1); + if (lookahead == ')') ADVANCE(895); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(891); + if (lookahead != 0 && + lookahead != '(') ADVANCE(893); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == ')') ADVANCE(896); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(892); if (lookahead != 0 && - lookahead != '(') ADVANCE(894); + lookahead != '(' && + lookahead != ')') ADVANCE(893); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(893); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(894); + lookahead != ')') ADVANCE(893); END_STATE(); case 894: - ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead != 0 && - lookahead != '(' && - lookahead != ')') ADVANCE(894); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 895: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 896: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__section_parameter_token1); END_STATE(); case 897: - ACCEPT_TOKEN(aux_sym__section_parameter_token1); + ACCEPT_TOKEN(aux_sym__text_token1); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym__text_token1); + if (lookahead == 'T') ADVANCE(923); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(897); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'T') ADVANCE(924); + if (lookahead == 'a') ADVANCE(942); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'a') ADVANCE(943); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'a') ADVANCE(906); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(907); + if (lookahead == 'a') ADVANCE(929); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'a') ADVANCE(930); + if (lookahead == 'b') ADVANCE(922); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'b') ADVANCE(923); + if (lookahead == 'c') ADVANCE(964); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(965); + if (lookahead == 'c') ADVANCE(954); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(955); + if (lookahead == 'c') ADVANCE(939); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(940); + if (lookahead == 'c') ADVANCE(908); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(909); + if (lookahead == 'c') ADVANCE(925); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'c') ADVANCE(927); + if (lookahead == 'd') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(885); + if (lookahead == 'd') ADVANCE(903); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(904); + if (lookahead == 'd') ADVANCE(883); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(884); + if (lookahead == 'd') ADVANCE(959); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(960); + if (lookahead == 'd') ADVANCE(921); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(922); + if (lookahead == 'd') ADVANCE(930); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(931); + if (lookahead == 'd') ADVANCE(969); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(903); + if (lookahead == 'd') ADVANCE(902); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(971); + if (lookahead == 'd') ADVANCE(975); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'd') ADVANCE(976); + if (lookahead == 'e') ADVANCE(932); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(933); + if (lookahead == 'e') ADVANCE(877); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(878); + if (lookahead == 'e') ADVANCE(941); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(942); + if (lookahead == 'e') ADVANCE(966); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(967); + if (lookahead == 'e') ADVANCE(931); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(932); + if (lookahead == 'e') ADVANCE(900); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(901); + if (lookahead == 'e') ADVANCE(977); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(978); + if (lookahead == 'e') ADVANCE(974); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'e') ADVANCE(961); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(975); + if (lookahead == 'e') ADVANCE(911); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'e') ADVANCE(962); + if (lookahead == 'f') ADVANCE(976); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(977); + if (lookahead == 'f') ADVANCE(978); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(979); + if (lookahead == 'f') ADVANCE(937); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(938); + if (lookahead == 'f') ADVANCE(956); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'f') ADVANCE(957); + if (lookahead == 'g') ADVANCE(963); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'g') ADVANCE(964); + if (lookahead == 'h') ADVANCE(957); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'h') ADVANCE(958); + if (lookahead == 'h') ADVANCE(927); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'h') ADVANCE(926); + if (lookahead == 'i') ADVANCE(972); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(973); + if (lookahead == 'i') ADVANCE(904); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(905); + if (lookahead == 'i') ADVANCE(951); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(952); + if (lookahead == 'i') ADVANCE(971); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'i') ADVANCE(970); + if (lookahead == 'k') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'k') ADVANCE(885); + if (lookahead == 'l') ADVANCE(901); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'l') ADVANCE(902); + if (lookahead == 'l') ADVANCE(918); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'l') ADVANCE(919); + if (lookahead == 'm') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'm') ADVANCE(885); + if (lookahead == 'm') ADVANCE(968); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'm') ADVANCE(969); + if (lookahead == 'n') ADVANCE(913); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(914); + if (lookahead == 'n') ADVANCE(916); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(911); + if (lookahead == 'n') ADVANCE(910); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym__text_token1); if (lookahead == 'n') ADVANCE(915); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'n') ADVANCE(914); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(916); + if (lookahead == 'n') ADVANCE(912); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(913); + if (lookahead == 'n') ADVANCE(917); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(918); + if (lookahead == 'n') ADVANCE(938); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'n') ADVANCE(939); + if (lookahead == 'o') ADVANCE(928); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(929); + if (lookahead == 'o') ADVANCE(973); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(974); + if (lookahead == 'o') ADVANCE(962); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(963); + if (lookahead == 'o') ADVANCE(960); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(961); + if (lookahead == 'o') ADVANCE(965); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'o') ADVANCE(966); + if (lookahead == 'p') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'p') ADVANCE(124); + if (lookahead == 'p') ADVANCE(871); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'p') ADVANCE(872); + if (lookahead == 'p') ADVANCE(933); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'p') ADVANCE(934); + if (lookahead == 'r') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'r') ADVANCE(879); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(880); + if (lookahead == 'r') ADVANCE(909); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(910); + if (lookahead == 'r') ADVANCE(899); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(900); + if (lookahead == 'r') ADVANCE(953); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(954); + if (lookahead == 'r') ADVANCE(919); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(920); + if (lookahead == 'r') ADVANCE(967); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(968); + if (lookahead == 'r') ADVANCE(955); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'r') ADVANCE(956); + if (lookahead == 's') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(885); + if (lookahead == 's') ADVANCE(980); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(935); + if (lookahead == 's') ADVANCE(881); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(981); + if (lookahead == 's') ADVANCE(934); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(882); + if (lookahead == 's') ADVANCE(905); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(906); + if (lookahead == 's') ADVANCE(952); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(953); + if (lookahead == 's') ADVANCE(970); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(972); + if (lookahead == 's') ADVANCE(924); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 's') ADVANCE(925); + if (lookahead == 't') ADVANCE(898); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 't') ADVANCE(899); + if (lookahead == 't') ADVANCE(979); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 't') ADVANCE(980); + if (lookahead == 't') ADVANCE(926); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 't') ADVANCE(928); + if (lookahead == 'u') ADVANCE(958); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'u') ADVANCE(959); + if (lookahead == 'u') ADVANCE(907); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym__text_token1); - if (lookahead == 'u') ADVANCE(908); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 982: - ACCEPT_TOKEN(aux_sym__text_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(898); + ACCEPT_TOKEN(aux_sym__text_token2); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym__text_token2); + if (lookahead == '!') ADVANCE(111); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '!') ADVANCE(110); + if (lookahead == '!') ADVANCE(2); + if (lookahead == '{') ADVANCE(118); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '!') ADVANCE(2); - if (lookahead == '{') ADVANCE(119); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(337); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(455); + if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(366); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(340); + if (lookahead == 't') ADVANCE(239); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(897); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '-') ADVANCE(112); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(337); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(897); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); + if (lookahead == 'a') ADVANCE(416); if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(456); - if (lookahead == 'e') ADVANCE(194); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(341); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); if (lookahead == 't') ADVANCE(240); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); + if (lookahead == 'a') ADVANCE(416); if (lookahead == 'b') ADVANCE(338); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(210); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); if (lookahead == 'e') ADVANCE(210); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(196); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(194); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); if (lookahead == 'e') ADVANCE(211); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(224); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(195); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(212); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(197); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(213); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(341); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(213); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(198); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(223); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(214); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(199); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(214); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(215); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(200); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(216); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(201); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(217); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(202); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(202); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(218); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(203); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(219); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(206); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(220); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(207); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(219); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(221); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(204); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(222); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(205); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(223); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(225); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(226); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(227); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(226); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(208); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(228); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'a') ADVANCE(416); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'd') ADVANCE(465); + if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'f') ADVANCE(365); + if (lookahead == 'g') ADVANCE(715); + if (lookahead == 'h') ADVANCE(236); + if (lookahead == 'i') ADVANCE(417); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'm') ADVANCE(367); + if (lookahead == 'o') ADVANCE(522); + if (lookahead == 'p') ADVANCE(237); + if (lookahead == 'r') ADVANCE(339); + if (lookahead == 's') ADVANCE(342); + if (lookahead == 't') ADVANCE(240); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(375); + if (lookahead == 'w') ADVANCE(451); + if (lookahead == 'y') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(748); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(229); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'd') ADVANCE(935); + if (lookahead == 'e') ADVANCE(944); + if (lookahead == 'm') ADVANCE(936); + if (lookahead == 's') ADVANCE(940); + if (lookahead == 't') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'b') ADVANCE(339); - if (lookahead == 'c') ADVANCE(236); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'e') ADVANCE(209); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'g') ADVANCE(716); - if (lookahead == 'h') ADVANCE(237); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'l') ADVANCE(457); - if (lookahead == 'm') ADVANCE(368); - if (lookahead == 'o') ADVANCE(523); - if (lookahead == 'p') ADVANCE(238); - if (lookahead == 'r') ADVANCE(340); - if (lookahead == 's') ADVANCE(343); - if (lookahead == 't') ADVANCE(241); - if (lookahead == 'u') ADVANCE(540); - if (lookahead == 'v') ADVANCE(376); - if (lookahead == 'w') ADVANCE(452); - if (lookahead == 'y') ADVANCE(460); + if (lookahead == 'd') ADVANCE(935); + if (lookahead == 'e') ADVANCE(945); + if (lookahead == 'm') ADVANCE(936); + if (lookahead == 's') ADVANCE(940); + if (lookahead == 't') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(749); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(936); - if (lookahead == 'e') ADVANCE(945); - if (lookahead == 'm') ADVANCE(937); - if (lookahead == 's') ADVANCE(941); - if (lookahead == 't') ADVANCE(921); + if (lookahead == 'd') ADVANCE(935); + if (lookahead == 'e') ADVANCE(946); + if (lookahead == 'm') ADVANCE(936); + if (lookahead == 's') ADVANCE(940); + if (lookahead == 't') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(936); - if (lookahead == 'e') ADVANCE(946); - if (lookahead == 'm') ADVANCE(937); - if (lookahead == 's') ADVANCE(941); - if (lookahead == 't') ADVANCE(921); + if (lookahead == 'd') ADVANCE(935); + if (lookahead == 'e') ADVANCE(947); + if (lookahead == 'm') ADVANCE(936); + if (lookahead == 's') ADVANCE(940); + if (lookahead == 't') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(936); - if (lookahead == 'e') ADVANCE(947); - if (lookahead == 'm') ADVANCE(937); - if (lookahead == 's') ADVANCE(941); - if (lookahead == 't') ADVANCE(921); + if (lookahead == 'd') ADVANCE(935); + if (lookahead == 'e') ADVANCE(948); + if (lookahead == 'm') ADVANCE(936); + if (lookahead == 's') ADVANCE(940); + if (lookahead == 't') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(936); - if (lookahead == 'e') ADVANCE(948); - if (lookahead == 'm') ADVANCE(937); - if (lookahead == 's') ADVANCE(941); - if (lookahead == 't') ADVANCE(921); + if (lookahead == 'e') ADVANCE(949); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'd') ADVANCE(936); - if (lookahead == 'e') ADVANCE(949); - if (lookahead == 'm') ADVANCE(937); - if (lookahead == 's') ADVANCE(941); - if (lookahead == 't') ADVANCE(921); + if (lookahead == 'e') ADVANCE(950); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'e') ADVANCE(950); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(898); + if (lookahead == '}') ADVANCE(119); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == 'e') ADVANCE(951); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(981); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(898); + lookahead != '-') ADVANCE(897); END_STATE(); case 1031: - ACCEPT_TOKEN(aux_sym__text_token2); - if (lookahead == '}') ADVANCE(120); - END_STATE(); - case 1032: - ACCEPT_TOKEN(aux_sym__text_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(982); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(898); - END_STATE(); - case 1033: ACCEPT_TOKEN(aux_sym__text_token3); - if (lookahead == '-') ADVANCE(46); + if (lookahead == '-') ADVANCE(45); if (lookahead != 0 && lookahead != '!' && lookahead != '(' && @@ -18939,7 +18581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '?' && lookahead != '@' && lookahead != '{' && - lookahead != '}') ADVANCE(1033); + lookahead != '}') ADVANCE(1031); END_STATE(); default: return false; @@ -19019,945 +18661,945 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 5}, [70] = {.lex_state = 5}, [71] = {.lex_state = 5}, - [72] = {.lex_state = 53}, - [73] = {.lex_state = 53}, - [74] = {.lex_state = 64}, - [75] = {.lex_state = 53}, - [76] = {.lex_state = 53}, - [77] = {.lex_state = 68}, - [78] = {.lex_state = 53}, - [79] = {.lex_state = 68}, - [80] = {.lex_state = 53}, - [81] = {.lex_state = 53}, - [82] = {.lex_state = 72}, - [83] = {.lex_state = 53}, - [84] = {.lex_state = 53}, - [85] = {.lex_state = 89}, - [86] = {.lex_state = 75}, - [87] = {.lex_state = 53}, - [88] = {.lex_state = 77}, - [89] = {.lex_state = 72}, - [90] = {.lex_state = 72}, - [91] = {.lex_state = 90}, - [92] = {.lex_state = 53}, - [93] = {.lex_state = 53}, - [94] = {.lex_state = 79}, - [95] = {.lex_state = 53}, - [96] = {.lex_state = 53}, - [97] = {.lex_state = 53}, - [98] = {.lex_state = 53}, - [99] = {.lex_state = 53}, - [100] = {.lex_state = 81}, - [101] = {.lex_state = 79}, - [102] = {.lex_state = 79}, - [103] = {.lex_state = 53}, - [104] = {.lex_state = 90}, - [105] = {.lex_state = 53}, - [106] = {.lex_state = 53}, - [107] = {.lex_state = 81}, - [108] = {.lex_state = 75}, - [109] = {.lex_state = 90}, - [110] = {.lex_state = 75}, - [111] = {.lex_state = 53}, - [112] = {.lex_state = 53}, - [113] = {.lex_state = 53}, - [114] = {.lex_state = 83}, - [115] = {.lex_state = 89}, - [116] = {.lex_state = 53}, - [117] = {.lex_state = 84}, - [118] = {.lex_state = 53}, - [119] = {.lex_state = 85}, - [120] = {.lex_state = 85}, - [121] = {.lex_state = 89}, + [72] = {.lex_state = 54}, + [73] = {.lex_state = 63}, + [74] = {.lex_state = 66}, + [75] = {.lex_state = 69}, + [76] = {.lex_state = 90}, + [77] = {.lex_state = 66}, + [78] = {.lex_state = 72}, + [79] = {.lex_state = 63}, + [80] = {.lex_state = 63}, + [81] = {.lex_state = 63}, + [82] = {.lex_state = 63}, + [83] = {.lex_state = 74}, + [84] = {.lex_state = 63}, + [85] = {.lex_state = 72}, + [86] = {.lex_state = 76}, + [87] = {.lex_state = 63}, + [88] = {.lex_state = 78}, + [89] = {.lex_state = 69}, + [90] = {.lex_state = 69}, + [91] = {.lex_state = 63}, + [92] = {.lex_state = 63}, + [93] = {.lex_state = 63}, + [94] = {.lex_state = 63}, + [95] = {.lex_state = 63}, + [96] = {.lex_state = 63}, + [97] = {.lex_state = 63}, + [98] = {.lex_state = 80}, + [99] = {.lex_state = 63}, + [100] = {.lex_state = 63}, + [101] = {.lex_state = 82}, + [102] = {.lex_state = 63}, + [103] = {.lex_state = 80}, + [104] = {.lex_state = 63}, + [105] = {.lex_state = 54}, + [106] = {.lex_state = 54}, + [107] = {.lex_state = 74}, + [108] = {.lex_state = 63}, + [109] = {.lex_state = 92}, + [110] = {.lex_state = 63}, + [111] = {.lex_state = 63}, + [112] = {.lex_state = 74}, + [113] = {.lex_state = 63}, + [114] = {.lex_state = 84}, + [115] = {.lex_state = 92}, + [116] = {.lex_state = 63}, + [117] = {.lex_state = 90}, + [118] = {.lex_state = 84}, + [119] = {.lex_state = 90}, + [120] = {.lex_state = 78}, + [121] = {.lex_state = 92}, [122] = {.lex_state = 86}, [123] = {.lex_state = 86}, - [124] = {.lex_state = 68}, - [125] = {.lex_state = 85}, + [124] = {.lex_state = 66}, + [125] = {.lex_state = 78}, [126] = {.lex_state = 86}, - [127] = {.lex_state = 53}, - [128] = {.lex_state = 83}, - [129] = {.lex_state = 64}, - [130] = {.lex_state = 83}, - [131] = {.lex_state = 64}, - [132] = {.lex_state = 53}, - [133] = {.lex_state = 53}, - [134] = {.lex_state = 53}, - [135] = {.lex_state = 81}, - [136] = {.lex_state = 84}, - [137] = {.lex_state = 53}, - [138] = {.lex_state = 77}, - [139] = {.lex_state = 84}, - [140] = {.lex_state = 53}, - [141] = {.lex_state = 53}, - [142] = {.lex_state = 53}, - [143] = {.lex_state = 53}, - [144] = {.lex_state = 53}, - [145] = {.lex_state = 77}, - [146] = {.lex_state = 53}, - [147] = {.lex_state = 52}, - [148] = {.lex_state = 52}, - [149] = {.lex_state = 52}, - [150] = {.lex_state = 52}, - [151] = {.lex_state = 52}, - [152] = {.lex_state = 52}, - [153] = {.lex_state = 52}, - [154] = {.lex_state = 52}, - [155] = {.lex_state = 52}, - [156] = {.lex_state = 52}, - [157] = {.lex_state = 52}, - [158] = {.lex_state = 52}, - [159] = {.lex_state = 52}, - [160] = {.lex_state = 52}, - [161] = {.lex_state = 52}, - [162] = {.lex_state = 52}, - [163] = {.lex_state = 52}, - [164] = {.lex_state = 52}, - [165] = {.lex_state = 52}, - [166] = {.lex_state = 52}, - [167] = {.lex_state = 52}, - [168] = {.lex_state = 52}, - [169] = {.lex_state = 52}, - [170] = {.lex_state = 52}, - [171] = {.lex_state = 52}, - [172] = {.lex_state = 52}, - [173] = {.lex_state = 52}, - [174] = {.lex_state = 52}, - [175] = {.lex_state = 52}, - [176] = {.lex_state = 52}, - [177] = {.lex_state = 52}, - [178] = {.lex_state = 52}, - [179] = {.lex_state = 52}, - [180] = {.lex_state = 52}, - [181] = {.lex_state = 52}, - [182] = {.lex_state = 52}, - [183] = {.lex_state = 52}, - [184] = {.lex_state = 54}, - [185] = {.lex_state = 57}, + [127] = {.lex_state = 63}, + [128] = {.lex_state = 63}, + [129] = {.lex_state = 84}, + [130] = {.lex_state = 76}, + [131] = {.lex_state = 76}, + [132] = {.lex_state = 63}, + [133] = {.lex_state = 63}, + [134] = {.lex_state = 63}, + [135] = {.lex_state = 63}, + [136] = {.lex_state = 80}, + [137] = {.lex_state = 82}, + [138] = {.lex_state = 63}, + [139] = {.lex_state = 63}, + [140] = {.lex_state = 82}, + [141] = {.lex_state = 63}, + [142] = {.lex_state = 63}, + [143] = {.lex_state = 63}, + [144] = {.lex_state = 63}, + [145] = {.lex_state = 63}, + [146] = {.lex_state = 72}, + [147] = {.lex_state = 53}, + [148] = {.lex_state = 53}, + [149] = {.lex_state = 53}, + [150] = {.lex_state = 53}, + [151] = {.lex_state = 53}, + [152] = {.lex_state = 53}, + [153] = {.lex_state = 53}, + [154] = {.lex_state = 53}, + [155] = {.lex_state = 53}, + [156] = {.lex_state = 53}, + [157] = {.lex_state = 53}, + [158] = {.lex_state = 53}, + [159] = {.lex_state = 53}, + [160] = {.lex_state = 53}, + [161] = {.lex_state = 53}, + [162] = {.lex_state = 53}, + [163] = {.lex_state = 53}, + [164] = {.lex_state = 53}, + [165] = {.lex_state = 53}, + [166] = {.lex_state = 53}, + [167] = {.lex_state = 53}, + [168] = {.lex_state = 53}, + [169] = {.lex_state = 53}, + [170] = {.lex_state = 53}, + [171] = {.lex_state = 53}, + [172] = {.lex_state = 53}, + [173] = {.lex_state = 53}, + [174] = {.lex_state = 53}, + [175] = {.lex_state = 53}, + [176] = {.lex_state = 53}, + [177] = {.lex_state = 53}, + [178] = {.lex_state = 53}, + [179] = {.lex_state = 53}, + [180] = {.lex_state = 53}, + [181] = {.lex_state = 53}, + [182] = {.lex_state = 53}, + [183] = {.lex_state = 53}, + [184] = {.lex_state = 55}, + [185] = {.lex_state = 55}, [186] = {.lex_state = 57}, [187] = {.lex_state = 58}, - [188] = {.lex_state = 59}, - [189] = {.lex_state = 59}, + [188] = {.lex_state = 55}, + [189] = {.lex_state = 56}, [190] = {.lex_state = 55}, - [191] = {.lex_state = 59}, - [192] = {.lex_state = 59}, - [193] = {.lex_state = 55}, + [191] = {.lex_state = 55}, + [192] = {.lex_state = 56}, + [193] = {.lex_state = 56}, [194] = {.lex_state = 55}, - [195] = {.lex_state = 59}, - [196] = {.lex_state = 55}, - [197] = {.lex_state = 57}, - [198] = {.lex_state = 58}, - [199] = {.lex_state = 57}, - [200] = {.lex_state = 58}, - [201] = {.lex_state = 59}, + [195] = {.lex_state = 56}, + [196] = {.lex_state = 57}, + [197] = {.lex_state = 58}, + [198] = {.lex_state = 57}, + [199] = {.lex_state = 58}, + [200] = {.lex_state = 55}, + [201] = {.lex_state = 56}, [202] = {.lex_state = 55}, - [203] = {.lex_state = 59}, - [204] = {.lex_state = 59}, - [205] = {.lex_state = 55}, - [206] = {.lex_state = 55}, - [207] = {.lex_state = 59}, - [208] = {.lex_state = 55}, - [209] = {.lex_state = 55}, + [203] = {.lex_state = 55}, + [204] = {.lex_state = 56}, + [205] = {.lex_state = 56}, + [206] = {.lex_state = 56}, + [207] = {.lex_state = 55}, + [208] = {.lex_state = 56}, + [209] = {.lex_state = 56}, [210] = {.lex_state = 57}, - [211] = {.lex_state = 58}, - [212] = {.lex_state = 55}, - [213] = {.lex_state = 57}, - [214] = {.lex_state = 58}, - [215] = {.lex_state = 59}, - [216] = {.lex_state = 59}, - [217] = {.lex_state = 55}, - [218] = {.lex_state = 59}, - [219] = {.lex_state = 59}, - [220] = {.lex_state = 59}, - [221] = {.lex_state = 55}, - [222] = {.lex_state = 55}, - [223] = {.lex_state = 59}, - [224] = {.lex_state = 55}, + [211] = {.lex_state = 55}, + [212] = {.lex_state = 58}, + [213] = {.lex_state = 55}, + [214] = {.lex_state = 57}, + [215] = {.lex_state = 58}, + [216] = {.lex_state = 55}, + [217] = {.lex_state = 56}, + [218] = {.lex_state = 55}, + [219] = {.lex_state = 55}, + [220] = {.lex_state = 56}, + [221] = {.lex_state = 56}, + [222] = {.lex_state = 56}, + [223] = {.lex_state = 55}, + [224] = {.lex_state = 56}, [225] = {.lex_state = 55}, [226] = {.lex_state = 57}, [227] = {.lex_state = 58}, [228] = {.lex_state = 57}, - [229] = {.lex_state = 59}, - [230] = {.lex_state = 58}, - [231] = {.lex_state = 59}, - [232] = {.lex_state = 55}, - [233] = {.lex_state = 59}, - [234] = {.lex_state = 59}, - [235] = {.lex_state = 60}, - [236] = {.lex_state = 55}, + [229] = {.lex_state = 58}, + [230] = {.lex_state = 57}, + [231] = {.lex_state = 55}, + [232] = {.lex_state = 56}, + [233] = {.lex_state = 55}, + [234] = {.lex_state = 55}, + [235] = {.lex_state = 56}, + [236] = {.lex_state = 56}, [237] = {.lex_state = 55}, - [238] = {.lex_state = 59}, - [239] = {.lex_state = 55}, - [240] = {.lex_state = 57}, - [241] = {.lex_state = 58}, - [242] = {.lex_state = 57}, - [243] = {.lex_state = 58}, - [244] = {.lex_state = 59}, + [238] = {.lex_state = 56}, + [239] = {.lex_state = 57}, + [240] = {.lex_state = 58}, + [241] = {.lex_state = 57}, + [242] = {.lex_state = 58}, + [243] = {.lex_state = 55}, + [244] = {.lex_state = 56}, [245] = {.lex_state = 55}, [246] = {.lex_state = 59}, - [247] = {.lex_state = 59}, - [248] = {.lex_state = 55}, - [249] = {.lex_state = 55}, - [250] = {.lex_state = 59}, + [247] = {.lex_state = 55}, + [248] = {.lex_state = 56}, + [249] = {.lex_state = 56}, + [250] = {.lex_state = 64}, [251] = {.lex_state = 55}, [252] = {.lex_state = 56}, [253] = {.lex_state = 57}, [254] = {.lex_state = 58}, - [255] = {.lex_state = 65}, - [256] = {.lex_state = 57}, - [257] = {.lex_state = 58}, - [258] = {.lex_state = 59}, - [259] = {.lex_state = 55}, - [260] = {.lex_state = 59}, - [261] = {.lex_state = 59}, - [262] = {.lex_state = 55}, - [263] = {.lex_state = 59}, + [255] = {.lex_state = 57}, + [256] = {.lex_state = 58}, + [257] = {.lex_state = 55}, + [258] = {.lex_state = 55}, + [259] = {.lex_state = 56}, + [260] = {.lex_state = 55}, + [261] = {.lex_state = 55}, + [262] = {.lex_state = 56}, + [263] = {.lex_state = 56}, [264] = {.lex_state = 55}, - [265] = {.lex_state = 59}, - [266] = {.lex_state = 55}, - [267] = {.lex_state = 57}, - [268] = {.lex_state = 58}, + [265] = {.lex_state = 56}, + [266] = {.lex_state = 59}, + [267] = {.lex_state = 58}, + [268] = {.lex_state = 57}, [269] = {.lex_state = 57}, [270] = {.lex_state = 58}, - [271] = {.lex_state = 59}, - [272] = {.lex_state = 56}, + [271] = {.lex_state = 57}, + [272] = {.lex_state = 58}, [273] = {.lex_state = 55}, - [274] = {.lex_state = 57}, - [275] = {.lex_state = 59}, - [276] = {.lex_state = 59}, + [274] = {.lex_state = 56}, + [275] = {.lex_state = 55}, + [276] = {.lex_state = 57}, [277] = {.lex_state = 55}, - [278] = {.lex_state = 55}, - [279] = {.lex_state = 59}, + [278] = {.lex_state = 56}, + [279] = {.lex_state = 56}, [280] = {.lex_state = 55}, - [281] = {.lex_state = 58}, - [282] = {.lex_state = 57}, - [283] = {.lex_state = 57}, - [284] = {.lex_state = 58}, + [281] = {.lex_state = 56}, + [282] = {.lex_state = 55}, + [283] = {.lex_state = 56}, + [284] = {.lex_state = 55}, [285] = {.lex_state = 57}, [286] = {.lex_state = 58}, - [287] = {.lex_state = 59}, - [288] = {.lex_state = 55}, - [289] = {.lex_state = 59}, - [290] = {.lex_state = 55}, - [291] = {.lex_state = 59}, - [292] = {.lex_state = 59}, - [293] = {.lex_state = 55}, - [294] = {.lex_state = 55}, - [295] = {.lex_state = 59}, - [296] = {.lex_state = 55}, - [297] = {.lex_state = 55}, + [287] = {.lex_state = 57}, + [288] = {.lex_state = 58}, + [289] = {.lex_state = 55}, + [290] = {.lex_state = 56}, + [291] = {.lex_state = 55}, + [292] = {.lex_state = 55}, + [293] = {.lex_state = 56}, + [294] = {.lex_state = 56}, + [295] = {.lex_state = 55}, + [296] = {.lex_state = 56}, + [297] = {.lex_state = 56}, [298] = {.lex_state = 57}, [299] = {.lex_state = 58}, [300] = {.lex_state = 57}, [301] = {.lex_state = 58}, - [302] = {.lex_state = 59}, - [303] = {.lex_state = 55}, - [304] = {.lex_state = 59}, - [305] = {.lex_state = 59}, - [306] = {.lex_state = 55}, - [307] = {.lex_state = 55}, - [308] = {.lex_state = 59}, - [309] = {.lex_state = 55}, - [310] = {.lex_state = 55}, + [302] = {.lex_state = 55}, + [303] = {.lex_state = 56}, + [304] = {.lex_state = 55}, + [305] = {.lex_state = 55}, + [306] = {.lex_state = 56}, + [307] = {.lex_state = 56}, + [308] = {.lex_state = 55}, + [309] = {.lex_state = 56}, + [310] = {.lex_state = 56}, [311] = {.lex_state = 57}, [312] = {.lex_state = 58}, [313] = {.lex_state = 57}, [314] = {.lex_state = 58}, - [315] = {.lex_state = 59}, - [316] = {.lex_state = 55}, - [317] = {.lex_state = 59}, - [318] = {.lex_state = 59}, - [319] = {.lex_state = 55}, - [320] = {.lex_state = 55}, - [321] = {.lex_state = 59}, - [322] = {.lex_state = 55}, - [323] = {.lex_state = 59}, + [315] = {.lex_state = 55}, + [316] = {.lex_state = 56}, + [317] = {.lex_state = 55}, + [318] = {.lex_state = 55}, + [319] = {.lex_state = 56}, + [320] = {.lex_state = 56}, + [321] = {.lex_state = 55}, + [322] = {.lex_state = 56}, + [323] = {.lex_state = 55}, [324] = {.lex_state = 57}, [325] = {.lex_state = 58}, [326] = {.lex_state = 57}, [327] = {.lex_state = 58}, - [328] = {.lex_state = 59}, + [328] = {.lex_state = 64}, [329] = {.lex_state = 55}, - [330] = {.lex_state = 59}, - [331] = {.lex_state = 59}, + [330] = {.lex_state = 56}, + [331] = {.lex_state = 55}, [332] = {.lex_state = 55}, - [333] = {.lex_state = 55}, - [334] = {.lex_state = 57}, - [335] = {.lex_state = 59}, - [336] = {.lex_state = 55}, - [337] = {.lex_state = 59}, + [333] = {.lex_state = 56}, + [334] = {.lex_state = 56}, + [335] = {.lex_state = 55}, + [336] = {.lex_state = 56}, + [337] = {.lex_state = 55}, [338] = {.lex_state = 57}, [339] = {.lex_state = 58}, [340] = {.lex_state = 57}, [341] = {.lex_state = 58}, - [342] = {.lex_state = 59}, - [343] = {.lex_state = 55}, - [344] = {.lex_state = 59}, - [345] = {.lex_state = 59}, + [342] = {.lex_state = 55}, + [343] = {.lex_state = 56}, + [344] = {.lex_state = 55}, + [345] = {.lex_state = 67}, [346] = {.lex_state = 55}, - [347] = {.lex_state = 55}, - [348] = {.lex_state = 59}, - [349] = {.lex_state = 55}, - [350] = {.lex_state = 55}, - [351] = {.lex_state = 57}, - [352] = {.lex_state = 66}, - [353] = {.lex_state = 58}, + [347] = {.lex_state = 56}, + [348] = {.lex_state = 56}, + [349] = {.lex_state = 56}, + [350] = {.lex_state = 70}, + [351] = {.lex_state = 55}, + [352] = {.lex_state = 56}, + [353] = {.lex_state = 55}, [354] = {.lex_state = 57}, - [355] = {.lex_state = 59}, - [356] = {.lex_state = 58}, - [357] = {.lex_state = 91}, - [358] = {.lex_state = 59}, - [359] = {.lex_state = 55}, - [360] = {.lex_state = 59}, - [361] = {.lex_state = 59}, - [362] = {.lex_state = 55}, - [363] = {.lex_state = 55}, - [364] = {.lex_state = 59}, + [355] = {.lex_state = 58}, + [356] = {.lex_state = 57}, + [357] = {.lex_state = 58}, + [358] = {.lex_state = 55}, + [359] = {.lex_state = 56}, + [360] = {.lex_state = 55}, + [361] = {.lex_state = 55}, + [362] = {.lex_state = 56}, + [363] = {.lex_state = 56}, + [364] = {.lex_state = 67}, [365] = {.lex_state = 55}, - [366] = {.lex_state = 58}, - [367] = {.lex_state = 57}, - [368] = {.lex_state = 58}, + [366] = {.lex_state = 73}, + [367] = {.lex_state = 56}, + [368] = {.lex_state = 57}, [369] = {.lex_state = 57}, [370] = {.lex_state = 58}, - [371] = {.lex_state = 59}, - [372] = {.lex_state = 66}, - [373] = {.lex_state = 55}, - [374] = {.lex_state = 57}, - [375] = {.lex_state = 59}, - [376] = {.lex_state = 59}, + [371] = {.lex_state = 57}, + [372] = {.lex_state = 58}, + [373] = {.lex_state = 57}, + [374] = {.lex_state = 58}, + [375] = {.lex_state = 56}, + [376] = {.lex_state = 55}, [377] = {.lex_state = 55}, - [378] = {.lex_state = 55}, - [379] = {.lex_state = 59}, - [380] = {.lex_state = 55}, - [381] = {.lex_state = 58}, - [382] = {.lex_state = 57}, - [383] = {.lex_state = 57}, - [384] = {.lex_state = 58}, - [385] = {.lex_state = 57}, - [386] = {.lex_state = 58}, - [387] = {.lex_state = 59}, + [378] = {.lex_state = 56}, + [379] = {.lex_state = 56}, + [380] = {.lex_state = 57}, + [381] = {.lex_state = 55}, + [382] = {.lex_state = 56}, + [383] = {.lex_state = 56}, + [384] = {.lex_state = 57}, + [385] = {.lex_state = 58}, + [386] = {.lex_state = 57}, + [387] = {.lex_state = 58}, [388] = {.lex_state = 55}, - [389] = {.lex_state = 55}, - [390] = {.lex_state = 59}, - [391] = {.lex_state = 59}, - [392] = {.lex_state = 55}, - [393] = {.lex_state = 55}, - [394] = {.lex_state = 59}, - [395] = {.lex_state = 55}, - [396] = {.lex_state = 59}, + [389] = {.lex_state = 56}, + [390] = {.lex_state = 55}, + [391] = {.lex_state = 55}, + [392] = {.lex_state = 56}, + [393] = {.lex_state = 56}, + [394] = {.lex_state = 55}, + [395] = {.lex_state = 56}, + [396] = {.lex_state = 55}, [397] = {.lex_state = 57}, [398] = {.lex_state = 58}, [399] = {.lex_state = 57}, [400] = {.lex_state = 58}, - [401] = {.lex_state = 59}, - [402] = {.lex_state = 55}, - [403] = {.lex_state = 59}, - [404] = {.lex_state = 59}, - [405] = {.lex_state = 55}, - [406] = {.lex_state = 55}, - [407] = {.lex_state = 59}, - [408] = {.lex_state = 55}, - [409] = {.lex_state = 55}, + [401] = {.lex_state = 55}, + [402] = {.lex_state = 56}, + [403] = {.lex_state = 55}, + [404] = {.lex_state = 55}, + [405] = {.lex_state = 56}, + [406] = {.lex_state = 56}, + [407] = {.lex_state = 55}, + [408] = {.lex_state = 56}, + [409] = {.lex_state = 56}, [410] = {.lex_state = 57}, [411] = {.lex_state = 58}, [412] = {.lex_state = 57}, [413] = {.lex_state = 58}, - [414] = {.lex_state = 59}, - [415] = {.lex_state = 55}, - [416] = {.lex_state = 59}, - [417] = {.lex_state = 59}, - [418] = {.lex_state = 55}, - [419] = {.lex_state = 55}, - [420] = {.lex_state = 59}, - [421] = {.lex_state = 55}, - [422] = {.lex_state = 55}, - [423] = {.lex_state = 57}, - [424] = {.lex_state = 58}, + [414] = {.lex_state = 55}, + [415] = {.lex_state = 56}, + [416] = {.lex_state = 55}, + [417] = {.lex_state = 55}, + [418] = {.lex_state = 56}, + [419] = {.lex_state = 56}, + [420] = {.lex_state = 55}, + [421] = {.lex_state = 56}, + [422] = {.lex_state = 75}, + [423] = {.lex_state = 114}, + [424] = {.lex_state = 56}, [425] = {.lex_state = 57}, [426] = {.lex_state = 58}, - [427] = {.lex_state = 59}, - [428] = {.lex_state = 55}, - [429] = {.lex_state = 59}, - [430] = {.lex_state = 91}, - [431] = {.lex_state = 70}, - [432] = {.lex_state = 59}, + [427] = {.lex_state = 57}, + [428] = {.lex_state = 58}, + [429] = {.lex_state = 55}, + [430] = {.lex_state = 56}, + [431] = {.lex_state = 89}, + [432] = {.lex_state = 55}, [433] = {.lex_state = 55}, - [434] = {.lex_state = 55}, - [435] = {.lex_state = 59}, + [434] = {.lex_state = 56}, + [435] = {.lex_state = 56}, [436] = {.lex_state = 55}, - [437] = {.lex_state = 59}, - [438] = {.lex_state = 57}, - [439] = {.lex_state = 58}, + [437] = {.lex_state = 56}, + [438] = {.lex_state = 55}, + [439] = {.lex_state = 91}, [440] = {.lex_state = 57}, [441] = {.lex_state = 58}, - [442] = {.lex_state = 59}, - [443] = {.lex_state = 55}, - [444] = {.lex_state = 59}, - [445] = {.lex_state = 59}, + [442] = {.lex_state = 55}, + [443] = {.lex_state = 57}, + [444] = {.lex_state = 73}, + [445] = {.lex_state = 58}, [446] = {.lex_state = 55}, - [447] = {.lex_state = 55}, - [448] = {.lex_state = 88}, - [449] = {.lex_state = 59}, - [450] = {.lex_state = 55}, - [451] = {.lex_state = 59}, + [447] = {.lex_state = 56}, + [448] = {.lex_state = 55}, + [449] = {.lex_state = 55}, + [450] = {.lex_state = 56}, + [451] = {.lex_state = 56}, [452] = {.lex_state = 55}, - [453] = {.lex_state = 114}, - [454] = {.lex_state = 57}, - [455] = {.lex_state = 58}, - [456] = {.lex_state = 57}, - [457] = {.lex_state = 58}, - [458] = {.lex_state = 59}, - [459] = {.lex_state = 55}, + [453] = {.lex_state = 56}, + [454] = {.lex_state = 56}, + [455] = {.lex_state = 57}, + [456] = {.lex_state = 58}, + [457] = {.lex_state = 57}, + [458] = {.lex_state = 91}, + [459] = {.lex_state = 58}, [460] = {.lex_state = 59}, - [461] = {.lex_state = 59}, - [462] = {.lex_state = 55}, + [461] = {.lex_state = 55}, + [462] = {.lex_state = 56}, [463] = {.lex_state = 55}, - [464] = {.lex_state = 59}, - [465] = {.lex_state = 55}, - [466] = {.lex_state = 59}, + [464] = {.lex_state = 55}, + [465] = {.lex_state = 56}, + [466] = {.lex_state = 56}, [467] = {.lex_state = 58}, - [468] = {.lex_state = 88}, - [469] = {.lex_state = 58}, - [470] = {.lex_state = 56}, + [468] = {.lex_state = 55}, + [469] = {.lex_state = 56}, + [470] = {.lex_state = 58}, [471] = {.lex_state = 57}, [472] = {.lex_state = 58}, - [473] = {.lex_state = 59}, - [474] = {.lex_state = 55}, - [475] = {.lex_state = 59}, - [476] = {.lex_state = 59}, - [477] = {.lex_state = 55}, - [478] = {.lex_state = 58}, + [473] = {.lex_state = 57}, + [474] = {.lex_state = 57}, + [475] = {.lex_state = 58}, + [476] = {.lex_state = 55}, + [477] = {.lex_state = 56}, + [478] = {.lex_state = 55}, [479] = {.lex_state = 55}, - [480] = {.lex_state = 59}, - [481] = {.lex_state = 55}, - [482] = {.lex_state = 58}, - [483] = {.lex_state = 57}, - [484] = {.lex_state = 57}, - [485] = {.lex_state = 58}, - [486] = {.lex_state = 57}, - [487] = {.lex_state = 58}, - [488] = {.lex_state = 59}, + [480] = {.lex_state = 56}, + [481] = {.lex_state = 56}, + [482] = {.lex_state = 55}, + [483] = {.lex_state = 56}, + [484] = {.lex_state = 58}, + [485] = {.lex_state = 57}, + [486] = {.lex_state = 58}, + [487] = {.lex_state = 57}, + [488] = {.lex_state = 58}, [489] = {.lex_state = 55}, - [490] = {.lex_state = 59}, - [491] = {.lex_state = 59}, + [490] = {.lex_state = 56}, + [491] = {.lex_state = 55}, [492] = {.lex_state = 55}, - [493] = {.lex_state = 55}, - [494] = {.lex_state = 59}, + [493] = {.lex_state = 56}, + [494] = {.lex_state = 56}, [495] = {.lex_state = 55}, - [496] = {.lex_state = 59}, - [497] = {.lex_state = 57}, - [498] = {.lex_state = 58}, - [499] = {.lex_state = 57}, - [500] = {.lex_state = 58}, - [501] = {.lex_state = 59}, + [496] = {.lex_state = 56}, + [497] = {.lex_state = 56}, + [498] = {.lex_state = 57}, + [499] = {.lex_state = 58}, + [500] = {.lex_state = 57}, + [501] = {.lex_state = 58}, [502] = {.lex_state = 55}, - [503] = {.lex_state = 59}, - [504] = {.lex_state = 59}, + [503] = {.lex_state = 56}, + [504] = {.lex_state = 55}, [505] = {.lex_state = 55}, - [506] = {.lex_state = 55}, - [507] = {.lex_state = 59}, + [506] = {.lex_state = 56}, + [507] = {.lex_state = 56}, [508] = {.lex_state = 55}, - [509] = {.lex_state = 57}, - [510] = {.lex_state = 57}, - [511] = {.lex_state = 58}, - [512] = {.lex_state = 57}, - [513] = {.lex_state = 58}, - [514] = {.lex_state = 59}, + [509] = {.lex_state = 56}, + [510] = {.lex_state = 58}, + [511] = {.lex_state = 57}, + [512] = {.lex_state = 58}, + [513] = {.lex_state = 57}, + [514] = {.lex_state = 58}, [515] = {.lex_state = 55}, - [516] = {.lex_state = 59}, - [517] = {.lex_state = 59}, - [518] = {.lex_state = 55}, + [516] = {.lex_state = 77}, + [517] = {.lex_state = 58}, + [518] = {.lex_state = 56}, [519] = {.lex_state = 55}, - [520] = {.lex_state = 59}, - [521] = {.lex_state = 55}, - [522] = {.lex_state = 55}, - [523] = {.lex_state = 57}, - [524] = {.lex_state = 58}, - [525] = {.lex_state = 57}, - [526] = {.lex_state = 54}, - [527] = {.lex_state = 58}, + [520] = {.lex_state = 55}, + [521] = {.lex_state = 56}, + [522] = {.lex_state = 56}, + [523] = {.lex_state = 55}, + [524] = {.lex_state = 56}, + [525] = {.lex_state = 77}, + [526] = {.lex_state = 56}, + [527] = {.lex_state = 57}, [528] = {.lex_state = 58}, - [529] = {.lex_state = 59}, - [530] = {.lex_state = 55}, - [531] = {.lex_state = 59}, - [532] = {.lex_state = 59}, - [533] = {.lex_state = 55}, + [529] = {.lex_state = 57}, + [530] = {.lex_state = 58}, + [531] = {.lex_state = 55}, + [532] = {.lex_state = 56}, + [533] = {.lex_state = 75}, [534] = {.lex_state = 55}, - [535] = {.lex_state = 60}, - [536] = {.lex_state = 59}, - [537] = {.lex_state = 55}, - [538] = {.lex_state = 54}, - [539] = {.lex_state = 57}, - [540] = {.lex_state = 58}, - [541] = {.lex_state = 57}, - [542] = {.lex_state = 58}, - [543] = {.lex_state = 59}, - [544] = {.lex_state = 65}, - [545] = {.lex_state = 55}, - [546] = {.lex_state = 59}, + [535] = {.lex_state = 55}, + [536] = {.lex_state = 55}, + [537] = {.lex_state = 56}, + [538] = {.lex_state = 89}, + [539] = {.lex_state = 56}, + [540] = {.lex_state = 55}, + [541] = {.lex_state = 56}, + [542] = {.lex_state = 56}, + [543] = {.lex_state = 57}, + [544] = {.lex_state = 58}, + [545] = {.lex_state = 57}, + [546] = {.lex_state = 58}, [547] = {.lex_state = 55}, - [548] = {.lex_state = 59}, - [549] = {.lex_state = 87}, + [548] = {.lex_state = 56}, + [549] = {.lex_state = 55}, [550] = {.lex_state = 55}, - [551] = {.lex_state = 55}, - [552] = {.lex_state = 59}, - [553] = {.lex_state = 55}, - [554] = {.lex_state = 58}, - [555] = {.lex_state = 57}, - [556] = {.lex_state = 58}, - [557] = {.lex_state = 57}, - [558] = {.lex_state = 58}, - [559] = {.lex_state = 59}, - [560] = {.lex_state = 55}, - [561] = {.lex_state = 59}, - [562] = {.lex_state = 59}, + [551] = {.lex_state = 56}, + [552] = {.lex_state = 75}, + [553] = {.lex_state = 56}, + [554] = {.lex_state = 67}, + [555] = {.lex_state = 55}, + [556] = {.lex_state = 56}, + [557] = {.lex_state = 56}, + [558] = {.lex_state = 57}, + [559] = {.lex_state = 58}, + [560] = {.lex_state = 57}, + [561] = {.lex_state = 58}, + [562] = {.lex_state = 58}, [563] = {.lex_state = 55}, - [564] = {.lex_state = 65}, + [564] = {.lex_state = 56}, [565] = {.lex_state = 55}, - [566] = {.lex_state = 66}, - [567] = {.lex_state = 59}, - [568] = {.lex_state = 55}, - [569] = {.lex_state = 55}, - [570] = {.lex_state = 57}, - [571] = {.lex_state = 58}, - [572] = {.lex_state = 57}, - [573] = {.lex_state = 58}, - [574] = {.lex_state = 55}, - [575] = {.lex_state = 59}, - [576] = {.lex_state = 55}, - [577] = {.lex_state = 59}, - [578] = {.lex_state = 59}, + [566] = {.lex_state = 55}, + [567] = {.lex_state = 56}, + [568] = {.lex_state = 73}, + [569] = {.lex_state = 56}, + [570] = {.lex_state = 55}, + [571] = {.lex_state = 56}, + [572] = {.lex_state = 55}, + [573] = {.lex_state = 57}, + [574] = {.lex_state = 58}, + [575] = {.lex_state = 57}, + [576] = {.lex_state = 58}, + [577] = {.lex_state = 55}, + [578] = {.lex_state = 56}, [579] = {.lex_state = 55}, - [580] = {.lex_state = 59}, - [581] = {.lex_state = 55}, - [582] = {.lex_state = 59}, + [580] = {.lex_state = 55}, + [581] = {.lex_state = 56}, + [582] = {.lex_state = 56}, [583] = {.lex_state = 55}, - [584] = {.lex_state = 59}, - [585] = {.lex_state = 57}, - [586] = {.lex_state = 58}, - [587] = {.lex_state = 57}, - [588] = {.lex_state = 58}, - [589] = {.lex_state = 59}, + [584] = {.lex_state = 56}, + [585] = {.lex_state = 55}, + [586] = {.lex_state = 57}, + [587] = {.lex_state = 58}, + [588] = {.lex_state = 57}, + [589] = {.lex_state = 58}, [590] = {.lex_state = 55}, - [591] = {.lex_state = 59}, - [592] = {.lex_state = 59}, + [591] = {.lex_state = 56}, + [592] = {.lex_state = 55}, [593] = {.lex_state = 55}, - [594] = {.lex_state = 55}, - [595] = {.lex_state = 59}, + [594] = {.lex_state = 56}, + [595] = {.lex_state = 56}, [596] = {.lex_state = 55}, - [597] = {.lex_state = 55}, - [598] = {.lex_state = 57}, - [599] = {.lex_state = 58}, - [600] = {.lex_state = 57}, - [601] = {.lex_state = 58}, - [602] = {.lex_state = 59}, + [597] = {.lex_state = 56}, + [598] = {.lex_state = 56}, + [599] = {.lex_state = 57}, + [600] = {.lex_state = 58}, + [601] = {.lex_state = 57}, + [602] = {.lex_state = 58}, [603] = {.lex_state = 55}, - [604] = {.lex_state = 59}, - [605] = {.lex_state = 59}, + [604] = {.lex_state = 56}, + [605] = {.lex_state = 55}, [606] = {.lex_state = 55}, - [607] = {.lex_state = 55}, - [608] = {.lex_state = 59}, + [607] = {.lex_state = 56}, + [608] = {.lex_state = 56}, [609] = {.lex_state = 55}, - [610] = {.lex_state = 59}, - [611] = {.lex_state = 57}, - [612] = {.lex_state = 58}, - [613] = {.lex_state = 57}, - [614] = {.lex_state = 58}, - [615] = {.lex_state = 57}, - [616] = {.lex_state = 87}, - [617] = {.lex_state = 60}, - [618] = {.lex_state = 59}, - [619] = {.lex_state = 73}, - [620] = {.lex_state = 55}, - [621] = {.lex_state = 73}, - [622] = {.lex_state = 91}, - [623] = {.lex_state = 59}, - [624] = {.lex_state = 59}, - [625] = {.lex_state = 76}, - [626] = {.lex_state = 55}, - [627] = {.lex_state = 76}, - [628] = {.lex_state = 87}, - [629] = {.lex_state = 55}, - [630] = {.lex_state = 59}, - [631] = {.lex_state = 78}, - [632] = {.lex_state = 78}, - [633] = {.lex_state = 73}, - [634] = {.lex_state = 55}, - [635] = {.lex_state = 69}, - [636] = {.lex_state = 69}, - [637] = {.lex_state = 76}, - [638] = {.lex_state = 57}, - [639] = {.lex_state = 80}, - [640] = {.lex_state = 70}, - [641] = {.lex_state = 80}, - [642] = {.lex_state = 78}, - [643] = {.lex_state = 58}, - [644] = {.lex_state = 82}, - [645] = {.lex_state = 82}, - [646] = {.lex_state = 69}, - [647] = {.lex_state = 63}, - [648] = {.lex_state = 58}, - [649] = {.lex_state = 63}, - [650] = {.lex_state = 80}, - [651] = {.lex_state = 114}, - [652] = {.lex_state = 82}, + [610] = {.lex_state = 57}, + [611] = {.lex_state = 79}, + [612] = {.lex_state = 56}, + [613] = {.lex_state = 55}, + [614] = {.lex_state = 57}, + [615] = {.lex_state = 58}, + [616] = {.lex_state = 57}, + [617] = {.lex_state = 58}, + [618] = {.lex_state = 55}, + [619] = {.lex_state = 56}, + [620] = {.lex_state = 79}, + [621] = {.lex_state = 89}, + [622] = {.lex_state = 64}, + [623] = {.lex_state = 55}, + [624] = {.lex_state = 55}, + [625] = {.lex_state = 81}, + [626] = {.lex_state = 56}, + [627] = {.lex_state = 70}, + [628] = {.lex_state = 81}, + [629] = {.lex_state = 77}, + [630] = {.lex_state = 58}, + [631] = {.lex_state = 56}, + [632] = {.lex_state = 55}, + [633] = {.lex_state = 83}, + [634] = {.lex_state = 83}, + [635] = {.lex_state = 79}, + [636] = {.lex_state = 56}, + [637] = {.lex_state = 85}, + [638] = {.lex_state = 85}, + [639] = {.lex_state = 81}, + [640] = {.lex_state = 114}, + [641] = {.lex_state = 87}, + [642] = {.lex_state = 87}, + [643] = {.lex_state = 83}, + [644] = {.lex_state = 88}, + [645] = {.lex_state = 88}, + [646] = {.lex_state = 70}, + [647] = {.lex_state = 85}, + [648] = {.lex_state = 91}, + [649] = {.lex_state = 62}, + [650] = {.lex_state = 62}, + [651] = {.lex_state = 87}, + [652] = {.lex_state = 88}, [653] = {.lex_state = 57}, - [654] = {.lex_state = 55}, - [655] = {.lex_state = 88}, - [656] = {.lex_state = 70}, - [657] = {.lex_state = 63}, - [658] = {.lex_state = 25}, - [659] = {.lex_state = 27}, - [660] = {.lex_state = 21}, - [661] = {.lex_state = 6}, - [662] = {.lex_state = 37}, - [663] = {.lex_state = 38}, - [664] = {.lex_state = 18}, - [665] = {.lex_state = 32}, - [666] = {.lex_state = 29}, - [667] = {.lex_state = 31}, - [668] = {.lex_state = 15}, - [669] = {.lex_state = 34}, - [670] = {.lex_state = 33}, - [671] = {.lex_state = 23}, - [672] = {.lex_state = 18}, - [673] = {.lex_state = 90}, - [674] = {.lex_state = 18}, - [675] = {.lex_state = 15}, - [676] = {.lex_state = 90}, - [677] = {.lex_state = 81}, - [678] = {.lex_state = 32}, - [679] = {.lex_state = 33}, - [680] = {.lex_state = 89}, - [681] = {.lex_state = 34}, - [682] = {.lex_state = 77}, - [683] = {.lex_state = 31}, - [684] = {.lex_state = 68}, - [685] = {.lex_state = 29}, - [686] = {.lex_state = 21}, - [687] = {.lex_state = 75}, - [688] = {.lex_state = 29}, - [689] = {.lex_state = 85}, - [690] = {.lex_state = 75}, - [691] = {.lex_state = 34}, - [692] = {.lex_state = 6}, - [693] = {.lex_state = 25}, - [694] = {.lex_state = 86}, - [695] = {.lex_state = 77}, - [696] = {.lex_state = 32}, - [697] = {.lex_state = 33}, - [698] = {.lex_state = 81}, - [699] = {.lex_state = 23}, - [700] = {.lex_state = 79}, - [701] = {.lex_state = 83}, - [702] = {.lex_state = 37}, - [703] = {.lex_state = 84}, - [704] = {.lex_state = 72}, - [705] = {.lex_state = 31}, - [706] = {.lex_state = 84}, - [707] = {.lex_state = 27}, - [708] = {.lex_state = 64}, - [709] = {.lex_state = 23}, - [710] = {.lex_state = 37}, - [711] = {.lex_state = 83}, - [712] = {.lex_state = 38}, - [713] = {.lex_state = 21}, - [714] = {.lex_state = 89}, - [715] = {.lex_state = 6}, - [716] = {.lex_state = 79}, - [717] = {.lex_state = 64}, - [718] = {.lex_state = 25}, - [719] = {.lex_state = 53}, - [720] = {.lex_state = 38}, - [721] = {.lex_state = 68}, - [722] = {.lex_state = 15}, - [723] = {.lex_state = 72}, - [724] = {.lex_state = 85}, - [725] = {.lex_state = 53}, - [726] = {.lex_state = 27}, - [727] = {.lex_state = 86}, - [728] = {.lex_state = 26}, - [729] = {.lex_state = 36}, - [730] = {.lex_state = 8}, - [731] = {.lex_state = 14}, - [732] = {.lex_state = 30}, - [733] = {.lex_state = 17}, - [734] = {.lex_state = 7}, - [735] = {.lex_state = 16}, - [736] = {.lex_state = 28}, - [737] = {.lex_state = 19}, - [738] = {.lex_state = 12}, - [739] = {.lex_state = 20}, - [740] = {.lex_state = 24}, - [741] = {.lex_state = 22}, - [742] = {.lex_state = 35}, - [743] = {.lex_state = 113}, - [744] = {.lex_state = 39}, - [745] = {.lex_state = 9}, - [746] = {.lex_state = 10}, - [747] = {.lex_state = 13}, - [748] = {.lex_state = 11}, - [749] = {.lex_state = 64}, - [750] = {.lex_state = 89}, - [751] = {.lex_state = 113}, - [752] = {.lex_state = 114}, - [753] = {.lex_state = 79}, - [754] = {.lex_state = 114}, - [755] = {.lex_state = 79}, - [756] = {.lex_state = 11}, - [757] = {.lex_state = 72}, - [758] = {.lex_state = 72}, - [759] = {.lex_state = 10}, - [760] = {.lex_state = 58}, - [761] = {.lex_state = 53}, - [762] = {.lex_state = 53}, - [763] = {.lex_state = 79}, - [764] = {.lex_state = 79}, - [765] = {.lex_state = 79}, - [766] = {.lex_state = 79}, - [767] = {.lex_state = 79}, - [768] = {.lex_state = 83}, - [769] = {.lex_state = 79}, - [770] = {.lex_state = 79}, - [771] = {.lex_state = 79}, - [772] = {.lex_state = 57}, - [773] = {.lex_state = 79}, - [774] = {.lex_state = 79}, - [775] = {.lex_state = 79}, - [776] = {.lex_state = 79}, - [777] = {.lex_state = 79}, - [778] = {.lex_state = 79}, - [779] = {.lex_state = 79}, - [780] = {.lex_state = 79}, - [781] = {.lex_state = 79}, - [782] = {.lex_state = 75}, - [783] = {.lex_state = 79}, - [784] = {.lex_state = 79}, - [785] = {.lex_state = 79}, - [786] = {.lex_state = 79}, - [787] = {.lex_state = 79}, - [788] = {.lex_state = 79}, - [789] = {.lex_state = 79}, - [790] = {.lex_state = 79}, - [791] = {.lex_state = 79}, - [792] = {.lex_state = 79}, - [793] = {.lex_state = 79}, - [794] = {.lex_state = 79}, - [795] = {.lex_state = 79}, - [796] = {.lex_state = 79}, - [797] = {.lex_state = 79}, - [798] = {.lex_state = 79}, - [799] = {.lex_state = 79}, - [800] = {.lex_state = 79}, - [801] = {.lex_state = 79}, - [802] = {.lex_state = 79}, - [803] = {.lex_state = 79}, - [804] = {.lex_state = 79}, - [805] = {.lex_state = 75}, - [806] = {.lex_state = 79}, - [807] = {.lex_state = 79}, - [808] = {.lex_state = 79}, - [809] = {.lex_state = 79}, - [810] = {.lex_state = 79}, - [811] = {.lex_state = 9}, - [812] = {.lex_state = 79}, - [813] = {.lex_state = 79}, - [814] = {.lex_state = 79}, - [815] = {.lex_state = 79}, - [816] = {.lex_state = 79}, - [817] = {.lex_state = 79}, - [818] = {.lex_state = 79}, + [654] = {.lex_state = 56}, + [655] = {.lex_state = 58}, + [656] = {.lex_state = 57}, + [657] = {.lex_state = 62}, + [658] = {.lex_state = 31}, + [659] = {.lex_state = 6}, + [660] = {.lex_state = 39}, + [661] = {.lex_state = 15}, + [662] = {.lex_state = 17}, + [663] = {.lex_state = 13}, + [664] = {.lex_state = 21}, + [665] = {.lex_state = 37}, + [666] = {.lex_state = 19}, + [667] = {.lex_state = 29}, + [668] = {.lex_state = 25}, + [669] = {.lex_state = 27}, + [670] = {.lex_state = 23}, + [671] = {.lex_state = 33}, + [672] = {.lex_state = 13}, + [673] = {.lex_state = 39}, + [674] = {.lex_state = 82}, + [675] = {.lex_state = 23}, + [676] = {.lex_state = 25}, + [677] = {.lex_state = 84}, + [678] = {.lex_state = 29}, + [679] = {.lex_state = 66}, + [680] = {.lex_state = 33}, + [681] = {.lex_state = 80}, + [682] = {.lex_state = 31}, + [683] = {.lex_state = 78}, + [684] = {.lex_state = 74}, + [685] = {.lex_state = 17}, + [686] = {.lex_state = 72}, + [687] = {.lex_state = 27}, + [688] = {.lex_state = 86}, + [689] = {.lex_state = 72}, + [690] = {.lex_state = 33}, + [691] = {.lex_state = 29}, + [692] = {.lex_state = 74}, + [693] = {.lex_state = 19}, + [694] = {.lex_state = 80}, + [695] = {.lex_state = 69}, + [696] = {.lex_state = 84}, + [697] = {.lex_state = 25}, + [698] = {.lex_state = 13}, + [699] = {.lex_state = 21}, + [700] = {.lex_state = 39}, + [701] = {.lex_state = 82}, + [702] = {.lex_state = 15}, + [703] = {.lex_state = 6}, + [704] = {.lex_state = 76}, + [705] = {.lex_state = 15}, + [706] = {.lex_state = 54}, + [707] = {.lex_state = 21}, + [708] = {.lex_state = 27}, + [709] = {.lex_state = 90}, + [710] = {.lex_state = 76}, + [711] = {.lex_state = 92}, + [712] = {.lex_state = 92}, + [713] = {.lex_state = 17}, + [714] = {.lex_state = 66}, + [715] = {.lex_state = 23}, + [716] = {.lex_state = 54}, + [717] = {.lex_state = 78}, + [718] = {.lex_state = 63}, + [719] = {.lex_state = 86}, + [720] = {.lex_state = 69}, + [721] = {.lex_state = 37}, + [722] = {.lex_state = 63}, + [723] = {.lex_state = 19}, + [724] = {.lex_state = 31}, + [725] = {.lex_state = 90}, + [726] = {.lex_state = 37}, + [727] = {.lex_state = 6}, + [728] = {.lex_state = 30}, + [729] = {.lex_state = 12}, + [730] = {.lex_state = 7}, + [731] = {.lex_state = 8}, + [732] = {.lex_state = 35}, + [733] = {.lex_state = 22}, + [734] = {.lex_state = 34}, + [735] = {.lex_state = 32}, + [736] = {.lex_state = 16}, + [737] = {.lex_state = 18}, + [738] = {.lex_state = 38}, + [739] = {.lex_state = 28}, + [740] = {.lex_state = 20}, + [741] = {.lex_state = 26}, + [742] = {.lex_state = 9}, + [743] = {.lex_state = 24}, + [744] = {.lex_state = 14}, + [745] = {.lex_state = 113}, + [746] = {.lex_state = 36}, + [747] = {.lex_state = 11}, + [748] = {.lex_state = 10}, + [749] = {.lex_state = 76}, + [750] = {.lex_state = 72}, + [751] = {.lex_state = 54}, + [752] = {.lex_state = 54}, + [753] = {.lex_state = 84}, + [754] = {.lex_state = 54}, + [755] = {.lex_state = 74}, + [756] = {.lex_state = 54}, + [757] = {.lex_state = 54}, + [758] = {.lex_state = 54}, + [759] = {.lex_state = 54}, + [760] = {.lex_state = 54}, + [761] = {.lex_state = 54}, + [762] = {.lex_state = 54}, + [763] = {.lex_state = 54}, + [764] = {.lex_state = 54}, + [765] = {.lex_state = 54}, + [766] = {.lex_state = 54}, + [767] = {.lex_state = 54}, + [768] = {.lex_state = 54}, + [769] = {.lex_state = 54}, + [770] = {.lex_state = 54}, + [771] = {.lex_state = 54}, + [772] = {.lex_state = 54}, + [773] = {.lex_state = 54}, + [774] = {.lex_state = 54}, + [775] = {.lex_state = 54}, + [776] = {.lex_state = 54}, + [777] = {.lex_state = 54}, + [778] = {.lex_state = 54}, + [779] = {.lex_state = 54}, + [780] = {.lex_state = 54}, + [781] = {.lex_state = 54}, + [782] = {.lex_state = 54}, + [783] = {.lex_state = 54}, + [784] = {.lex_state = 54}, + [785] = {.lex_state = 54}, + [786] = {.lex_state = 54}, + [787] = {.lex_state = 54}, + [788] = {.lex_state = 54}, + [789] = {.lex_state = 54}, + [790] = {.lex_state = 54}, + [791] = {.lex_state = 74}, + [792] = {.lex_state = 54}, + [793] = {.lex_state = 54}, + [794] = {.lex_state = 54}, + [795] = {.lex_state = 11}, + [796] = {.lex_state = 54}, + [797] = {.lex_state = 54}, + [798] = {.lex_state = 54}, + [799] = {.lex_state = 54}, + [800] = {.lex_state = 54}, + [801] = {.lex_state = 63}, + [802] = {.lex_state = 54}, + [803] = {.lex_state = 54}, + [804] = {.lex_state = 54}, + [805] = {.lex_state = 54}, + [806] = {.lex_state = 54}, + [807] = {.lex_state = 54}, + [808] = {.lex_state = 54}, + [809] = {.lex_state = 54}, + [810] = {.lex_state = 54}, + [811] = {.lex_state = 54}, + [812] = {.lex_state = 54}, + [813] = {.lex_state = 54}, + [814] = {.lex_state = 54}, + [815] = {.lex_state = 82}, + [816] = {.lex_state = 63}, + [817] = {.lex_state = 54}, + [818] = {.lex_state = 57}, [819] = {.lex_state = 54}, - [820] = {.lex_state = 79}, - [821] = {.lex_state = 79}, - [822] = {.lex_state = 79}, - [823] = {.lex_state = 79}, - [824] = {.lex_state = 79}, - [825] = {.lex_state = 79}, - [826] = {.lex_state = 79}, - [827] = {.lex_state = 79}, - [828] = {.lex_state = 79}, - [829] = {.lex_state = 79}, - [830] = {.lex_state = 79}, - [831] = {.lex_state = 79}, - [832] = {.lex_state = 84}, - [833] = {.lex_state = 57}, - [834] = {.lex_state = 79}, - [835] = {.lex_state = 79}, - [836] = {.lex_state = 79}, - [837] = {.lex_state = 79}, - [838] = {.lex_state = 79}, - [839] = {.lex_state = 79}, - [840] = {.lex_state = 79}, - [841] = {.lex_state = 79}, - [842] = {.lex_state = 79}, - [843] = {.lex_state = 79}, - [844] = {.lex_state = 79}, - [845] = {.lex_state = 75}, - [846] = {.lex_state = 79}, - [847] = {.lex_state = 79}, - [848] = {.lex_state = 79}, - [849] = {.lex_state = 72}, - [850] = {.lex_state = 72}, - [851] = {.lex_state = 72}, - [852] = {.lex_state = 72}, + [820] = {.lex_state = 54}, + [821] = {.lex_state = 9}, + [822] = {.lex_state = 54}, + [823] = {.lex_state = 54}, + [824] = {.lex_state = 54}, + [825] = {.lex_state = 54}, + [826] = {.lex_state = 54}, + [827] = {.lex_state = 74}, + [828] = {.lex_state = 54}, + [829] = {.lex_state = 54}, + [830] = {.lex_state = 54}, + [831] = {.lex_state = 54}, + [832] = {.lex_state = 54}, + [833] = {.lex_state = 54}, + [834] = {.lex_state = 54}, + [835] = {.lex_state = 69}, + [836] = {.lex_state = 69}, + [837] = {.lex_state = 69}, + [838] = {.lex_state = 69}, + [839] = {.lex_state = 69}, + [840] = {.lex_state = 69}, + [841] = {.lex_state = 69}, + [842] = {.lex_state = 69}, + [843] = {.lex_state = 69}, + [844] = {.lex_state = 82}, + [845] = {.lex_state = 69}, + [846] = {.lex_state = 69}, + [847] = {.lex_state = 69}, + [848] = {.lex_state = 69}, + [849] = {.lex_state = 69}, + [850] = {.lex_state = 54}, + [851] = {.lex_state = 69}, + [852] = {.lex_state = 69}, [853] = {.lex_state = 72}, - [854] = {.lex_state = 72}, - [855] = {.lex_state = 72}, - [856] = {.lex_state = 72}, - [857] = {.lex_state = 72}, - [858] = {.lex_state = 83}, - [859] = {.lex_state = 72}, - [860] = {.lex_state = 72}, - [861] = {.lex_state = 72}, - [862] = {.lex_state = 84}, - [863] = {.lex_state = 72}, - [864] = {.lex_state = 72}, - [865] = {.lex_state = 72}, - [866] = {.lex_state = 79}, - [867] = {.lex_state = 72}, - [868] = {.lex_state = 77}, - [869] = {.lex_state = 72}, - [870] = {.lex_state = 72}, - [871] = {.lex_state = 72}, - [872] = {.lex_state = 72}, - [873] = {.lex_state = 72}, - [874] = {.lex_state = 72}, - [875] = {.lex_state = 72}, - [876] = {.lex_state = 72}, - [877] = {.lex_state = 72}, - [878] = {.lex_state = 72}, - [879] = {.lex_state = 72}, - [880] = {.lex_state = 72}, + [854] = {.lex_state = 69}, + [855] = {.lex_state = 69}, + [856] = {.lex_state = 69}, + [857] = {.lex_state = 69}, + [858] = {.lex_state = 69}, + [859] = {.lex_state = 69}, + [860] = {.lex_state = 69}, + [861] = {.lex_state = 58}, + [862] = {.lex_state = 69}, + [863] = {.lex_state = 69}, + [864] = {.lex_state = 69}, + [865] = {.lex_state = 69}, + [866] = {.lex_state = 69}, + [867] = {.lex_state = 69}, + [868] = {.lex_state = 69}, + [869] = {.lex_state = 69}, + [870] = {.lex_state = 69}, + [871] = {.lex_state = 58}, + [872] = {.lex_state = 69}, + [873] = {.lex_state = 10}, + [874] = {.lex_state = 74}, + [875] = {.lex_state = 69}, + [876] = {.lex_state = 69}, + [877] = {.lex_state = 69}, + [878] = {.lex_state = 69}, + [879] = {.lex_state = 69}, + [880] = {.lex_state = 69}, [881] = {.lex_state = 72}, - [882] = {.lex_state = 72}, - [883] = {.lex_state = 72}, - [884] = {.lex_state = 72}, - [885] = {.lex_state = 72}, - [886] = {.lex_state = 72}, - [887] = {.lex_state = 72}, - [888] = {.lex_state = 72}, - [889] = {.lex_state = 72}, - [890] = {.lex_state = 72}, - [891] = {.lex_state = 72}, - [892] = {.lex_state = 75}, - [893] = {.lex_state = 77}, - [894] = {.lex_state = 72}, - [895] = {.lex_state = 72}, - [896] = {.lex_state = 72}, - [897] = {.lex_state = 72}, - [898] = {.lex_state = 72}, - [899] = {.lex_state = 72}, - [900] = {.lex_state = 72}, - [901] = {.lex_state = 72}, - [902] = {.lex_state = 72}, - [903] = {.lex_state = 72}, - [904] = {.lex_state = 72}, - [905] = {.lex_state = 17}, - [906] = {.lex_state = 72}, - [907] = {.lex_state = 72}, - [908] = {.lex_state = 72}, - [909] = {.lex_state = 72}, - [910] = {.lex_state = 72}, - [911] = {.lex_state = 72}, - [912] = {.lex_state = 72}, - [913] = {.lex_state = 72}, - [914] = {.lex_state = 72}, - [915] = {.lex_state = 72}, - [916] = {.lex_state = 72}, - [917] = {.lex_state = 72}, - [918] = {.lex_state = 72}, + [882] = {.lex_state = 69}, + [883] = {.lex_state = 69}, + [884] = {.lex_state = 69}, + [885] = {.lex_state = 69}, + [886] = {.lex_state = 69}, + [887] = {.lex_state = 16}, + [888] = {.lex_state = 69}, + [889] = {.lex_state = 69}, + [890] = {.lex_state = 69}, + [891] = {.lex_state = 69}, + [892] = {.lex_state = 69}, + [893] = {.lex_state = 69}, + [894] = {.lex_state = 69}, + [895] = {.lex_state = 59}, + [896] = {.lex_state = 69}, + [897] = {.lex_state = 69}, + [898] = {.lex_state = 69}, + [899] = {.lex_state = 69}, + [900] = {.lex_state = 69}, + [901] = {.lex_state = 69}, + [902] = {.lex_state = 69}, + [903] = {.lex_state = 69}, + [904] = {.lex_state = 69}, + [905] = {.lex_state = 69}, + [906] = {.lex_state = 54}, + [907] = {.lex_state = 76}, + [908] = {.lex_state = 69}, + [909] = {.lex_state = 69}, + [910] = {.lex_state = 69}, + [911] = {.lex_state = 69}, + [912] = {.lex_state = 69}, + [913] = {.lex_state = 69}, + [914] = {.lex_state = 69}, + [915] = {.lex_state = 69}, + [916] = {.lex_state = 69}, + [917] = {.lex_state = 69}, + [918] = {.lex_state = 69}, [919] = {.lex_state = 72}, - [920] = {.lex_state = 72}, - [921] = {.lex_state = 72}, - [922] = {.lex_state = 72}, - [923] = {.lex_state = 72}, - [924] = {.lex_state = 72}, - [925] = {.lex_state = 72}, - [926] = {.lex_state = 64}, - [927] = {.lex_state = 72}, - [928] = {.lex_state = 72}, - [929] = {.lex_state = 63}, - [930] = {.lex_state = 59}, - [931] = {.lex_state = 55}, - [932] = {.lex_state = 82}, - [933] = {.lex_state = 80}, - [934] = {.lex_state = 69}, - [935] = {.lex_state = 78}, + [920] = {.lex_state = 114}, + [921] = {.lex_state = 69}, + [922] = {.lex_state = 69}, + [923] = {.lex_state = 69}, + [924] = {.lex_state = 69}, + [925] = {.lex_state = 69}, + [926] = {.lex_state = 63}, + [927] = {.lex_state = 63}, + [928] = {.lex_state = 69}, + [929] = {.lex_state = 54}, + [930] = {.lex_state = 63}, + [931] = {.lex_state = 54}, + [932] = {.lex_state = 63}, + [933] = {.lex_state = 63}, + [934] = {.lex_state = 114}, + [935] = {.lex_state = 63}, [936] = {.lex_state = 76}, - [937] = {.lex_state = 73}, - [938] = {.lex_state = 63}, - [939] = {.lex_state = 77}, - [940] = {.lex_state = 87}, - [941] = {.lex_state = 59}, - [942] = {.lex_state = 53}, - [943] = {.lex_state = 91}, - [944] = {.lex_state = 60}, - [945] = {.lex_state = 55}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 72}, - [948] = {.lex_state = 53}, - [949] = {.lex_state = 53}, - [950] = {.lex_state = 72}, - [951] = {.lex_state = 82}, + [937] = {.lex_state = 63}, + [938] = {.lex_state = 62}, + [939] = {.lex_state = 55}, + [940] = {.lex_state = 56}, + [941] = {.lex_state = 88}, + [942] = {.lex_state = 87}, + [943] = {.lex_state = 85}, + [944] = {.lex_state = 83}, + [945] = {.lex_state = 81}, + [946] = {.lex_state = 79}, + [947] = {.lex_state = 62}, + [948] = {.lex_state = 77}, + [949] = {.lex_state = 55}, + [950] = {.lex_state = 64}, + [951] = {.lex_state = 113}, [952] = {.lex_state = 12}, - [953] = {.lex_state = 72}, - [954] = {.lex_state = 72}, - [955] = {.lex_state = 72}, - [956] = {.lex_state = 64}, - [957] = {.lex_state = 72}, - [958] = {.lex_state = 80}, - [959] = {.lex_state = 8}, - [960] = {.lex_state = 72}, - [961] = {.lex_state = 79}, - [962] = {.lex_state = 79}, - [963] = {.lex_state = 53}, - [964] = {.lex_state = 69}, - [965] = {.lex_state = 30}, + [953] = {.lex_state = 63}, + [954] = {.lex_state = 63}, + [955] = {.lex_state = 63}, + [956] = {.lex_state = 89}, + [957] = {.lex_state = 56}, + [958] = {.lex_state = 7}, + [959] = {.lex_state = 63}, + [960] = {.lex_state = 69}, + [961] = {.lex_state = 69}, + [962] = {.lex_state = 63}, + [963] = {.lex_state = 88}, + [964] = {.lex_state = 8}, + [965] = {.lex_state = 63}, [966] = {.lex_state = 72}, - [967] = {.lex_state = 53}, - [968] = {.lex_state = 78}, - [969] = {.lex_state = 28}, - [970] = {.lex_state = 53}, - [971] = {.lex_state = 53}, - [972] = {.lex_state = 76}, - [973] = {.lex_state = 19}, - [974] = {.lex_state = 53}, - [975] = {.lex_state = 53}, - [976] = {.lex_state = 73}, - [977] = {.lex_state = 26}, - [978] = {.lex_state = 53}, - [979] = {.lex_state = 53}, - [980] = {.lex_state = 87}, - [981] = {.lex_state = 24}, - [982] = {.lex_state = 53}, - [983] = {.lex_state = 53}, - [984] = {.lex_state = 91}, - [985] = {.lex_state = 22}, - [986] = {.lex_state = 77}, - [987] = {.lex_state = 53}, - [988] = {.lex_state = 53}, - [989] = {.lex_state = 60}, - [990] = {.lex_state = 35}, - [991] = {.lex_state = 53}, - [992] = {.lex_state = 53}, - [993] = {.lex_state = 39}, - [994] = {.lex_state = 53}, - [995] = {.lex_state = 53}, - [996] = {.lex_state = 81}, - [997] = {.lex_state = 13}, - [998] = {.lex_state = 53}, - [999] = {.lex_state = 36}, - [1000] = {.lex_state = 86}, - [1001] = {.lex_state = 86}, - [1002] = {.lex_state = 86}, - [1003] = {.lex_state = 86}, - [1004] = {.lex_state = 86}, - [1005] = {.lex_state = 86}, - [1006] = {.lex_state = 86}, - [1007] = {.lex_state = 56}, + [967] = {.lex_state = 54}, + [968] = {.lex_state = 54}, + [969] = {.lex_state = 87}, + [970] = {.lex_state = 35}, + [971] = {.lex_state = 63}, + [972] = {.lex_state = 63}, + [973] = {.lex_state = 85}, + [974] = {.lex_state = 34}, + [975] = {.lex_state = 63}, + [976] = {.lex_state = 63}, + [977] = {.lex_state = 83}, + [978] = {.lex_state = 32}, + [979] = {.lex_state = 38}, + [980] = {.lex_state = 80}, + [981] = {.lex_state = 63}, + [982] = {.lex_state = 81}, + [983] = {.lex_state = 30}, + [984] = {.lex_state = 63}, + [985] = {.lex_state = 63}, + [986] = {.lex_state = 79}, + [987] = {.lex_state = 67}, + [988] = {.lex_state = 28}, + [989] = {.lex_state = 63}, + [990] = {.lex_state = 63}, + [991] = {.lex_state = 77}, + [992] = {.lex_state = 26}, + [993] = {.lex_state = 63}, + [994] = {.lex_state = 63}, + [995] = {.lex_state = 64}, + [996] = {.lex_state = 24}, + [997] = {.lex_state = 63}, + [998] = {.lex_state = 90}, + [999] = {.lex_state = 84}, + [1000] = {.lex_state = 63}, + [1001] = {.lex_state = 89}, + [1002] = {.lex_state = 14}, + [1003] = {.lex_state = 57}, + [1004] = {.lex_state = 63}, + [1005] = {.lex_state = 36}, + [1006] = {.lex_state = 63}, + [1007] = {.lex_state = 86}, [1008] = {.lex_state = 86}, [1009] = {.lex_state = 86}, - [1010] = {.lex_state = 86}, + [1010] = {.lex_state = 80}, [1011] = {.lex_state = 86}, [1012] = {.lex_state = 86}, [1013] = {.lex_state = 86}, @@ -19966,7 +19608,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1016] = {.lex_state = 86}, [1017] = {.lex_state = 86}, [1018] = {.lex_state = 86}, - [1019] = {.lex_state = 90}, + [1019] = {.lex_state = 86}, [1020] = {.lex_state = 86}, [1021] = {.lex_state = 86}, [1022] = {.lex_state = 86}, @@ -19974,12 +19616,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1024] = {.lex_state = 86}, [1025] = {.lex_state = 86}, [1026] = {.lex_state = 86}, - [1027] = {.lex_state = 86}, + [1027] = {.lex_state = 90}, [1028] = {.lex_state = 86}, [1029] = {.lex_state = 86}, [1030] = {.lex_state = 86}, [1031] = {.lex_state = 86}, - [1032] = {.lex_state = 81}, + [1032] = {.lex_state = 86}, [1033] = {.lex_state = 86}, [1034] = {.lex_state = 86}, [1035] = {.lex_state = 86}, @@ -19992,11 +19634,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1042] = {.lex_state = 86}, [1043] = {.lex_state = 86}, [1044] = {.lex_state = 86}, - [1045] = {.lex_state = 7}, + [1045] = {.lex_state = 86}, [1046] = {.lex_state = 86}, [1047] = {.lex_state = 86}, [1048] = {.lex_state = 86}, - [1049] = {.lex_state = 90}, + [1049] = {.lex_state = 86}, [1050] = {.lex_state = 86}, [1051] = {.lex_state = 86}, [1052] = {.lex_state = 86}, @@ -20004,749 +19646,749 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1054] = {.lex_state = 86}, [1055] = {.lex_state = 86}, [1056] = {.lex_state = 86}, - [1057] = {.lex_state = 86}, + [1057] = {.lex_state = 80}, [1058] = {.lex_state = 86}, - [1059] = {.lex_state = 70}, + [1059] = {.lex_state = 86}, [1060] = {.lex_state = 86}, [1061] = {.lex_state = 86}, [1062] = {.lex_state = 86}, - [1063] = {.lex_state = 86}, + [1063] = {.lex_state = 63}, [1064] = {.lex_state = 86}, [1065] = {.lex_state = 86}, [1066] = {.lex_state = 86}, [1067] = {.lex_state = 86}, [1068] = {.lex_state = 86}, [1069] = {.lex_state = 86}, - [1070] = {.lex_state = 86}, + [1070] = {.lex_state = 22}, [1071] = {.lex_state = 86}, [1072] = {.lex_state = 86}, [1073] = {.lex_state = 86}, [1074] = {.lex_state = 86}, [1075] = {.lex_state = 86}, - [1076] = {.lex_state = 53}, + [1076] = {.lex_state = 86}, [1077] = {.lex_state = 86}, - [1078] = {.lex_state = 86}, - [1079] = {.lex_state = 81}, + [1078] = {.lex_state = 91}, + [1079] = {.lex_state = 86}, [1080] = {.lex_state = 86}, - [1081] = {.lex_state = 86}, + [1081] = {.lex_state = 63}, [1082] = {.lex_state = 86}, [1083] = {.lex_state = 86}, [1084] = {.lex_state = 86}, - [1085] = {.lex_state = 53}, - [1086] = {.lex_state = 53}, + [1085] = {.lex_state = 86}, + [1086] = {.lex_state = 86}, [1087] = {.lex_state = 86}, - [1088] = {.lex_state = 85}, - [1089] = {.lex_state = 85}, - [1090] = {.lex_state = 85}, - [1091] = {.lex_state = 53}, - [1092] = {.lex_state = 16}, - [1093] = {.lex_state = 85}, - [1094] = {.lex_state = 85}, - [1095] = {.lex_state = 85}, - [1096] = {.lex_state = 85}, - [1097] = {.lex_state = 85}, - [1098] = {.lex_state = 85}, - [1099] = {.lex_state = 85}, - [1100] = {.lex_state = 66}, - [1101] = {.lex_state = 85}, - [1102] = {.lex_state = 85}, - [1103] = {.lex_state = 85}, - [1104] = {.lex_state = 85}, - [1105] = {.lex_state = 85}, - [1106] = {.lex_state = 85}, - [1107] = {.lex_state = 85}, - [1108] = {.lex_state = 53}, - [1109] = {.lex_state = 85}, - [1110] = {.lex_state = 85}, - [1111] = {.lex_state = 53}, - [1112] = {.lex_state = 89}, - [1113] = {.lex_state = 53}, - [1114] = {.lex_state = 85}, - [1115] = {.lex_state = 85}, - [1116] = {.lex_state = 85}, - [1117] = {.lex_state = 85}, - [1118] = {.lex_state = 85}, - [1119] = {.lex_state = 85}, - [1120] = {.lex_state = 85}, - [1121] = {.lex_state = 85}, - [1122] = {.lex_state = 85}, - [1123] = {.lex_state = 85}, - [1124] = {.lex_state = 85}, - [1125] = {.lex_state = 83}, - [1126] = {.lex_state = 85}, - [1127] = {.lex_state = 85}, - [1128] = {.lex_state = 53}, - [1129] = {.lex_state = 85}, - [1130] = {.lex_state = 53}, - [1131] = {.lex_state = 85}, - [1132] = {.lex_state = 85}, - [1133] = {.lex_state = 85}, - [1134] = {.lex_state = 85}, - [1135] = {.lex_state = 85}, - [1136] = {.lex_state = 85}, - [1137] = {.lex_state = 85}, - [1138] = {.lex_state = 53}, - [1139] = {.lex_state = 85}, - [1140] = {.lex_state = 85}, - [1141] = {.lex_state = 85}, - [1142] = {.lex_state = 89}, - [1143] = {.lex_state = 85}, - [1144] = {.lex_state = 53}, - [1145] = {.lex_state = 85}, - [1146] = {.lex_state = 85}, - [1147] = {.lex_state = 85}, - [1148] = {.lex_state = 85}, - [1149] = {.lex_state = 85}, - [1150] = {.lex_state = 85}, - [1151] = {.lex_state = 85}, - [1152] = {.lex_state = 85}, - [1153] = {.lex_state = 85}, - [1154] = {.lex_state = 85}, - [1155] = {.lex_state = 65}, - [1156] = {.lex_state = 85}, - [1157] = {.lex_state = 85}, - [1158] = {.lex_state = 85}, - [1159] = {.lex_state = 85}, - [1160] = {.lex_state = 85}, - [1161] = {.lex_state = 85}, - [1162] = {.lex_state = 85}, - [1163] = {.lex_state = 85}, - [1164] = {.lex_state = 85}, - [1165] = {.lex_state = 85}, - [1166] = {.lex_state = 85}, - [1167] = {.lex_state = 85}, - [1168] = {.lex_state = 85}, - [1169] = {.lex_state = 85}, - [1170] = {.lex_state = 85}, - [1171] = {.lex_state = 85}, - [1172] = {.lex_state = 83}, - [1173] = {.lex_state = 53}, - [1174] = {.lex_state = 85}, - [1175] = {.lex_state = 85}, - [1176] = {.lex_state = 85}, - [1177] = {.lex_state = 85}, - [1178] = {.lex_state = 85}, - [1179] = {.lex_state = 85}, - [1180] = {.lex_state = 85}, - [1181] = {.lex_state = 53}, - [1182] = {.lex_state = 53}, - [1183] = {.lex_state = 85}, - [1184] = {.lex_state = 53}, - [1185] = {.lex_state = 20}, - [1186] = {.lex_state = 68}, - [1187] = {.lex_state = 68}, - [1188] = {.lex_state = 68}, - [1189] = {.lex_state = 68}, - [1190] = {.lex_state = 68}, - [1191] = {.lex_state = 68}, - [1192] = {.lex_state = 68}, - [1193] = {.lex_state = 88}, - [1194] = {.lex_state = 68}, - [1195] = {.lex_state = 68}, - [1196] = {.lex_state = 68}, - [1197] = {.lex_state = 68}, - [1198] = {.lex_state = 68}, - [1199] = {.lex_state = 68}, - [1200] = {.lex_state = 68}, - [1201] = {.lex_state = 53}, - [1202] = {.lex_state = 68}, - [1203] = {.lex_state = 68}, - [1204] = {.lex_state = 68}, - [1205] = {.lex_state = 68}, - [1206] = {.lex_state = 68}, - [1207] = {.lex_state = 68}, - [1208] = {.lex_state = 68}, - [1209] = {.lex_state = 68}, - [1210] = {.lex_state = 68}, - [1211] = {.lex_state = 68}, - [1212] = {.lex_state = 68}, - [1213] = {.lex_state = 68}, - [1214] = {.lex_state = 68}, - [1215] = {.lex_state = 68}, - [1216] = {.lex_state = 68}, - [1217] = {.lex_state = 68}, - [1218] = {.lex_state = 68}, - [1219] = {.lex_state = 53}, - [1220] = {.lex_state = 68}, - [1221] = {.lex_state = 53}, - [1222] = {.lex_state = 68}, - [1223] = {.lex_state = 68}, - [1224] = {.lex_state = 68}, - [1225] = {.lex_state = 68}, - [1226] = {.lex_state = 68}, - [1227] = {.lex_state = 68}, - [1228] = {.lex_state = 68}, - [1229] = {.lex_state = 68}, - [1230] = {.lex_state = 68}, - [1231] = {.lex_state = 68}, - [1232] = {.lex_state = 68}, - [1233] = {.lex_state = 68}, - [1234] = {.lex_state = 53}, - [1235] = {.lex_state = 68}, - [1236] = {.lex_state = 68}, - [1237] = {.lex_state = 68}, - [1238] = {.lex_state = 68}, - [1239] = {.lex_state = 68}, - [1240] = {.lex_state = 68}, - [1241] = {.lex_state = 68}, - [1242] = {.lex_state = 68}, - [1243] = {.lex_state = 68}, - [1244] = {.lex_state = 68}, - [1245] = {.lex_state = 68}, - [1246] = {.lex_state = 68}, - [1247] = {.lex_state = 88}, - [1248] = {.lex_state = 68}, - [1249] = {.lex_state = 68}, - [1250] = {.lex_state = 68}, - [1251] = {.lex_state = 68}, - [1252] = {.lex_state = 68}, - [1253] = {.lex_state = 68}, - [1254] = {.lex_state = 68}, - [1255] = {.lex_state = 68}, - [1256] = {.lex_state = 68}, - [1257] = {.lex_state = 68}, - [1258] = {.lex_state = 68}, - [1259] = {.lex_state = 68}, - [1260] = {.lex_state = 68}, - [1261] = {.lex_state = 68}, - [1262] = {.lex_state = 68}, - [1263] = {.lex_state = 68}, - [1264] = {.lex_state = 58}, - [1265] = {.lex_state = 68}, - [1266] = {.lex_state = 68}, - [1267] = {.lex_state = 68}, - [1268] = {.lex_state = 68}, - [1269] = {.lex_state = 68}, - [1270] = {.lex_state = 68}, - [1271] = {.lex_state = 68}, - [1272] = {.lex_state = 75}, - [1273] = {.lex_state = 53}, - [1274] = {.lex_state = 53}, - [1275] = {.lex_state = 75}, - [1276] = {.lex_state = 75}, - [1277] = {.lex_state = 75}, - [1278] = {.lex_state = 75}, - [1279] = {.lex_state = 75}, - [1280] = {.lex_state = 75}, - [1281] = {.lex_state = 75}, - [1282] = {.lex_state = 65}, - [1283] = {.lex_state = 75}, - [1284] = {.lex_state = 75}, - [1285] = {.lex_state = 75}, - [1286] = {.lex_state = 75}, - [1287] = {.lex_state = 75}, - [1288] = {.lex_state = 75}, - [1289] = {.lex_state = 75}, - [1290] = {.lex_state = 53}, - [1291] = {.lex_state = 75}, - [1292] = {.lex_state = 75}, - [1293] = {.lex_state = 85}, - [1294] = {.lex_state = 53}, - [1295] = {.lex_state = 75}, - [1296] = {.lex_state = 75}, - [1297] = {.lex_state = 75}, - [1298] = {.lex_state = 75}, - [1299] = {.lex_state = 75}, - [1300] = {.lex_state = 75}, - [1301] = {.lex_state = 75}, - [1302] = {.lex_state = 53}, - [1303] = {.lex_state = 75}, - [1304] = {.lex_state = 75}, - [1305] = {.lex_state = 75}, - [1306] = {.lex_state = 84}, - [1307] = {.lex_state = 75}, - [1308] = {.lex_state = 75}, - [1309] = {.lex_state = 53}, - [1310] = {.lex_state = 75}, - [1311] = {.lex_state = 53}, - [1312] = {.lex_state = 75}, - [1313] = {.lex_state = 75}, - [1314] = {.lex_state = 75}, - [1315] = {.lex_state = 75}, - [1316] = {.lex_state = 75}, - [1317] = {.lex_state = 75}, - [1318] = {.lex_state = 75}, - [1319] = {.lex_state = 75}, - [1320] = {.lex_state = 75}, - [1321] = {.lex_state = 75}, - [1322] = {.lex_state = 85}, - [1323] = {.lex_state = 75}, - [1324] = {.lex_state = 53}, - [1325] = {.lex_state = 75}, - [1326] = {.lex_state = 75}, - [1327] = {.lex_state = 75}, - [1328] = {.lex_state = 75}, - [1329] = {.lex_state = 75}, - [1330] = {.lex_state = 75}, - [1331] = {.lex_state = 75}, - [1332] = {.lex_state = 75}, - [1333] = {.lex_state = 75}, - [1334] = {.lex_state = 75}, - [1335] = {.lex_state = 75}, - [1336] = {.lex_state = 75}, - [1337] = {.lex_state = 75}, - [1338] = {.lex_state = 75}, - [1339] = {.lex_state = 75}, - [1340] = {.lex_state = 75}, - [1341] = {.lex_state = 75}, - [1342] = {.lex_state = 75}, - [1343] = {.lex_state = 75}, - [1344] = {.lex_state = 75}, - [1345] = {.lex_state = 75}, - [1346] = {.lex_state = 75}, - [1347] = {.lex_state = 75}, - [1348] = {.lex_state = 75}, - [1349] = {.lex_state = 75}, - [1350] = {.lex_state = 75}, - [1351] = {.lex_state = 75}, - [1352] = {.lex_state = 84}, - [1353] = {.lex_state = 75}, - [1354] = {.lex_state = 75}, - [1355] = {.lex_state = 75}, - [1356] = {.lex_state = 75}, - [1357] = {.lex_state = 75}, - [1358] = {.lex_state = 75}, - [1359] = {.lex_state = 75}, - [1360] = {.lex_state = 75}, - [1361] = {.lex_state = 75}, - [1362] = {.lex_state = 75}, - [1363] = {.lex_state = 77}, - [1364] = {.lex_state = 53}, - [1365] = {.lex_state = 53}, - [1366] = {.lex_state = 77}, - [1367] = {.lex_state = 77}, - [1368] = {.lex_state = 77}, - [1369] = {.lex_state = 77}, - [1370] = {.lex_state = 77}, - [1371] = {.lex_state = 77}, - [1372] = {.lex_state = 77}, - [1373] = {.lex_state = 70}, - [1374] = {.lex_state = 77}, - [1375] = {.lex_state = 77}, - [1376] = {.lex_state = 77}, - [1377] = {.lex_state = 77}, - [1378] = {.lex_state = 77}, - [1379] = {.lex_state = 77}, - [1380] = {.lex_state = 77}, - [1381] = {.lex_state = 53}, - [1382] = {.lex_state = 77}, - [1383] = {.lex_state = 77}, - [1384] = {.lex_state = 86}, - [1385] = {.lex_state = 53}, - [1386] = {.lex_state = 77}, - [1387] = {.lex_state = 77}, - [1388] = {.lex_state = 77}, - [1389] = {.lex_state = 77}, - [1390] = {.lex_state = 77}, - [1391] = {.lex_state = 77}, - [1392] = {.lex_state = 77}, - [1393] = {.lex_state = 53}, - [1394] = {.lex_state = 77}, - [1395] = {.lex_state = 77}, - [1396] = {.lex_state = 77}, - [1397] = {.lex_state = 64}, - [1398] = {.lex_state = 77}, - [1399] = {.lex_state = 77}, - [1400] = {.lex_state = 53}, - [1401] = {.lex_state = 77}, - [1402] = {.lex_state = 53}, - [1403] = {.lex_state = 77}, - [1404] = {.lex_state = 77}, - [1405] = {.lex_state = 77}, - [1406] = {.lex_state = 77}, - [1407] = {.lex_state = 77}, - [1408] = {.lex_state = 77}, - [1409] = {.lex_state = 77}, - [1410] = {.lex_state = 77}, - [1411] = {.lex_state = 77}, - [1412] = {.lex_state = 77}, - [1413] = {.lex_state = 86}, - [1414] = {.lex_state = 77}, - [1415] = {.lex_state = 77}, - [1416] = {.lex_state = 77}, - [1417] = {.lex_state = 77}, - [1418] = {.lex_state = 77}, - [1419] = {.lex_state = 77}, - [1420] = {.lex_state = 77}, - [1421] = {.lex_state = 77}, - [1422] = {.lex_state = 77}, - [1423] = {.lex_state = 77}, - [1424] = {.lex_state = 77}, - [1425] = {.lex_state = 77}, - [1426] = {.lex_state = 77}, - [1427] = {.lex_state = 77}, - [1428] = {.lex_state = 77}, - [1429] = {.lex_state = 77}, - [1430] = {.lex_state = 77}, - [1431] = {.lex_state = 77}, - [1432] = {.lex_state = 77}, - [1433] = {.lex_state = 77}, - [1434] = {.lex_state = 77}, - [1435] = {.lex_state = 77}, - [1436] = {.lex_state = 77}, - [1437] = {.lex_state = 77}, - [1438] = {.lex_state = 77}, - [1439] = {.lex_state = 77}, - [1440] = {.lex_state = 77}, - [1441] = {.lex_state = 77}, - [1442] = {.lex_state = 64}, - [1443] = {.lex_state = 77}, - [1444] = {.lex_state = 77}, - [1445] = {.lex_state = 77}, - [1446] = {.lex_state = 77}, - [1447] = {.lex_state = 77}, - [1448] = {.lex_state = 77}, - [1449] = {.lex_state = 77}, - [1450] = {.lex_state = 77}, - [1451] = {.lex_state = 77}, - [1452] = {.lex_state = 77}, - [1453] = {.lex_state = 81}, - [1454] = {.lex_state = 81}, - [1455] = {.lex_state = 53}, - [1456] = {.lex_state = 81}, - [1457] = {.lex_state = 81}, - [1458] = {.lex_state = 81}, - [1459] = {.lex_state = 81}, - [1460] = {.lex_state = 81}, - [1461] = {.lex_state = 81}, - [1462] = {.lex_state = 81}, - [1463] = {.lex_state = 53}, - [1464] = {.lex_state = 81}, - [1465] = {.lex_state = 81}, - [1466] = {.lex_state = 81}, - [1467] = {.lex_state = 81}, - [1468] = {.lex_state = 81}, - [1469] = {.lex_state = 81}, - [1470] = {.lex_state = 81}, - [1471] = {.lex_state = 53}, - [1472] = {.lex_state = 81}, - [1473] = {.lex_state = 81}, - [1474] = {.lex_state = 81}, - [1475] = {.lex_state = 81}, - [1476] = {.lex_state = 81}, - [1477] = {.lex_state = 81}, - [1478] = {.lex_state = 81}, - [1479] = {.lex_state = 81}, - [1480] = {.lex_state = 81}, - [1481] = {.lex_state = 68}, - [1482] = {.lex_state = 81}, - [1483] = {.lex_state = 81}, - [1484] = {.lex_state = 81}, - [1485] = {.lex_state = 90}, - [1486] = {.lex_state = 81}, - [1487] = {.lex_state = 81}, - [1488] = {.lex_state = 53}, - [1489] = {.lex_state = 81}, - [1490] = {.lex_state = 53}, - [1491] = {.lex_state = 81}, - [1492] = {.lex_state = 81}, - [1493] = {.lex_state = 81}, - [1494] = {.lex_state = 81}, - [1495] = {.lex_state = 81}, - [1496] = {.lex_state = 81}, - [1497] = {.lex_state = 81}, - [1498] = {.lex_state = 81}, - [1499] = {.lex_state = 81}, - [1500] = {.lex_state = 81}, - [1501] = {.lex_state = 81}, - [1502] = {.lex_state = 81}, - [1503] = {.lex_state = 81}, - [1504] = {.lex_state = 81}, - [1505] = {.lex_state = 81}, - [1506] = {.lex_state = 81}, - [1507] = {.lex_state = 81}, - [1508] = {.lex_state = 81}, - [1509] = {.lex_state = 81}, - [1510] = {.lex_state = 81}, - [1511] = {.lex_state = 81}, - [1512] = {.lex_state = 81}, - [1513] = {.lex_state = 81}, - [1514] = {.lex_state = 81}, - [1515] = {.lex_state = 81}, - [1516] = {.lex_state = 81}, - [1517] = {.lex_state = 81}, - [1518] = {.lex_state = 81}, - [1519] = {.lex_state = 81}, - [1520] = {.lex_state = 81}, - [1521] = {.lex_state = 81}, - [1522] = {.lex_state = 81}, - [1523] = {.lex_state = 81}, - [1524] = {.lex_state = 81}, - [1525] = {.lex_state = 81}, - [1526] = {.lex_state = 81}, - [1527] = {.lex_state = 81}, - [1528] = {.lex_state = 81}, - [1529] = {.lex_state = 90}, - [1530] = {.lex_state = 81}, - [1531] = {.lex_state = 81}, - [1532] = {.lex_state = 81}, - [1533] = {.lex_state = 81}, - [1534] = {.lex_state = 81}, - [1535] = {.lex_state = 81}, - [1536] = {.lex_state = 81}, - [1537] = {.lex_state = 81}, - [1538] = {.lex_state = 81}, - [1539] = {.lex_state = 81}, - [1540] = {.lex_state = 83}, - [1541] = {.lex_state = 53}, - [1542] = {.lex_state = 53}, - [1543] = {.lex_state = 83}, - [1544] = {.lex_state = 83}, - [1545] = {.lex_state = 83}, - [1546] = {.lex_state = 83}, - [1547] = {.lex_state = 83}, - [1548] = {.lex_state = 83}, - [1549] = {.lex_state = 83}, - [1550] = {.lex_state = 53}, - [1551] = {.lex_state = 83}, - [1552] = {.lex_state = 83}, - [1553] = {.lex_state = 83}, - [1554] = {.lex_state = 83}, - [1555] = {.lex_state = 83}, - [1556] = {.lex_state = 83}, - [1557] = {.lex_state = 83}, - [1558] = {.lex_state = 53}, - [1559] = {.lex_state = 83}, - [1560] = {.lex_state = 83}, - [1561] = {.lex_state = 83}, - [1562] = {.lex_state = 83}, - [1563] = {.lex_state = 83}, - [1564] = {.lex_state = 83}, - [1565] = {.lex_state = 83}, - [1566] = {.lex_state = 83}, - [1567] = {.lex_state = 83}, - [1568] = {.lex_state = 89}, - [1569] = {.lex_state = 83}, - [1570] = {.lex_state = 83}, - [1571] = {.lex_state = 83}, - [1572] = {.lex_state = 89}, - [1573] = {.lex_state = 83}, - [1574] = {.lex_state = 83}, - [1575] = {.lex_state = 53}, - [1576] = {.lex_state = 83}, - [1577] = {.lex_state = 53}, - [1578] = {.lex_state = 83}, - [1579] = {.lex_state = 83}, - [1580] = {.lex_state = 83}, - [1581] = {.lex_state = 83}, - [1582] = {.lex_state = 83}, - [1583] = {.lex_state = 83}, - [1584] = {.lex_state = 83}, - [1585] = {.lex_state = 83}, - [1586] = {.lex_state = 83}, - [1587] = {.lex_state = 83}, - [1588] = {.lex_state = 83}, - [1589] = {.lex_state = 83}, - [1590] = {.lex_state = 83}, - [1591] = {.lex_state = 83}, - [1592] = {.lex_state = 83}, - [1593] = {.lex_state = 83}, - [1594] = {.lex_state = 83}, - [1595] = {.lex_state = 83}, - [1596] = {.lex_state = 83}, - [1597] = {.lex_state = 83}, - [1598] = {.lex_state = 83}, - [1599] = {.lex_state = 83}, - [1600] = {.lex_state = 83}, - [1601] = {.lex_state = 83}, - [1602] = {.lex_state = 83}, - [1603] = {.lex_state = 83}, - [1604] = {.lex_state = 83}, - [1605] = {.lex_state = 83}, - [1606] = {.lex_state = 83}, - [1607] = {.lex_state = 83}, - [1608] = {.lex_state = 83}, - [1609] = {.lex_state = 83}, - [1610] = {.lex_state = 83}, - [1611] = {.lex_state = 83}, - [1612] = {.lex_state = 83}, - [1613] = {.lex_state = 83}, - [1614] = {.lex_state = 83}, - [1615] = {.lex_state = 83}, - [1616] = {.lex_state = 89}, - [1617] = {.lex_state = 83}, - [1618] = {.lex_state = 83}, - [1619] = {.lex_state = 83}, - [1620] = {.lex_state = 83}, - [1621] = {.lex_state = 83}, - [1622] = {.lex_state = 83}, - [1623] = {.lex_state = 83}, - [1624] = {.lex_state = 83}, - [1625] = {.lex_state = 83}, - [1626] = {.lex_state = 83}, - [1627] = {.lex_state = 84}, - [1628] = {.lex_state = 53}, - [1629] = {.lex_state = 53}, - [1630] = {.lex_state = 84}, - [1631] = {.lex_state = 84}, - [1632] = {.lex_state = 84}, - [1633] = {.lex_state = 84}, - [1634] = {.lex_state = 84}, - [1635] = {.lex_state = 84}, - [1636] = {.lex_state = 84}, - [1637] = {.lex_state = 53}, - [1638] = {.lex_state = 84}, - [1639] = {.lex_state = 84}, - [1640] = {.lex_state = 84}, - [1641] = {.lex_state = 84}, - [1642] = {.lex_state = 84}, - [1643] = {.lex_state = 84}, - [1644] = {.lex_state = 84}, - [1645] = {.lex_state = 84}, - [1646] = {.lex_state = 84}, - [1647] = {.lex_state = 84}, - [1648] = {.lex_state = 84}, - [1649] = {.lex_state = 84}, - [1650] = {.lex_state = 84}, - [1651] = {.lex_state = 84}, - [1652] = {.lex_state = 84}, - [1653] = {.lex_state = 84}, - [1654] = {.lex_state = 54}, - [1655] = {.lex_state = 84}, - [1656] = {.lex_state = 84}, - [1657] = {.lex_state = 84}, - [1658] = {.lex_state = 68}, - [1659] = {.lex_state = 84}, - [1660] = {.lex_state = 84}, - [1661] = {.lex_state = 84}, - [1662] = {.lex_state = 53}, - [1663] = {.lex_state = 84}, - [1664] = {.lex_state = 84}, - [1665] = {.lex_state = 84}, - [1666] = {.lex_state = 84}, - [1667] = {.lex_state = 84}, - [1668] = {.lex_state = 84}, - [1669] = {.lex_state = 84}, - [1670] = {.lex_state = 84}, - [1671] = {.lex_state = 84}, - [1672] = {.lex_state = 84}, - [1673] = {.lex_state = 84}, - [1674] = {.lex_state = 84}, - [1675] = {.lex_state = 84}, - [1676] = {.lex_state = 84}, - [1677] = {.lex_state = 84}, - [1678] = {.lex_state = 84}, - [1679] = {.lex_state = 84}, - [1680] = {.lex_state = 84}, - [1681] = {.lex_state = 84}, - [1682] = {.lex_state = 84}, - [1683] = {.lex_state = 84}, - [1684] = {.lex_state = 84}, - [1685] = {.lex_state = 84}, - [1686] = {.lex_state = 84}, - [1687] = {.lex_state = 84}, - [1688] = {.lex_state = 84}, - [1689] = {.lex_state = 84}, - [1690] = {.lex_state = 84}, - [1691] = {.lex_state = 84}, - [1692] = {.lex_state = 84}, - [1693] = {.lex_state = 84}, - [1694] = {.lex_state = 84}, - [1695] = {.lex_state = 84}, - [1696] = {.lex_state = 84}, - [1697] = {.lex_state = 84}, - [1698] = {.lex_state = 84}, - [1699] = {.lex_state = 84}, - [1700] = {.lex_state = 84}, - [1701] = {.lex_state = 68}, - [1702] = {.lex_state = 84}, - [1703] = {.lex_state = 84}, - [1704] = {.lex_state = 84}, - [1705] = {.lex_state = 84}, - [1706] = {.lex_state = 84}, - [1707] = {.lex_state = 84}, - [1708] = {.lex_state = 84}, - [1709] = {.lex_state = 84}, - [1710] = {.lex_state = 84}, - [1711] = {.lex_state = 84}, - [1712] = {.lex_state = 64}, - [1713] = {.lex_state = 53}, - [1714] = {.lex_state = 53}, - [1715] = {.lex_state = 64}, - [1716] = {.lex_state = 64}, - [1717] = {.lex_state = 64}, - [1718] = {.lex_state = 53}, - [1719] = {.lex_state = 64}, - [1720] = {.lex_state = 64}, - [1721] = {.lex_state = 64}, - [1722] = {.lex_state = 53}, - [1723] = {.lex_state = 64}, - [1724] = {.lex_state = 64}, - [1725] = {.lex_state = 64}, - [1726] = {.lex_state = 64}, - [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 64}, - [1729] = {.lex_state = 64}, - [1730] = {.lex_state = 64}, - [1731] = {.lex_state = 64}, - [1732] = {.lex_state = 64}, - [1733] = {.lex_state = 64}, - [1734] = {.lex_state = 64}, - [1735] = {.lex_state = 64}, - [1736] = {.lex_state = 64}, - [1737] = {.lex_state = 64}, - [1738] = {.lex_state = 64}, - [1739] = {.lex_state = 89}, - [1740] = {.lex_state = 64}, - [1741] = {.lex_state = 64}, - [1742] = {.lex_state = 64}, - [1743] = {.lex_state = 85}, - [1744] = {.lex_state = 64}, - [1745] = {.lex_state = 64}, - [1746] = {.lex_state = 64}, - [1747] = {.lex_state = 53}, - [1748] = {.lex_state = 64}, - [1749] = {.lex_state = 64}, - [1750] = {.lex_state = 64}, - [1751] = {.lex_state = 64}, - [1752] = {.lex_state = 64}, - [1753] = {.lex_state = 64}, - [1754] = {.lex_state = 64}, - [1755] = {.lex_state = 64}, - [1756] = {.lex_state = 64}, - [1757] = {.lex_state = 64}, - [1758] = {.lex_state = 64}, - [1759] = {.lex_state = 64}, - [1760] = {.lex_state = 64}, - [1761] = {.lex_state = 64}, - [1762] = {.lex_state = 64}, - [1763] = {.lex_state = 64}, - [1764] = {.lex_state = 64}, - [1765] = {.lex_state = 64}, - [1766] = {.lex_state = 64}, - [1767] = {.lex_state = 64}, - [1768] = {.lex_state = 64}, - [1769] = {.lex_state = 64}, - [1770] = {.lex_state = 64}, - [1771] = {.lex_state = 64}, - [1772] = {.lex_state = 64}, - [1773] = {.lex_state = 64}, - [1774] = {.lex_state = 64}, - [1775] = {.lex_state = 64}, - [1776] = {.lex_state = 64}, - [1777] = {.lex_state = 64}, - [1778] = {.lex_state = 64}, - [1779] = {.lex_state = 64}, - [1780] = {.lex_state = 64}, - [1781] = {.lex_state = 64}, - [1782] = {.lex_state = 64}, - [1783] = {.lex_state = 64}, - [1784] = {.lex_state = 64}, - [1785] = {.lex_state = 64}, - [1786] = {.lex_state = 85}, - [1787] = {.lex_state = 64}, - [1788] = {.lex_state = 64}, - [1789] = {.lex_state = 64}, - [1790] = {.lex_state = 64}, - [1791] = {.lex_state = 64}, - [1792] = {.lex_state = 64}, - [1793] = {.lex_state = 64}, - [1794] = {.lex_state = 64}, - [1795] = {.lex_state = 64}, - [1796] = {.lex_state = 64}, + [1088] = {.lex_state = 86}, + [1089] = {.lex_state = 92}, + [1090] = {.lex_state = 63}, + [1091] = {.lex_state = 63}, + [1092] = {.lex_state = 86}, + [1093] = {.lex_state = 78}, + [1094] = {.lex_state = 78}, + [1095] = {.lex_state = 78}, + [1096] = {.lex_state = 78}, + [1097] = {.lex_state = 78}, + [1098] = {.lex_state = 78}, + [1099] = {.lex_state = 78}, + [1100] = {.lex_state = 78}, + [1101] = {.lex_state = 84}, + [1102] = {.lex_state = 78}, + [1103] = {.lex_state = 78}, + [1104] = {.lex_state = 78}, + [1105] = {.lex_state = 78}, + [1106] = {.lex_state = 73}, + [1107] = {.lex_state = 78}, + [1108] = {.lex_state = 78}, + [1109] = {.lex_state = 78}, + [1110] = {.lex_state = 78}, + [1111] = {.lex_state = 78}, + [1112] = {.lex_state = 78}, + [1113] = {.lex_state = 78}, + [1114] = {.lex_state = 78}, + [1115] = {.lex_state = 78}, + [1116] = {.lex_state = 78}, + [1117] = {.lex_state = 78}, + [1118] = {.lex_state = 92}, + [1119] = {.lex_state = 78}, + [1120] = {.lex_state = 78}, + [1121] = {.lex_state = 78}, + [1122] = {.lex_state = 78}, + [1123] = {.lex_state = 78}, + [1124] = {.lex_state = 78}, + [1125] = {.lex_state = 78}, + [1126] = {.lex_state = 78}, + [1127] = {.lex_state = 78}, + [1128] = {.lex_state = 78}, + [1129] = {.lex_state = 78}, + [1130] = {.lex_state = 78}, + [1131] = {.lex_state = 78}, + [1132] = {.lex_state = 78}, + [1133] = {.lex_state = 78}, + [1134] = {.lex_state = 78}, + [1135] = {.lex_state = 78}, + [1136] = {.lex_state = 78}, + [1137] = {.lex_state = 78}, + [1138] = {.lex_state = 78}, + [1139] = {.lex_state = 78}, + [1140] = {.lex_state = 78}, + [1141] = {.lex_state = 78}, + [1142] = {.lex_state = 78}, + [1143] = {.lex_state = 78}, + [1144] = {.lex_state = 78}, + [1145] = {.lex_state = 78}, + [1146] = {.lex_state = 78}, + [1147] = {.lex_state = 78}, + [1148] = {.lex_state = 84}, + [1149] = {.lex_state = 78}, + [1150] = {.lex_state = 70}, + [1151] = {.lex_state = 78}, + [1152] = {.lex_state = 78}, + [1153] = {.lex_state = 78}, + [1154] = {.lex_state = 78}, + [1155] = {.lex_state = 78}, + [1156] = {.lex_state = 78}, + [1157] = {.lex_state = 78}, + [1158] = {.lex_state = 78}, + [1159] = {.lex_state = 78}, + [1160] = {.lex_state = 78}, + [1161] = {.lex_state = 18}, + [1162] = {.lex_state = 78}, + [1163] = {.lex_state = 78}, + [1164] = {.lex_state = 78}, + [1165] = {.lex_state = 78}, + [1166] = {.lex_state = 78}, + [1167] = {.lex_state = 63}, + [1168] = {.lex_state = 78}, + [1169] = {.lex_state = 75}, + [1170] = {.lex_state = 78}, + [1171] = {.lex_state = 78}, + [1172] = {.lex_state = 78}, + [1173] = {.lex_state = 78}, + [1174] = {.lex_state = 78}, + [1175] = {.lex_state = 78}, + [1176] = {.lex_state = 63}, + [1177] = {.lex_state = 63}, + [1178] = {.lex_state = 78}, + [1179] = {.lex_state = 66}, + [1180] = {.lex_state = 66}, + [1181] = {.lex_state = 66}, + [1182] = {.lex_state = 66}, + [1183] = {.lex_state = 66}, + [1184] = {.lex_state = 66}, + [1185] = {.lex_state = 66}, + [1186] = {.lex_state = 66}, + [1187] = {.lex_state = 66}, + [1188] = {.lex_state = 66}, + [1189] = {.lex_state = 66}, + [1190] = {.lex_state = 66}, + [1191] = {.lex_state = 66}, + [1192] = {.lex_state = 66}, + [1193] = {.lex_state = 63}, + [1194] = {.lex_state = 66}, + [1195] = {.lex_state = 66}, + [1196] = {.lex_state = 66}, + [1197] = {.lex_state = 66}, + [1198] = {.lex_state = 66}, + [1199] = {.lex_state = 66}, + [1200] = {.lex_state = 66}, + [1201] = {.lex_state = 66}, + [1202] = {.lex_state = 66}, + [1203] = {.lex_state = 66}, + [1204] = {.lex_state = 66}, + [1205] = {.lex_state = 66}, + [1206] = {.lex_state = 66}, + [1207] = {.lex_state = 66}, + [1208] = {.lex_state = 66}, + [1209] = {.lex_state = 20}, + [1210] = {.lex_state = 66}, + [1211] = {.lex_state = 66}, + [1212] = {.lex_state = 66}, + [1213] = {.lex_state = 66}, + [1214] = {.lex_state = 66}, + [1215] = {.lex_state = 66}, + [1216] = {.lex_state = 66}, + [1217] = {.lex_state = 66}, + [1218] = {.lex_state = 66}, + [1219] = {.lex_state = 66}, + [1220] = {.lex_state = 66}, + [1221] = {.lex_state = 66}, + [1222] = {.lex_state = 66}, + [1223] = {.lex_state = 66}, + [1224] = {.lex_state = 66}, + [1225] = {.lex_state = 66}, + [1226] = {.lex_state = 66}, + [1227] = {.lex_state = 66}, + [1228] = {.lex_state = 66}, + [1229] = {.lex_state = 66}, + [1230] = {.lex_state = 66}, + [1231] = {.lex_state = 66}, + [1232] = {.lex_state = 66}, + [1233] = {.lex_state = 66}, + [1234] = {.lex_state = 66}, + [1235] = {.lex_state = 66}, + [1236] = {.lex_state = 66}, + [1237] = {.lex_state = 66}, + [1238] = {.lex_state = 75}, + [1239] = {.lex_state = 66}, + [1240] = {.lex_state = 66}, + [1241] = {.lex_state = 66}, + [1242] = {.lex_state = 66}, + [1243] = {.lex_state = 66}, + [1244] = {.lex_state = 66}, + [1245] = {.lex_state = 66}, + [1246] = {.lex_state = 66}, + [1247] = {.lex_state = 66}, + [1248] = {.lex_state = 74}, + [1249] = {.lex_state = 66}, + [1250] = {.lex_state = 63}, + [1251] = {.lex_state = 74}, + [1252] = {.lex_state = 74}, + [1253] = {.lex_state = 74}, + [1254] = {.lex_state = 74}, + [1255] = {.lex_state = 74}, + [1256] = {.lex_state = 74}, + [1257] = {.lex_state = 74}, + [1258] = {.lex_state = 70}, + [1259] = {.lex_state = 74}, + [1260] = {.lex_state = 74}, + [1261] = {.lex_state = 74}, + [1262] = {.lex_state = 74}, + [1263] = {.lex_state = 74}, + [1264] = {.lex_state = 74}, + [1265] = {.lex_state = 63}, + [1266] = {.lex_state = 74}, + [1267] = {.lex_state = 74}, + [1268] = {.lex_state = 78}, + [1269] = {.lex_state = 63}, + [1270] = {.lex_state = 74}, + [1271] = {.lex_state = 74}, + [1272] = {.lex_state = 74}, + [1273] = {.lex_state = 74}, + [1274] = {.lex_state = 74}, + [1275] = {.lex_state = 74}, + [1276] = {.lex_state = 74}, + [1277] = {.lex_state = 66}, + [1278] = {.lex_state = 74}, + [1279] = {.lex_state = 74}, + [1280] = {.lex_state = 82}, + [1281] = {.lex_state = 74}, + [1282] = {.lex_state = 74}, + [1283] = {.lex_state = 63}, + [1284] = {.lex_state = 74}, + [1285] = {.lex_state = 63}, + [1286] = {.lex_state = 74}, + [1287] = {.lex_state = 74}, + [1288] = {.lex_state = 74}, + [1289] = {.lex_state = 74}, + [1290] = {.lex_state = 74}, + [1291] = {.lex_state = 74}, + [1292] = {.lex_state = 74}, + [1293] = {.lex_state = 74}, + [1294] = {.lex_state = 74}, + [1295] = {.lex_state = 74}, + [1296] = {.lex_state = 78}, + [1297] = {.lex_state = 74}, + [1298] = {.lex_state = 63}, + [1299] = {.lex_state = 74}, + [1300] = {.lex_state = 74}, + [1301] = {.lex_state = 74}, + [1302] = {.lex_state = 74}, + [1303] = {.lex_state = 74}, + [1304] = {.lex_state = 74}, + [1305] = {.lex_state = 74}, + [1306] = {.lex_state = 74}, + [1307] = {.lex_state = 74}, + [1308] = {.lex_state = 74}, + [1309] = {.lex_state = 74}, + [1310] = {.lex_state = 74}, + [1311] = {.lex_state = 74}, + [1312] = {.lex_state = 74}, + [1313] = {.lex_state = 74}, + [1314] = {.lex_state = 74}, + [1315] = {.lex_state = 74}, + [1316] = {.lex_state = 74}, + [1317] = {.lex_state = 74}, + [1318] = {.lex_state = 74}, + [1319] = {.lex_state = 74}, + [1320] = {.lex_state = 74}, + [1321] = {.lex_state = 74}, + [1322] = {.lex_state = 74}, + [1323] = {.lex_state = 74}, + [1324] = {.lex_state = 74}, + [1325] = {.lex_state = 74}, + [1326] = {.lex_state = 82}, + [1327] = {.lex_state = 74}, + [1328] = {.lex_state = 74}, + [1329] = {.lex_state = 74}, + [1330] = {.lex_state = 74}, + [1331] = {.lex_state = 74}, + [1332] = {.lex_state = 74}, + [1333] = {.lex_state = 74}, + [1334] = {.lex_state = 74}, + [1335] = {.lex_state = 74}, + [1336] = {.lex_state = 74}, + [1337] = {.lex_state = 72}, + [1338] = {.lex_state = 63}, + [1339] = {.lex_state = 63}, + [1340] = {.lex_state = 72}, + [1341] = {.lex_state = 72}, + [1342] = {.lex_state = 66}, + [1343] = {.lex_state = 72}, + [1344] = {.lex_state = 72}, + [1345] = {.lex_state = 72}, + [1346] = {.lex_state = 72}, + [1347] = {.lex_state = 63}, + [1348] = {.lex_state = 72}, + [1349] = {.lex_state = 72}, + [1350] = {.lex_state = 72}, + [1351] = {.lex_state = 72}, + [1352] = {.lex_state = 72}, + [1353] = {.lex_state = 72}, + [1354] = {.lex_state = 63}, + [1355] = {.lex_state = 72}, + [1356] = {.lex_state = 72}, + [1357] = {.lex_state = 86}, + [1358] = {.lex_state = 66}, + [1359] = {.lex_state = 72}, + [1360] = {.lex_state = 72}, + [1361] = {.lex_state = 72}, + [1362] = {.lex_state = 72}, + [1363] = {.lex_state = 72}, + [1364] = {.lex_state = 72}, + [1365] = {.lex_state = 72}, + [1366] = {.lex_state = 66}, + [1367] = {.lex_state = 72}, + [1368] = {.lex_state = 72}, + [1369] = {.lex_state = 76}, + [1370] = {.lex_state = 72}, + [1371] = {.lex_state = 72}, + [1372] = {.lex_state = 63}, + [1373] = {.lex_state = 72}, + [1374] = {.lex_state = 63}, + [1375] = {.lex_state = 72}, + [1376] = {.lex_state = 72}, + [1377] = {.lex_state = 72}, + [1378] = {.lex_state = 72}, + [1379] = {.lex_state = 72}, + [1380] = {.lex_state = 72}, + [1381] = {.lex_state = 72}, + [1382] = {.lex_state = 72}, + [1383] = {.lex_state = 72}, + [1384] = {.lex_state = 72}, + [1385] = {.lex_state = 86}, + [1386] = {.lex_state = 72}, + [1387] = {.lex_state = 72}, + [1388] = {.lex_state = 72}, + [1389] = {.lex_state = 72}, + [1390] = {.lex_state = 72}, + [1391] = {.lex_state = 72}, + [1392] = {.lex_state = 72}, + [1393] = {.lex_state = 72}, + [1394] = {.lex_state = 72}, + [1395] = {.lex_state = 72}, + [1396] = {.lex_state = 72}, + [1397] = {.lex_state = 72}, + [1398] = {.lex_state = 72}, + [1399] = {.lex_state = 72}, + [1400] = {.lex_state = 72}, + [1401] = {.lex_state = 72}, + [1402] = {.lex_state = 72}, + [1403] = {.lex_state = 72}, + [1404] = {.lex_state = 72}, + [1405] = {.lex_state = 72}, + [1406] = {.lex_state = 72}, + [1407] = {.lex_state = 72}, + [1408] = {.lex_state = 72}, + [1409] = {.lex_state = 72}, + [1410] = {.lex_state = 72}, + [1411] = {.lex_state = 72}, + [1412] = {.lex_state = 72}, + [1413] = {.lex_state = 72}, + [1414] = {.lex_state = 76}, + [1415] = {.lex_state = 72}, + [1416] = {.lex_state = 72}, + [1417] = {.lex_state = 72}, + [1418] = {.lex_state = 72}, + [1419] = {.lex_state = 72}, + [1420] = {.lex_state = 72}, + [1421] = {.lex_state = 72}, + [1422] = {.lex_state = 72}, + [1423] = {.lex_state = 72}, + [1424] = {.lex_state = 72}, + [1425] = {.lex_state = 80}, + [1426] = {.lex_state = 63}, + [1427] = {.lex_state = 63}, + [1428] = {.lex_state = 80}, + [1429] = {.lex_state = 80}, + [1430] = {.lex_state = 80}, + [1431] = {.lex_state = 80}, + [1432] = {.lex_state = 80}, + [1433] = {.lex_state = 80}, + [1434] = {.lex_state = 80}, + [1435] = {.lex_state = 63}, + [1436] = {.lex_state = 80}, + [1437] = {.lex_state = 80}, + [1438] = {.lex_state = 80}, + [1439] = {.lex_state = 80}, + [1440] = {.lex_state = 80}, + [1441] = {.lex_state = 80}, + [1442] = {.lex_state = 63}, + [1443] = {.lex_state = 80}, + [1444] = {.lex_state = 80}, + [1445] = {.lex_state = 80}, + [1446] = {.lex_state = 80}, + [1447] = {.lex_state = 80}, + [1448] = {.lex_state = 80}, + [1449] = {.lex_state = 80}, + [1450] = {.lex_state = 80}, + [1451] = {.lex_state = 80}, + [1452] = {.lex_state = 66}, + [1453] = {.lex_state = 80}, + [1454] = {.lex_state = 80}, + [1455] = {.lex_state = 90}, + [1456] = {.lex_state = 80}, + [1457] = {.lex_state = 80}, + [1458] = {.lex_state = 63}, + [1459] = {.lex_state = 80}, + [1460] = {.lex_state = 63}, + [1461] = {.lex_state = 80}, + [1462] = {.lex_state = 80}, + [1463] = {.lex_state = 80}, + [1464] = {.lex_state = 80}, + [1465] = {.lex_state = 80}, + [1466] = {.lex_state = 80}, + [1467] = {.lex_state = 80}, + [1468] = {.lex_state = 80}, + [1469] = {.lex_state = 80}, + [1470] = {.lex_state = 80}, + [1471] = {.lex_state = 80}, + [1472] = {.lex_state = 80}, + [1473] = {.lex_state = 80}, + [1474] = {.lex_state = 80}, + [1475] = {.lex_state = 80}, + [1476] = {.lex_state = 80}, + [1477] = {.lex_state = 80}, + [1478] = {.lex_state = 80}, + [1479] = {.lex_state = 80}, + [1480] = {.lex_state = 80}, + [1481] = {.lex_state = 80}, + [1482] = {.lex_state = 80}, + [1483] = {.lex_state = 80}, + [1484] = {.lex_state = 80}, + [1485] = {.lex_state = 80}, + [1486] = {.lex_state = 80}, + [1487] = {.lex_state = 80}, + [1488] = {.lex_state = 80}, + [1489] = {.lex_state = 80}, + [1490] = {.lex_state = 80}, + [1491] = {.lex_state = 80}, + [1492] = {.lex_state = 80}, + [1493] = {.lex_state = 80}, + [1494] = {.lex_state = 80}, + [1495] = {.lex_state = 80}, + [1496] = {.lex_state = 80}, + [1497] = {.lex_state = 80}, + [1498] = {.lex_state = 80}, + [1499] = {.lex_state = 90}, + [1500] = {.lex_state = 80}, + [1501] = {.lex_state = 80}, + [1502] = {.lex_state = 80}, + [1503] = {.lex_state = 80}, + [1504] = {.lex_state = 80}, + [1505] = {.lex_state = 80}, + [1506] = {.lex_state = 80}, + [1507] = {.lex_state = 80}, + [1508] = {.lex_state = 80}, + [1509] = {.lex_state = 80}, + [1510] = {.lex_state = 84}, + [1511] = {.lex_state = 63}, + [1512] = {.lex_state = 63}, + [1513] = {.lex_state = 84}, + [1514] = {.lex_state = 84}, + [1515] = {.lex_state = 84}, + [1516] = {.lex_state = 84}, + [1517] = {.lex_state = 84}, + [1518] = {.lex_state = 84}, + [1519] = {.lex_state = 84}, + [1520] = {.lex_state = 63}, + [1521] = {.lex_state = 84}, + [1522] = {.lex_state = 84}, + [1523] = {.lex_state = 84}, + [1524] = {.lex_state = 84}, + [1525] = {.lex_state = 84}, + [1526] = {.lex_state = 84}, + [1527] = {.lex_state = 63}, + [1528] = {.lex_state = 84}, + [1529] = {.lex_state = 84}, + [1530] = {.lex_state = 84}, + [1531] = {.lex_state = 84}, + [1532] = {.lex_state = 84}, + [1533] = {.lex_state = 84}, + [1534] = {.lex_state = 84}, + [1535] = {.lex_state = 84}, + [1536] = {.lex_state = 84}, + [1537] = {.lex_state = 73}, + [1538] = {.lex_state = 84}, + [1539] = {.lex_state = 84}, + [1540] = {.lex_state = 92}, + [1541] = {.lex_state = 84}, + [1542] = {.lex_state = 84}, + [1543] = {.lex_state = 63}, + [1544] = {.lex_state = 84}, + [1545] = {.lex_state = 63}, + [1546] = {.lex_state = 84}, + [1547] = {.lex_state = 84}, + [1548] = {.lex_state = 84}, + [1549] = {.lex_state = 84}, + [1550] = {.lex_state = 84}, + [1551] = {.lex_state = 84}, + [1552] = {.lex_state = 84}, + [1553] = {.lex_state = 84}, + [1554] = {.lex_state = 84}, + [1555] = {.lex_state = 84}, + [1556] = {.lex_state = 84}, + [1557] = {.lex_state = 84}, + [1558] = {.lex_state = 84}, + [1559] = {.lex_state = 84}, + [1560] = {.lex_state = 84}, + [1561] = {.lex_state = 84}, + [1562] = {.lex_state = 84}, + [1563] = {.lex_state = 84}, + [1564] = {.lex_state = 84}, + [1565] = {.lex_state = 84}, + [1566] = {.lex_state = 84}, + [1567] = {.lex_state = 84}, + [1568] = {.lex_state = 84}, + [1569] = {.lex_state = 84}, + [1570] = {.lex_state = 84}, + [1571] = {.lex_state = 84}, + [1572] = {.lex_state = 84}, + [1573] = {.lex_state = 84}, + [1574] = {.lex_state = 84}, + [1575] = {.lex_state = 84}, + [1576] = {.lex_state = 84}, + [1577] = {.lex_state = 84}, + [1578] = {.lex_state = 84}, + [1579] = {.lex_state = 84}, + [1580] = {.lex_state = 84}, + [1581] = {.lex_state = 84}, + [1582] = {.lex_state = 84}, + [1583] = {.lex_state = 84}, + [1584] = {.lex_state = 92}, + [1585] = {.lex_state = 84}, + [1586] = {.lex_state = 84}, + [1587] = {.lex_state = 84}, + [1588] = {.lex_state = 84}, + [1589] = {.lex_state = 84}, + [1590] = {.lex_state = 84}, + [1591] = {.lex_state = 84}, + [1592] = {.lex_state = 84}, + [1593] = {.lex_state = 84}, + [1594] = {.lex_state = 84}, + [1595] = {.lex_state = 82}, + [1596] = {.lex_state = 63}, + [1597] = {.lex_state = 63}, + [1598] = {.lex_state = 82}, + [1599] = {.lex_state = 82}, + [1600] = {.lex_state = 82}, + [1601] = {.lex_state = 82}, + [1602] = {.lex_state = 82}, + [1603] = {.lex_state = 82}, + [1604] = {.lex_state = 82}, + [1605] = {.lex_state = 63}, + [1606] = {.lex_state = 82}, + [1607] = {.lex_state = 82}, + [1608] = {.lex_state = 82}, + [1609] = {.lex_state = 82}, + [1610] = {.lex_state = 82}, + [1611] = {.lex_state = 82}, + [1612] = {.lex_state = 82}, + [1613] = {.lex_state = 82}, + [1614] = {.lex_state = 82}, + [1615] = {.lex_state = 82}, + [1616] = {.lex_state = 82}, + [1617] = {.lex_state = 82}, + [1618] = {.lex_state = 82}, + [1619] = {.lex_state = 82}, + [1620] = {.lex_state = 82}, + [1621] = {.lex_state = 66}, + [1622] = {.lex_state = 82}, + [1623] = {.lex_state = 82}, + [1624] = {.lex_state = 66}, + [1625] = {.lex_state = 82}, + [1626] = {.lex_state = 82}, + [1627] = {.lex_state = 82}, + [1628] = {.lex_state = 63}, + [1629] = {.lex_state = 82}, + [1630] = {.lex_state = 82}, + [1631] = {.lex_state = 82}, + [1632] = {.lex_state = 82}, + [1633] = {.lex_state = 82}, + [1634] = {.lex_state = 82}, + [1635] = {.lex_state = 82}, + [1636] = {.lex_state = 82}, + [1637] = {.lex_state = 82}, + [1638] = {.lex_state = 82}, + [1639] = {.lex_state = 82}, + [1640] = {.lex_state = 82}, + [1641] = {.lex_state = 82}, + [1642] = {.lex_state = 82}, + [1643] = {.lex_state = 82}, + [1644] = {.lex_state = 82}, + [1645] = {.lex_state = 82}, + [1646] = {.lex_state = 82}, + [1647] = {.lex_state = 82}, + [1648] = {.lex_state = 82}, + [1649] = {.lex_state = 82}, + [1650] = {.lex_state = 82}, + [1651] = {.lex_state = 82}, + [1652] = {.lex_state = 82}, + [1653] = {.lex_state = 82}, + [1654] = {.lex_state = 82}, + [1655] = {.lex_state = 82}, + [1656] = {.lex_state = 82}, + [1657] = {.lex_state = 82}, + [1658] = {.lex_state = 82}, + [1659] = {.lex_state = 82}, + [1660] = {.lex_state = 82}, + [1661] = {.lex_state = 82}, + [1662] = {.lex_state = 82}, + [1663] = {.lex_state = 82}, + [1664] = {.lex_state = 82}, + [1665] = {.lex_state = 82}, + [1666] = {.lex_state = 82}, + [1667] = {.lex_state = 66}, + [1668] = {.lex_state = 82}, + [1669] = {.lex_state = 82}, + [1670] = {.lex_state = 82}, + [1671] = {.lex_state = 82}, + [1672] = {.lex_state = 82}, + [1673] = {.lex_state = 82}, + [1674] = {.lex_state = 82}, + [1675] = {.lex_state = 82}, + [1676] = {.lex_state = 82}, + [1677] = {.lex_state = 82}, + [1678] = {.lex_state = 76}, + [1679] = {.lex_state = 63}, + [1680] = {.lex_state = 63}, + [1681] = {.lex_state = 76}, + [1682] = {.lex_state = 76}, + [1683] = {.lex_state = 76}, + [1684] = {.lex_state = 76}, + [1685] = {.lex_state = 63}, + [1686] = {.lex_state = 76}, + [1687] = {.lex_state = 76}, + [1688] = {.lex_state = 63}, + [1689] = {.lex_state = 76}, + [1690] = {.lex_state = 76}, + [1691] = {.lex_state = 76}, + [1692] = {.lex_state = 76}, + [1693] = {.lex_state = 76}, + [1694] = {.lex_state = 76}, + [1695] = {.lex_state = 76}, + [1696] = {.lex_state = 76}, + [1697] = {.lex_state = 76}, + [1698] = {.lex_state = 76}, + [1699] = {.lex_state = 76}, + [1700] = {.lex_state = 76}, + [1701] = {.lex_state = 76}, + [1702] = {.lex_state = 76}, + [1703] = {.lex_state = 76}, + [1704] = {.lex_state = 59}, + [1705] = {.lex_state = 76}, + [1706] = {.lex_state = 76}, + [1707] = {.lex_state = 78}, + [1708] = {.lex_state = 76}, + [1709] = {.lex_state = 76}, + [1710] = {.lex_state = 76}, + [1711] = {.lex_state = 63}, + [1712] = {.lex_state = 76}, + [1713] = {.lex_state = 76}, + [1714] = {.lex_state = 76}, + [1715] = {.lex_state = 76}, + [1716] = {.lex_state = 76}, + [1717] = {.lex_state = 76}, + [1718] = {.lex_state = 76}, + [1719] = {.lex_state = 76}, + [1720] = {.lex_state = 76}, + [1721] = {.lex_state = 76}, + [1722] = {.lex_state = 76}, + [1723] = {.lex_state = 76}, + [1724] = {.lex_state = 76}, + [1725] = {.lex_state = 76}, + [1726] = {.lex_state = 76}, + [1727] = {.lex_state = 76}, + [1728] = {.lex_state = 76}, + [1729] = {.lex_state = 76}, + [1730] = {.lex_state = 76}, + [1731] = {.lex_state = 76}, + [1732] = {.lex_state = 76}, + [1733] = {.lex_state = 76}, + [1734] = {.lex_state = 76}, + [1735] = {.lex_state = 76}, + [1736] = {.lex_state = 76}, + [1737] = {.lex_state = 76}, + [1738] = {.lex_state = 76}, + [1739] = {.lex_state = 76}, + [1740] = {.lex_state = 76}, + [1741] = {.lex_state = 76}, + [1742] = {.lex_state = 76}, + [1743] = {.lex_state = 76}, + [1744] = {.lex_state = 76}, + [1745] = {.lex_state = 76}, + [1746] = {.lex_state = 76}, + [1747] = {.lex_state = 76}, + [1748] = {.lex_state = 76}, + [1749] = {.lex_state = 76}, + [1750] = {.lex_state = 78}, + [1751] = {.lex_state = 76}, + [1752] = {.lex_state = 76}, + [1753] = {.lex_state = 76}, + [1754] = {.lex_state = 76}, + [1755] = {.lex_state = 76}, + [1756] = {.lex_state = 76}, + [1757] = {.lex_state = 76}, + [1758] = {.lex_state = 76}, + [1759] = {.lex_state = 76}, + [1760] = {.lex_state = 76}, + [1761] = {.lex_state = 90}, + [1762] = {.lex_state = 63}, + [1763] = {.lex_state = 63}, + [1764] = {.lex_state = 90}, + [1765] = {.lex_state = 90}, + [1766] = {.lex_state = 90}, + [1767] = {.lex_state = 90}, + [1768] = {.lex_state = 90}, + [1769] = {.lex_state = 90}, + [1770] = {.lex_state = 90}, + [1771] = {.lex_state = 63}, + [1772] = {.lex_state = 90}, + [1773] = {.lex_state = 90}, + [1774] = {.lex_state = 90}, + [1775] = {.lex_state = 90}, + [1776] = {.lex_state = 90}, + [1777] = {.lex_state = 90}, + [1778] = {.lex_state = 90}, + [1779] = {.lex_state = 90}, + [1780] = {.lex_state = 90}, + [1781] = {.lex_state = 90}, + [1782] = {.lex_state = 90}, + [1783] = {.lex_state = 90}, + [1784] = {.lex_state = 90}, + [1785] = {.lex_state = 90}, + [1786] = {.lex_state = 90}, + [1787] = {.lex_state = 67}, + [1788] = {.lex_state = 90}, + [1789] = {.lex_state = 90}, + [1790] = {.lex_state = 86}, + [1791] = {.lex_state = 90}, + [1792] = {.lex_state = 90}, + [1793] = {.lex_state = 90}, + [1794] = {.lex_state = 63}, + [1795] = {.lex_state = 90}, + [1796] = {.lex_state = 90}, [1797] = {.lex_state = 90}, - [1798] = {.lex_state = 53}, - [1799] = {.lex_state = 53}, + [1798] = {.lex_state = 90}, + [1799] = {.lex_state = 90}, [1800] = {.lex_state = 90}, [1801] = {.lex_state = 90}, [1802] = {.lex_state = 90}, @@ -20754,7 +20396,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1804] = {.lex_state = 90}, [1805] = {.lex_state = 90}, [1806] = {.lex_state = 90}, - [1807] = {.lex_state = 53}, + [1807] = {.lex_state = 90}, [1808] = {.lex_state = 90}, [1809] = {.lex_state = 90}, [1810] = {.lex_state = 90}, @@ -20771,16 +20413,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1821] = {.lex_state = 90}, [1822] = {.lex_state = 90}, [1823] = {.lex_state = 90}, - [1824] = {.lex_state = 56}, + [1824] = {.lex_state = 90}, [1825] = {.lex_state = 90}, [1826] = {.lex_state = 90}, [1827] = {.lex_state = 90}, - [1828] = {.lex_state = 86}, + [1828] = {.lex_state = 90}, [1829] = {.lex_state = 90}, [1830] = {.lex_state = 90}, [1831] = {.lex_state = 90}, - [1832] = {.lex_state = 53}, - [1833] = {.lex_state = 90}, + [1832] = {.lex_state = 90}, + [1833] = {.lex_state = 86}, [1834] = {.lex_state = 90}, [1835] = {.lex_state = 90}, [1836] = {.lex_state = 90}, @@ -20791,134 +20433,134 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1841] = {.lex_state = 90}, [1842] = {.lex_state = 90}, [1843] = {.lex_state = 90}, - [1844] = {.lex_state = 90}, - [1845] = {.lex_state = 90}, - [1846] = {.lex_state = 90}, - [1847] = {.lex_state = 90}, - [1848] = {.lex_state = 90}, - [1849] = {.lex_state = 90}, - [1850] = {.lex_state = 90}, - [1851] = {.lex_state = 90}, - [1852] = {.lex_state = 90}, - [1853] = {.lex_state = 90}, - [1854] = {.lex_state = 90}, - [1855] = {.lex_state = 90}, - [1856] = {.lex_state = 90}, - [1857] = {.lex_state = 90}, - [1858] = {.lex_state = 90}, - [1859] = {.lex_state = 90}, - [1860] = {.lex_state = 90}, - [1861] = {.lex_state = 90}, - [1862] = {.lex_state = 90}, - [1863] = {.lex_state = 90}, - [1864] = {.lex_state = 90}, - [1865] = {.lex_state = 90}, - [1866] = {.lex_state = 90}, - [1867] = {.lex_state = 90}, - [1868] = {.lex_state = 90}, - [1869] = {.lex_state = 90}, - [1870] = {.lex_state = 90}, - [1871] = {.lex_state = 86}, - [1872] = {.lex_state = 90}, - [1873] = {.lex_state = 90}, - [1874] = {.lex_state = 90}, - [1875] = {.lex_state = 90}, - [1876] = {.lex_state = 90}, - [1877] = {.lex_state = 90}, - [1878] = {.lex_state = 90}, - [1879] = {.lex_state = 90}, - [1880] = {.lex_state = 90}, - [1881] = {.lex_state = 90}, - [1882] = {.lex_state = 89}, - [1883] = {.lex_state = 53}, - [1884] = {.lex_state = 89}, - [1885] = {.lex_state = 89}, - [1886] = {.lex_state = 89}, - [1887] = {.lex_state = 89}, - [1888] = {.lex_state = 89}, - [1889] = {.lex_state = 89}, - [1890] = {.lex_state = 89}, - [1891] = {.lex_state = 89}, - [1892] = {.lex_state = 53}, - [1893] = {.lex_state = 89}, - [1894] = {.lex_state = 89}, - [1895] = {.lex_state = 89}, - [1896] = {.lex_state = 89}, - [1897] = {.lex_state = 89}, - [1898] = {.lex_state = 89}, - [1899] = {.lex_state = 89}, - [1900] = {.lex_state = 89}, - [1901] = {.lex_state = 89}, - [1902] = {.lex_state = 89}, - [1903] = {.lex_state = 89}, - [1904] = {.lex_state = 89}, - [1905] = {.lex_state = 89}, - [1906] = {.lex_state = 89}, - [1907] = {.lex_state = 89}, - [1908] = {.lex_state = 89}, - [1909] = {.lex_state = 66}, - [1910] = {.lex_state = 89}, - [1911] = {.lex_state = 89}, - [1912] = {.lex_state = 89}, - [1913] = {.lex_state = 89}, - [1914] = {.lex_state = 89}, - [1915] = {.lex_state = 89}, - [1916] = {.lex_state = 89}, - [1917] = {.lex_state = 89}, - [1918] = {.lex_state = 89}, - [1919] = {.lex_state = 89}, - [1920] = {.lex_state = 89}, - [1921] = {.lex_state = 89}, - [1922] = {.lex_state = 89}, - [1923] = {.lex_state = 89}, - [1924] = {.lex_state = 89}, - [1925] = {.lex_state = 89}, - [1926] = {.lex_state = 89}, - [1927] = {.lex_state = 89}, - [1928] = {.lex_state = 89}, - [1929] = {.lex_state = 89}, - [1930] = {.lex_state = 89}, - [1931] = {.lex_state = 89}, - [1932] = {.lex_state = 89}, - [1933] = {.lex_state = 89}, - [1934] = {.lex_state = 89}, - [1935] = {.lex_state = 89}, - [1936] = {.lex_state = 89}, - [1937] = {.lex_state = 89}, - [1938] = {.lex_state = 89}, - [1939] = {.lex_state = 89}, - [1940] = {.lex_state = 89}, - [1941] = {.lex_state = 89}, - [1942] = {.lex_state = 89}, - [1943] = {.lex_state = 89}, - [1944] = {.lex_state = 89}, - [1945] = {.lex_state = 89}, - [1946] = {.lex_state = 89}, - [1947] = {.lex_state = 89}, - [1948] = {.lex_state = 89}, - [1949] = {.lex_state = 89}, - [1950] = {.lex_state = 89}, - [1951] = {.lex_state = 89}, - [1952] = {.lex_state = 89}, - [1953] = {.lex_state = 89}, - [1954] = {.lex_state = 89}, + [1844] = {.lex_state = 92}, + [1845] = {.lex_state = 63}, + [1846] = {.lex_state = 80}, + [1847] = {.lex_state = 92}, + [1848] = {.lex_state = 92}, + [1849] = {.lex_state = 92}, + [1850] = {.lex_state = 92}, + [1851] = {.lex_state = 92}, + [1852] = {.lex_state = 92}, + [1853] = {.lex_state = 92}, + [1854] = {.lex_state = 63}, + [1855] = {.lex_state = 92}, + [1856] = {.lex_state = 92}, + [1857] = {.lex_state = 92}, + [1858] = {.lex_state = 92}, + [1859] = {.lex_state = 92}, + [1860] = {.lex_state = 92}, + [1861] = {.lex_state = 92}, + [1862] = {.lex_state = 92}, + [1863] = {.lex_state = 92}, + [1864] = {.lex_state = 92}, + [1865] = {.lex_state = 92}, + [1866] = {.lex_state = 92}, + [1867] = {.lex_state = 92}, + [1868] = {.lex_state = 92}, + [1869] = {.lex_state = 92}, + [1870] = {.lex_state = 91}, + [1871] = {.lex_state = 92}, + [1872] = {.lex_state = 92}, + [1873] = {.lex_state = 63}, + [1874] = {.lex_state = 92}, + [1875] = {.lex_state = 92}, + [1876] = {.lex_state = 92}, + [1877] = {.lex_state = 92}, + [1878] = {.lex_state = 92}, + [1879] = {.lex_state = 92}, + [1880] = {.lex_state = 92}, + [1881] = {.lex_state = 92}, + [1882] = {.lex_state = 92}, + [1883] = {.lex_state = 92}, + [1884] = {.lex_state = 92}, + [1885] = {.lex_state = 92}, + [1886] = {.lex_state = 92}, + [1887] = {.lex_state = 92}, + [1888] = {.lex_state = 92}, + [1889] = {.lex_state = 92}, + [1890] = {.lex_state = 92}, + [1891] = {.lex_state = 92}, + [1892] = {.lex_state = 92}, + [1893] = {.lex_state = 92}, + [1894] = {.lex_state = 92}, + [1895] = {.lex_state = 92}, + [1896] = {.lex_state = 92}, + [1897] = {.lex_state = 92}, + [1898] = {.lex_state = 92}, + [1899] = {.lex_state = 92}, + [1900] = {.lex_state = 92}, + [1901] = {.lex_state = 92}, + [1902] = {.lex_state = 92}, + [1903] = {.lex_state = 92}, + [1904] = {.lex_state = 92}, + [1905] = {.lex_state = 92}, + [1906] = {.lex_state = 92}, + [1907] = {.lex_state = 92}, + [1908] = {.lex_state = 92}, + [1909] = {.lex_state = 92}, + [1910] = {.lex_state = 92}, + [1911] = {.lex_state = 92}, + [1912] = {.lex_state = 92}, + [1913] = {.lex_state = 92}, + [1914] = {.lex_state = 92}, + [1915] = {.lex_state = 92}, + [1916] = {.lex_state = 92}, + [1917] = {.lex_state = 92}, + [1918] = {.lex_state = 92}, + [1919] = {.lex_state = 92}, + [1920] = {.lex_state = 92}, + [1921] = {.lex_state = 92}, + [1922] = {.lex_state = 92}, + [1923] = {.lex_state = 92}, + [1924] = {.lex_state = 92}, + [1925] = {.lex_state = 66}, + [1926] = {.lex_state = 63}, + [1927] = {.lex_state = 63}, + [1928] = {.lex_state = 66}, + [1929] = {.lex_state = 66}, + [1930] = {.lex_state = 66}, + [1931] = {.lex_state = 66}, + [1932] = {.lex_state = 53}, + [1933] = {.lex_state = 53}, + [1934] = {.lex_state = 77}, + [1935] = {.lex_state = 55}, + [1936] = {.lex_state = 73}, + [1937] = {.lex_state = 73}, + [1938] = {.lex_state = 73}, + [1939] = {.lex_state = 73}, + [1940] = {.lex_state = 57}, + [1941] = {.lex_state = 75}, + [1942] = {.lex_state = 70}, + [1943] = {.lex_state = 73}, + [1944] = {.lex_state = 70}, + [1945] = {.lex_state = 70}, + [1946] = {.lex_state = 70}, + [1947] = {.lex_state = 70}, + [1948] = {.lex_state = 70}, + [1949] = {.lex_state = 70}, + [1950] = {.lex_state = 70}, + [1951] = {.lex_state = 70}, + [1952] = {.lex_state = 70}, + [1953] = {.lex_state = 70}, + [1954] = {.lex_state = 70}, [1955] = {.lex_state = 89}, - [1956] = {.lex_state = 89}, - [1957] = {.lex_state = 89}, - [1958] = {.lex_state = 89}, - [1959] = {.lex_state = 89}, - [1960] = {.lex_state = 52}, - [1961] = {.lex_state = 52}, - [1962] = {.lex_state = 87}, - [1963] = {.lex_state = 55}, - [1964] = {.lex_state = 54}, - [1965] = {.lex_state = 65}, - [1966] = {.lex_state = 114}, - [1967] = {.lex_state = 54}, - [1968] = {.lex_state = 66}, - [1969] = {.lex_state = 54}, + [1956] = {.lex_state = 70}, + [1957] = {.lex_state = 70}, + [1958] = {.lex_state = 70}, + [1959] = {.lex_state = 70}, + [1960] = {.lex_state = 70}, + [1961] = {.lex_state = 70}, + [1962] = {.lex_state = 70}, + [1963] = {.lex_state = 70}, + [1964] = {.lex_state = 70}, + [1965] = {.lex_state = 70}, + [1966] = {.lex_state = 70}, + [1967] = {.lex_state = 70}, + [1968] = {.lex_state = 70}, + [1969] = {.lex_state = 70}, [1970] = {.lex_state = 70}, - [1971] = {.lex_state = 54}, + [1971] = {.lex_state = 70}, [1972] = {.lex_state = 70}, [1973] = {.lex_state = 70}, [1974] = {.lex_state = 70}, @@ -20928,7 +20570,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1978] = {.lex_state = 70}, [1979] = {.lex_state = 70}, [1980] = {.lex_state = 70}, - [1981] = {.lex_state = 65}, + [1981] = {.lex_state = 70}, [1982] = {.lex_state = 70}, [1983] = {.lex_state = 70}, [1984] = {.lex_state = 70}, @@ -20940,14 +20582,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1990] = {.lex_state = 70}, [1991] = {.lex_state = 70}, [1992] = {.lex_state = 70}, - [1993] = {.lex_state = 70}, + [1993] = {.lex_state = 73}, [1994] = {.lex_state = 70}, [1995] = {.lex_state = 70}, [1996] = {.lex_state = 70}, - [1997] = {.lex_state = 70}, + [1997] = {.lex_state = 89}, [1998] = {.lex_state = 70}, - [1999] = {.lex_state = 60}, - [2000] = {.lex_state = 70}, + [1999] = {.lex_state = 70}, + [2000] = {.lex_state = 114}, [2001] = {.lex_state = 70}, [2002] = {.lex_state = 70}, [2003] = {.lex_state = 70}, @@ -20955,16 +20597,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2005] = {.lex_state = 70}, [2006] = {.lex_state = 70}, [2007] = {.lex_state = 70}, - [2008] = {.lex_state = 70}, + [2008] = {.lex_state = 73}, [2009] = {.lex_state = 70}, [2010] = {.lex_state = 70}, - [2011] = {.lex_state = 70}, + [2011] = {.lex_state = 73}, [2012] = {.lex_state = 70}, [2013] = {.lex_state = 70}, [2014] = {.lex_state = 70}, [2015] = {.lex_state = 70}, [2016] = {.lex_state = 70}, - [2017] = {.lex_state = 70}, + [2017] = {.lex_state = 75}, [2018] = {.lex_state = 70}, [2019] = {.lex_state = 70}, [2020] = {.lex_state = 70}, @@ -20972,989 +20614,989 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2022] = {.lex_state = 70}, [2023] = {.lex_state = 70}, [2024] = {.lex_state = 70}, - [2025] = {.lex_state = 70}, + [2025] = {.lex_state = 73}, [2026] = {.lex_state = 70}, - [2027] = {.lex_state = 54}, - [2028] = {.lex_state = 70}, - [2029] = {.lex_state = 70}, - [2030] = {.lex_state = 70}, - [2031] = {.lex_state = 70}, - [2032] = {.lex_state = 70}, - [2033] = {.lex_state = 70}, - [2034] = {.lex_state = 70}, - [2035] = {.lex_state = 65}, - [2036] = {.lex_state = 70}, - [2037] = {.lex_state = 70}, - [2038] = {.lex_state = 70}, - [2039] = {.lex_state = 70}, - [2040] = {.lex_state = 70}, - [2041] = {.lex_state = 60}, - [2042] = {.lex_state = 70}, - [2043] = {.lex_state = 70}, - [2044] = {.lex_state = 70}, - [2045] = {.lex_state = 70}, - [2046] = {.lex_state = 70}, - [2047] = {.lex_state = 70}, - [2048] = {.lex_state = 70}, - [2049] = {.lex_state = 70}, - [2050] = {.lex_state = 70}, - [2051] = {.lex_state = 70}, - [2052] = {.lex_state = 70}, - [2053] = {.lex_state = 70}, - [2054] = {.lex_state = 65}, - [2055] = {.lex_state = 65}, - [2056] = {.lex_state = 65}, - [2057] = {.lex_state = 65}, - [2058] = {.lex_state = 65}, - [2059] = {.lex_state = 65}, - [2060] = {.lex_state = 65}, - [2061] = {.lex_state = 65}, - [2062] = {.lex_state = 65}, - [2063] = {.lex_state = 65}, - [2064] = {.lex_state = 65}, - [2065] = {.lex_state = 65}, - [2066] = {.lex_state = 65}, - [2067] = {.lex_state = 65}, - [2068] = {.lex_state = 65}, - [2069] = {.lex_state = 65}, - [2070] = {.lex_state = 65}, - [2071] = {.lex_state = 65}, - [2072] = {.lex_state = 65}, - [2073] = {.lex_state = 65}, - [2074] = {.lex_state = 65}, - [2075] = {.lex_state = 65}, - [2076] = {.lex_state = 65}, - [2077] = {.lex_state = 65}, - [2078] = {.lex_state = 65}, - [2079] = {.lex_state = 65}, - [2080] = {.lex_state = 65}, - [2081] = {.lex_state = 65}, - [2082] = {.lex_state = 65}, - [2083] = {.lex_state = 91}, - [2084] = {.lex_state = 65}, - [2085] = {.lex_state = 65}, - [2086] = {.lex_state = 65}, - [2087] = {.lex_state = 65}, - [2088] = {.lex_state = 65}, - [2089] = {.lex_state = 65}, - [2090] = {.lex_state = 65}, - [2091] = {.lex_state = 65}, - [2092] = {.lex_state = 65}, - [2093] = {.lex_state = 65}, - [2094] = {.lex_state = 65}, - [2095] = {.lex_state = 65}, - [2096] = {.lex_state = 65}, - [2097] = {.lex_state = 65}, - [2098] = {.lex_state = 88}, - [2099] = {.lex_state = 65}, - [2100] = {.lex_state = 65}, - [2101] = {.lex_state = 65}, - [2102] = {.lex_state = 65}, - [2103] = {.lex_state = 65}, - [2104] = {.lex_state = 65}, - [2105] = {.lex_state = 65}, - [2106] = {.lex_state = 65}, - [2107] = {.lex_state = 65}, - [2108] = {.lex_state = 65}, - [2109] = {.lex_state = 54}, - [2110] = {.lex_state = 65}, - [2111] = {.lex_state = 65}, - [2112] = {.lex_state = 65}, - [2113] = {.lex_state = 65}, - [2114] = {.lex_state = 65}, - [2115] = {.lex_state = 65}, - [2116] = {.lex_state = 65}, - [2117] = {.lex_state = 65}, - [2118] = {.lex_state = 65}, - [2119] = {.lex_state = 65}, - [2120] = {.lex_state = 65}, - [2121] = {.lex_state = 65}, - [2122] = {.lex_state = 65}, - [2123] = {.lex_state = 65}, - [2124] = {.lex_state = 65}, + [2027] = {.lex_state = 75}, + [2028] = {.lex_state = 75}, + [2029] = {.lex_state = 75}, + [2030] = {.lex_state = 75}, + [2031] = {.lex_state = 75}, + [2032] = {.lex_state = 75}, + [2033] = {.lex_state = 75}, + [2034] = {.lex_state = 75}, + [2035] = {.lex_state = 75}, + [2036] = {.lex_state = 75}, + [2037] = {.lex_state = 64}, + [2038] = {.lex_state = 75}, + [2039] = {.lex_state = 75}, + [2040] = {.lex_state = 75}, + [2041] = {.lex_state = 75}, + [2042] = {.lex_state = 75}, + [2043] = {.lex_state = 75}, + [2044] = {.lex_state = 75}, + [2045] = {.lex_state = 75}, + [2046] = {.lex_state = 75}, + [2047] = {.lex_state = 75}, + [2048] = {.lex_state = 75}, + [2049] = {.lex_state = 75}, + [2050] = {.lex_state = 91}, + [2051] = {.lex_state = 75}, + [2052] = {.lex_state = 75}, + [2053] = {.lex_state = 75}, + [2054] = {.lex_state = 75}, + [2055] = {.lex_state = 75}, + [2056] = {.lex_state = 75}, + [2057] = {.lex_state = 75}, + [2058] = {.lex_state = 75}, + [2059] = {.lex_state = 75}, + [2060] = {.lex_state = 75}, + [2061] = {.lex_state = 75}, + [2062] = {.lex_state = 75}, + [2063] = {.lex_state = 75}, + [2064] = {.lex_state = 75}, + [2065] = {.lex_state = 73}, + [2066] = {.lex_state = 75}, + [2067] = {.lex_state = 75}, + [2068] = {.lex_state = 75}, + [2069] = {.lex_state = 75}, + [2070] = {.lex_state = 73}, + [2071] = {.lex_state = 75}, + [2072] = {.lex_state = 75}, + [2073] = {.lex_state = 75}, + [2074] = {.lex_state = 75}, + [2075] = {.lex_state = 75}, + [2076] = {.lex_state = 75}, + [2077] = {.lex_state = 75}, + [2078] = {.lex_state = 75}, + [2079] = {.lex_state = 64}, + [2080] = {.lex_state = 73}, + [2081] = {.lex_state = 75}, + [2082] = {.lex_state = 75}, + [2083] = {.lex_state = 75}, + [2084] = {.lex_state = 75}, + [2085] = {.lex_state = 73}, + [2086] = {.lex_state = 75}, + [2087] = {.lex_state = 75}, + [2088] = {.lex_state = 75}, + [2089] = {.lex_state = 75}, + [2090] = {.lex_state = 75}, + [2091] = {.lex_state = 75}, + [2092] = {.lex_state = 75}, + [2093] = {.lex_state = 73}, + [2094] = {.lex_state = 73}, + [2095] = {.lex_state = 75}, + [2096] = {.lex_state = 75}, + [2097] = {.lex_state = 73}, + [2098] = {.lex_state = 75}, + [2099] = {.lex_state = 75}, + [2100] = {.lex_state = 75}, + [2101] = {.lex_state = 75}, + [2102] = {.lex_state = 75}, + [2103] = {.lex_state = 75}, + [2104] = {.lex_state = 75}, + [2105] = {.lex_state = 75}, + [2106] = {.lex_state = 75}, + [2107] = {.lex_state = 75}, + [2108] = {.lex_state = 75}, + [2109] = {.lex_state = 75}, + [2110] = {.lex_state = 75}, + [2111] = {.lex_state = 73}, + [2112] = {.lex_state = 75}, + [2113] = {.lex_state = 91}, + [2114] = {.lex_state = 91}, + [2115] = {.lex_state = 91}, + [2116] = {.lex_state = 91}, + [2117] = {.lex_state = 91}, + [2118] = {.lex_state = 91}, + [2119] = {.lex_state = 77}, + [2120] = {.lex_state = 91}, + [2121] = {.lex_state = 91}, + [2122] = {.lex_state = 91}, + [2123] = {.lex_state = 91}, + [2124] = {.lex_state = 91}, [2125] = {.lex_state = 91}, - [2126] = {.lex_state = 65}, - [2127] = {.lex_state = 65}, - [2128] = {.lex_state = 65}, - [2129] = {.lex_state = 65}, - [2130] = {.lex_state = 65}, - [2131] = {.lex_state = 65}, - [2132] = {.lex_state = 65}, - [2133] = {.lex_state = 65}, - [2134] = {.lex_state = 65}, - [2135] = {.lex_state = 88}, - [2136] = {.lex_state = 88}, - [2137] = {.lex_state = 88}, - [2138] = {.lex_state = 88}, - [2139] = {.lex_state = 88}, - [2140] = {.lex_state = 88}, - [2141] = {.lex_state = 88}, - [2142] = {.lex_state = 88}, - [2143] = {.lex_state = 88}, - [2144] = {.lex_state = 88}, - [2145] = {.lex_state = 88}, - [2146] = {.lex_state = 88}, - [2147] = {.lex_state = 88}, - [2148] = {.lex_state = 88}, - [2149] = {.lex_state = 88}, - [2150] = {.lex_state = 88}, - [2151] = {.lex_state = 88}, - [2152] = {.lex_state = 88}, - [2153] = {.lex_state = 88}, - [2154] = {.lex_state = 88}, - [2155] = {.lex_state = 88}, - [2156] = {.lex_state = 88}, - [2157] = {.lex_state = 88}, - [2158] = {.lex_state = 88}, - [2159] = {.lex_state = 88}, - [2160] = {.lex_state = 88}, - [2161] = {.lex_state = 88}, - [2162] = {.lex_state = 88}, - [2163] = {.lex_state = 88}, - [2164] = {.lex_state = 88}, - [2165] = {.lex_state = 88}, - [2166] = {.lex_state = 88}, - [2167] = {.lex_state = 87}, - [2168] = {.lex_state = 88}, - [2169] = {.lex_state = 88}, - [2170] = {.lex_state = 88}, - [2171] = {.lex_state = 88}, - [2172] = {.lex_state = 88}, - [2173] = {.lex_state = 54}, - [2174] = {.lex_state = 88}, - [2175] = {.lex_state = 54}, - [2176] = {.lex_state = 88}, - [2177] = {.lex_state = 88}, - [2178] = {.lex_state = 88}, - [2179] = {.lex_state = 88}, - [2180] = {.lex_state = 88}, - [2181] = {.lex_state = 88}, - [2182] = {.lex_state = 88}, - [2183] = {.lex_state = 88}, - [2184] = {.lex_state = 88}, - [2185] = {.lex_state = 54}, - [2186] = {.lex_state = 88}, - [2187] = {.lex_state = 54}, - [2188] = {.lex_state = 88}, - [2189] = {.lex_state = 88}, - [2190] = {.lex_state = 88}, - [2191] = {.lex_state = 88}, - [2192] = {.lex_state = 88}, - [2193] = {.lex_state = 54}, - [2194] = {.lex_state = 88}, - [2195] = {.lex_state = 88}, - [2196] = {.lex_state = 88}, - [2197] = {.lex_state = 88}, - [2198] = {.lex_state = 88}, - [2199] = {.lex_state = 88}, - [2200] = {.lex_state = 88}, - [2201] = {.lex_state = 54}, - [2202] = {.lex_state = 54}, - [2203] = {.lex_state = 88}, - [2204] = {.lex_state = 88}, - [2205] = {.lex_state = 54}, - [2206] = {.lex_state = 88}, - [2207] = {.lex_state = 88}, - [2208] = {.lex_state = 88}, - [2209] = {.lex_state = 87}, - [2210] = {.lex_state = 88}, - [2211] = {.lex_state = 88}, - [2212] = {.lex_state = 88}, - [2213] = {.lex_state = 88}, - [2214] = {.lex_state = 88}, - [2215] = {.lex_state = 88}, - [2216] = {.lex_state = 88}, - [2217] = {.lex_state = 88}, - [2218] = {.lex_state = 66}, - [2219] = {.lex_state = 88}, - [2220] = {.lex_state = 60}, - [2221] = {.lex_state = 88}, - [2222] = {.lex_state = 54}, - [2223] = {.lex_state = 60}, - [2224] = {.lex_state = 60}, - [2225] = {.lex_state = 60}, - [2226] = {.lex_state = 60}, - [2227] = {.lex_state = 60}, - [2228] = {.lex_state = 60}, - [2229] = {.lex_state = 60}, - [2230] = {.lex_state = 88}, - [2231] = {.lex_state = 60}, - [2232] = {.lex_state = 60}, - [2233] = {.lex_state = 60}, - [2234] = {.lex_state = 60}, - [2235] = {.lex_state = 60}, - [2236] = {.lex_state = 60}, - [2237] = {.lex_state = 60}, - [2238] = {.lex_state = 60}, - [2239] = {.lex_state = 60}, - [2240] = {.lex_state = 60}, - [2241] = {.lex_state = 60}, - [2242] = {.lex_state = 60}, - [2243] = {.lex_state = 60}, - [2244] = {.lex_state = 60}, - [2245] = {.lex_state = 60}, - [2246] = {.lex_state = 60}, - [2247] = {.lex_state = 66}, - [2248] = {.lex_state = 60}, - [2249] = {.lex_state = 60}, - [2250] = {.lex_state = 60}, - [2251] = {.lex_state = 73}, - [2252] = {.lex_state = 60}, - [2253] = {.lex_state = 60}, - [2254] = {.lex_state = 60}, - [2255] = {.lex_state = 60}, - [2256] = {.lex_state = 60}, - [2257] = {.lex_state = 60}, - [2258] = {.lex_state = 60}, - [2259] = {.lex_state = 60}, - [2260] = {.lex_state = 60}, - [2261] = {.lex_state = 60}, - [2262] = {.lex_state = 60}, - [2263] = {.lex_state = 60}, - [2264] = {.lex_state = 60}, - [2265] = {.lex_state = 60}, - [2266] = {.lex_state = 60}, - [2267] = {.lex_state = 60}, - [2268] = {.lex_state = 60}, - [2269] = {.lex_state = 60}, - [2270] = {.lex_state = 60}, - [2271] = {.lex_state = 60}, - [2272] = {.lex_state = 60}, - [2273] = {.lex_state = 60}, - [2274] = {.lex_state = 60}, - [2275] = {.lex_state = 60}, - [2276] = {.lex_state = 60}, - [2277] = {.lex_state = 60}, - [2278] = {.lex_state = 60}, - [2279] = {.lex_state = 60}, - [2280] = {.lex_state = 60}, - [2281] = {.lex_state = 60}, - [2282] = {.lex_state = 60}, - [2283] = {.lex_state = 60}, - [2284] = {.lex_state = 60}, - [2285] = {.lex_state = 60}, - [2286] = {.lex_state = 60}, - [2287] = {.lex_state = 60}, - [2288] = {.lex_state = 60}, - [2289] = {.lex_state = 60}, - [2290] = {.lex_state = 60}, - [2291] = {.lex_state = 60}, - [2292] = {.lex_state = 60}, - [2293] = {.lex_state = 73}, - [2294] = {.lex_state = 60}, - [2295] = {.lex_state = 60}, - [2296] = {.lex_state = 60}, - [2297] = {.lex_state = 60}, - [2298] = {.lex_state = 60}, - [2299] = {.lex_state = 60}, - [2300] = {.lex_state = 60}, - [2301] = {.lex_state = 60}, - [2302] = {.lex_state = 60}, - [2303] = {.lex_state = 60}, - [2304] = {.lex_state = 91}, - [2305] = {.lex_state = 66}, - [2306] = {.lex_state = 66}, - [2307] = {.lex_state = 91}, - [2308] = {.lex_state = 91}, - [2309] = {.lex_state = 91}, - [2310] = {.lex_state = 91}, - [2311] = {.lex_state = 91}, - [2312] = {.lex_state = 91}, - [2313] = {.lex_state = 91}, - [2314] = {.lex_state = 66}, - [2315] = {.lex_state = 91}, - [2316] = {.lex_state = 91}, - [2317] = {.lex_state = 91}, - [2318] = {.lex_state = 91}, - [2319] = {.lex_state = 91}, - [2320] = {.lex_state = 91}, - [2321] = {.lex_state = 91}, - [2322] = {.lex_state = 91}, - [2323] = {.lex_state = 91}, - [2324] = {.lex_state = 91}, - [2325] = {.lex_state = 91}, - [2326] = {.lex_state = 91}, - [2327] = {.lex_state = 91}, - [2328] = {.lex_state = 91}, - [2329] = {.lex_state = 91}, - [2330] = {.lex_state = 91}, - [2331] = {.lex_state = 66}, - [2332] = {.lex_state = 91}, - [2333] = {.lex_state = 91}, - [2334] = {.lex_state = 91}, - [2335] = {.lex_state = 76}, - [2336] = {.lex_state = 91}, + [2126] = {.lex_state = 91}, + [2127] = {.lex_state = 91}, + [2128] = {.lex_state = 91}, + [2129] = {.lex_state = 91}, + [2130] = {.lex_state = 91}, + [2131] = {.lex_state = 91}, + [2132] = {.lex_state = 91}, + [2133] = {.lex_state = 91}, + [2134] = {.lex_state = 91}, + [2135] = {.lex_state = 91}, + [2136] = {.lex_state = 91}, + [2137] = {.lex_state = 91}, + [2138] = {.lex_state = 91}, + [2139] = {.lex_state = 91}, + [2140] = {.lex_state = 91}, + [2141] = {.lex_state = 91}, + [2142] = {.lex_state = 91}, + [2143] = {.lex_state = 91}, + [2144] = {.lex_state = 91}, + [2145] = {.lex_state = 73}, + [2146] = {.lex_state = 91}, + [2147] = {.lex_state = 91}, + [2148] = {.lex_state = 91}, + [2149] = {.lex_state = 91}, + [2150] = {.lex_state = 91}, + [2151] = {.lex_state = 73}, + [2152] = {.lex_state = 91}, + [2153] = {.lex_state = 91}, + [2154] = {.lex_state = 91}, + [2155] = {.lex_state = 91}, + [2156] = {.lex_state = 73}, + [2157] = {.lex_state = 91}, + [2158] = {.lex_state = 91}, + [2159] = {.lex_state = 91}, + [2160] = {.lex_state = 91}, + [2161] = {.lex_state = 77}, + [2162] = {.lex_state = 91}, + [2163] = {.lex_state = 91}, + [2164] = {.lex_state = 91}, + [2165] = {.lex_state = 73}, + [2166] = {.lex_state = 91}, + [2167] = {.lex_state = 73}, + [2168] = {.lex_state = 91}, + [2169] = {.lex_state = 91}, + [2170] = {.lex_state = 91}, + [2171] = {.lex_state = 91}, + [2172] = {.lex_state = 89}, + [2173] = {.lex_state = 91}, + [2174] = {.lex_state = 91}, + [2175] = {.lex_state = 89}, + [2176] = {.lex_state = 89}, + [2177] = {.lex_state = 89}, + [2178] = {.lex_state = 89}, + [2179] = {.lex_state = 89}, + [2180] = {.lex_state = 89}, + [2181] = {.lex_state = 89}, + [2182] = {.lex_state = 91}, + [2183] = {.lex_state = 89}, + [2184] = {.lex_state = 89}, + [2185] = {.lex_state = 89}, + [2186] = {.lex_state = 89}, + [2187] = {.lex_state = 89}, + [2188] = {.lex_state = 89}, + [2189] = {.lex_state = 89}, + [2190] = {.lex_state = 89}, + [2191] = {.lex_state = 89}, + [2192] = {.lex_state = 89}, + [2193] = {.lex_state = 89}, + [2194] = {.lex_state = 89}, + [2195] = {.lex_state = 89}, + [2196] = {.lex_state = 89}, + [2197] = {.lex_state = 89}, + [2198] = {.lex_state = 75}, + [2199] = {.lex_state = 89}, + [2200] = {.lex_state = 89}, + [2201] = {.lex_state = 79}, + [2202] = {.lex_state = 89}, + [2203] = {.lex_state = 89}, + [2204] = {.lex_state = 89}, + [2205] = {.lex_state = 89}, + [2206] = {.lex_state = 89}, + [2207] = {.lex_state = 89}, + [2208] = {.lex_state = 89}, + [2209] = {.lex_state = 89}, + [2210] = {.lex_state = 89}, + [2211] = {.lex_state = 89}, + [2212] = {.lex_state = 89}, + [2213] = {.lex_state = 89}, + [2214] = {.lex_state = 89}, + [2215] = {.lex_state = 89}, + [2216] = {.lex_state = 89}, + [2217] = {.lex_state = 89}, + [2218] = {.lex_state = 89}, + [2219] = {.lex_state = 89}, + [2220] = {.lex_state = 89}, + [2221] = {.lex_state = 89}, + [2222] = {.lex_state = 89}, + [2223] = {.lex_state = 89}, + [2224] = {.lex_state = 89}, + [2225] = {.lex_state = 89}, + [2226] = {.lex_state = 89}, + [2227] = {.lex_state = 89}, + [2228] = {.lex_state = 89}, + [2229] = {.lex_state = 89}, + [2230] = {.lex_state = 89}, + [2231] = {.lex_state = 89}, + [2232] = {.lex_state = 89}, + [2233] = {.lex_state = 89}, + [2234] = {.lex_state = 89}, + [2235] = {.lex_state = 89}, + [2236] = {.lex_state = 89}, + [2237] = {.lex_state = 89}, + [2238] = {.lex_state = 89}, + [2239] = {.lex_state = 89}, + [2240] = {.lex_state = 89}, + [2241] = {.lex_state = 89}, + [2242] = {.lex_state = 89}, + [2243] = {.lex_state = 79}, + [2244] = {.lex_state = 89}, + [2245] = {.lex_state = 89}, + [2246] = {.lex_state = 89}, + [2247] = {.lex_state = 89}, + [2248] = {.lex_state = 89}, + [2249] = {.lex_state = 89}, + [2250] = {.lex_state = 89}, + [2251] = {.lex_state = 89}, + [2252] = {.lex_state = 89}, + [2253] = {.lex_state = 89}, + [2254] = {.lex_state = 64}, + [2255] = {.lex_state = 91}, + [2256] = {.lex_state = 91}, + [2257] = {.lex_state = 64}, + [2258] = {.lex_state = 64}, + [2259] = {.lex_state = 64}, + [2260] = {.lex_state = 64}, + [2261] = {.lex_state = 64}, + [2262] = {.lex_state = 64}, + [2263] = {.lex_state = 64}, + [2264] = {.lex_state = 91}, + [2265] = {.lex_state = 64}, + [2266] = {.lex_state = 64}, + [2267] = {.lex_state = 64}, + [2268] = {.lex_state = 64}, + [2269] = {.lex_state = 64}, + [2270] = {.lex_state = 64}, + [2271] = {.lex_state = 64}, + [2272] = {.lex_state = 64}, + [2273] = {.lex_state = 64}, + [2274] = {.lex_state = 64}, + [2275] = {.lex_state = 64}, + [2276] = {.lex_state = 64}, + [2277] = {.lex_state = 64}, + [2278] = {.lex_state = 64}, + [2279] = {.lex_state = 64}, + [2280] = {.lex_state = 73}, + [2281] = {.lex_state = 64}, + [2282] = {.lex_state = 64}, + [2283] = {.lex_state = 81}, + [2284] = {.lex_state = 64}, + [2285] = {.lex_state = 64}, + [2286] = {.lex_state = 64}, + [2287] = {.lex_state = 64}, + [2288] = {.lex_state = 64}, + [2289] = {.lex_state = 64}, + [2290] = {.lex_state = 64}, + [2291] = {.lex_state = 64}, + [2292] = {.lex_state = 64}, + [2293] = {.lex_state = 64}, + [2294] = {.lex_state = 64}, + [2295] = {.lex_state = 64}, + [2296] = {.lex_state = 64}, + [2297] = {.lex_state = 64}, + [2298] = {.lex_state = 64}, + [2299] = {.lex_state = 64}, + [2300] = {.lex_state = 64}, + [2301] = {.lex_state = 64}, + [2302] = {.lex_state = 64}, + [2303] = {.lex_state = 64}, + [2304] = {.lex_state = 64}, + [2305] = {.lex_state = 64}, + [2306] = {.lex_state = 64}, + [2307] = {.lex_state = 64}, + [2308] = {.lex_state = 64}, + [2309] = {.lex_state = 64}, + [2310] = {.lex_state = 64}, + [2311] = {.lex_state = 64}, + [2312] = {.lex_state = 64}, + [2313] = {.lex_state = 64}, + [2314] = {.lex_state = 64}, + [2315] = {.lex_state = 64}, + [2316] = {.lex_state = 64}, + [2317] = {.lex_state = 64}, + [2318] = {.lex_state = 64}, + [2319] = {.lex_state = 64}, + [2320] = {.lex_state = 64}, + [2321] = {.lex_state = 64}, + [2322] = {.lex_state = 64}, + [2323] = {.lex_state = 64}, + [2324] = {.lex_state = 64}, + [2325] = {.lex_state = 81}, + [2326] = {.lex_state = 64}, + [2327] = {.lex_state = 64}, + [2328] = {.lex_state = 64}, + [2329] = {.lex_state = 64}, + [2330] = {.lex_state = 64}, + [2331] = {.lex_state = 64}, + [2332] = {.lex_state = 64}, + [2333] = {.lex_state = 64}, + [2334] = {.lex_state = 64}, + [2335] = {.lex_state = 64}, + [2336] = {.lex_state = 77}, [2337] = {.lex_state = 91}, - [2338] = {.lex_state = 91}, - [2339] = {.lex_state = 91}, - [2340] = {.lex_state = 91}, - [2341] = {.lex_state = 91}, - [2342] = {.lex_state = 91}, - [2343] = {.lex_state = 91}, - [2344] = {.lex_state = 91}, - [2345] = {.lex_state = 91}, + [2338] = {.lex_state = 73}, + [2339] = {.lex_state = 77}, + [2340] = {.lex_state = 77}, + [2341] = {.lex_state = 77}, + [2342] = {.lex_state = 77}, + [2343] = {.lex_state = 77}, + [2344] = {.lex_state = 77}, + [2345] = {.lex_state = 77}, [2346] = {.lex_state = 91}, - [2347] = {.lex_state = 91}, - [2348] = {.lex_state = 91}, - [2349] = {.lex_state = 91}, - [2350] = {.lex_state = 91}, - [2351] = {.lex_state = 91}, - [2352] = {.lex_state = 91}, - [2353] = {.lex_state = 91}, - [2354] = {.lex_state = 91}, - [2355] = {.lex_state = 91}, - [2356] = {.lex_state = 91}, - [2357] = {.lex_state = 91}, - [2358] = {.lex_state = 91}, - [2359] = {.lex_state = 91}, - [2360] = {.lex_state = 91}, - [2361] = {.lex_state = 91}, + [2347] = {.lex_state = 77}, + [2348] = {.lex_state = 77}, + [2349] = {.lex_state = 77}, + [2350] = {.lex_state = 77}, + [2351] = {.lex_state = 77}, + [2352] = {.lex_state = 77}, + [2353] = {.lex_state = 77}, + [2354] = {.lex_state = 77}, + [2355] = {.lex_state = 77}, + [2356] = {.lex_state = 77}, + [2357] = {.lex_state = 77}, + [2358] = {.lex_state = 77}, + [2359] = {.lex_state = 77}, + [2360] = {.lex_state = 77}, + [2361] = {.lex_state = 77}, [2362] = {.lex_state = 91}, - [2363] = {.lex_state = 91}, - [2364] = {.lex_state = 91}, - [2365] = {.lex_state = 91}, - [2366] = {.lex_state = 91}, - [2367] = {.lex_state = 91}, - [2368] = {.lex_state = 91}, - [2369] = {.lex_state = 91}, - [2370] = {.lex_state = 91}, - [2371] = {.lex_state = 91}, - [2372] = {.lex_state = 91}, - [2373] = {.lex_state = 91}, - [2374] = {.lex_state = 91}, - [2375] = {.lex_state = 91}, - [2376] = {.lex_state = 91}, - [2377] = {.lex_state = 76}, - [2378] = {.lex_state = 91}, - [2379] = {.lex_state = 91}, - [2380] = {.lex_state = 91}, - [2381] = {.lex_state = 91}, - [2382] = {.lex_state = 91}, - [2383] = {.lex_state = 91}, - [2384] = {.lex_state = 91}, - [2385] = {.lex_state = 91}, - [2386] = {.lex_state = 91}, - [2387] = {.lex_state = 91}, - [2388] = {.lex_state = 87}, - [2389] = {.lex_state = 54}, - [2390] = {.lex_state = 66}, - [2391] = {.lex_state = 87}, - [2392] = {.lex_state = 87}, - [2393] = {.lex_state = 87}, - [2394] = {.lex_state = 87}, - [2395] = {.lex_state = 87}, - [2396] = {.lex_state = 87}, - [2397] = {.lex_state = 87}, - [2398] = {.lex_state = 66}, - [2399] = {.lex_state = 87}, - [2400] = {.lex_state = 87}, - [2401] = {.lex_state = 87}, - [2402] = {.lex_state = 87}, - [2403] = {.lex_state = 87}, - [2404] = {.lex_state = 87}, - [2405] = {.lex_state = 87}, - [2406] = {.lex_state = 87}, - [2407] = {.lex_state = 87}, - [2408] = {.lex_state = 87}, - [2409] = {.lex_state = 87}, - [2410] = {.lex_state = 87}, - [2411] = {.lex_state = 87}, - [2412] = {.lex_state = 87}, - [2413] = {.lex_state = 87}, - [2414] = {.lex_state = 87}, - [2415] = {.lex_state = 66}, - [2416] = {.lex_state = 87}, - [2417] = {.lex_state = 87}, - [2418] = {.lex_state = 87}, - [2419] = {.lex_state = 78}, - [2420] = {.lex_state = 54}, - [2421] = {.lex_state = 87}, - [2422] = {.lex_state = 87}, - [2423] = {.lex_state = 87}, - [2424] = {.lex_state = 87}, - [2425] = {.lex_state = 87}, - [2426] = {.lex_state = 87}, - [2427] = {.lex_state = 87}, - [2428] = {.lex_state = 87}, - [2429] = {.lex_state = 87}, - [2430] = {.lex_state = 87}, - [2431] = {.lex_state = 87}, - [2432] = {.lex_state = 87}, - [2433] = {.lex_state = 87}, - [2434] = {.lex_state = 87}, - [2435] = {.lex_state = 87}, - [2436] = {.lex_state = 87}, - [2437] = {.lex_state = 87}, - [2438] = {.lex_state = 87}, - [2439] = {.lex_state = 87}, - [2440] = {.lex_state = 87}, - [2441] = {.lex_state = 87}, - [2442] = {.lex_state = 87}, - [2443] = {.lex_state = 87}, - [2444] = {.lex_state = 87}, - [2445] = {.lex_state = 87}, - [2446] = {.lex_state = 87}, - [2447] = {.lex_state = 87}, - [2448] = {.lex_state = 87}, - [2449] = {.lex_state = 87}, - [2450] = {.lex_state = 87}, - [2451] = {.lex_state = 87}, - [2452] = {.lex_state = 87}, - [2453] = {.lex_state = 87}, - [2454] = {.lex_state = 87}, - [2455] = {.lex_state = 87}, - [2456] = {.lex_state = 87}, - [2457] = {.lex_state = 87}, - [2458] = {.lex_state = 87}, - [2459] = {.lex_state = 87}, - [2460] = {.lex_state = 87}, - [2461] = {.lex_state = 78}, - [2462] = {.lex_state = 87}, - [2463] = {.lex_state = 87}, - [2464] = {.lex_state = 87}, - [2465] = {.lex_state = 87}, - [2466] = {.lex_state = 87}, - [2467] = {.lex_state = 87}, - [2468] = {.lex_state = 87}, - [2469] = {.lex_state = 87}, - [2470] = {.lex_state = 87}, - [2471] = {.lex_state = 87}, - [2472] = {.lex_state = 73}, - [2473] = {.lex_state = 66}, - [2474] = {.lex_state = 66}, - [2475] = {.lex_state = 73}, - [2476] = {.lex_state = 73}, - [2477] = {.lex_state = 73}, - [2478] = {.lex_state = 73}, - [2479] = {.lex_state = 73}, - [2480] = {.lex_state = 73}, - [2481] = {.lex_state = 73}, - [2482] = {.lex_state = 66}, - [2483] = {.lex_state = 73}, - [2484] = {.lex_state = 73}, - [2485] = {.lex_state = 73}, - [2486] = {.lex_state = 73}, - [2487] = {.lex_state = 73}, - [2488] = {.lex_state = 73}, - [2489] = {.lex_state = 73}, - [2490] = {.lex_state = 73}, - [2491] = {.lex_state = 73}, - [2492] = {.lex_state = 73}, - [2493] = {.lex_state = 73}, - [2494] = {.lex_state = 73}, - [2495] = {.lex_state = 73}, - [2496] = {.lex_state = 73}, - [2497] = {.lex_state = 73}, - [2498] = {.lex_state = 73}, - [2499] = {.lex_state = 66}, - [2500] = {.lex_state = 73}, - [2501] = {.lex_state = 73}, - [2502] = {.lex_state = 73}, - [2503] = {.lex_state = 69}, - [2504] = {.lex_state = 73}, - [2505] = {.lex_state = 73}, - [2506] = {.lex_state = 73}, - [2507] = {.lex_state = 73}, - [2508] = {.lex_state = 73}, - [2509] = {.lex_state = 73}, - [2510] = {.lex_state = 73}, - [2511] = {.lex_state = 73}, - [2512] = {.lex_state = 73}, - [2513] = {.lex_state = 73}, - [2514] = {.lex_state = 73}, - [2515] = {.lex_state = 73}, - [2516] = {.lex_state = 73}, - [2517] = {.lex_state = 73}, - [2518] = {.lex_state = 73}, - [2519] = {.lex_state = 73}, - [2520] = {.lex_state = 73}, - [2521] = {.lex_state = 73}, - [2522] = {.lex_state = 73}, - [2523] = {.lex_state = 73}, - [2524] = {.lex_state = 73}, - [2525] = {.lex_state = 73}, - [2526] = {.lex_state = 73}, - [2527] = {.lex_state = 73}, - [2528] = {.lex_state = 73}, - [2529] = {.lex_state = 73}, - [2530] = {.lex_state = 73}, - [2531] = {.lex_state = 73}, - [2532] = {.lex_state = 73}, - [2533] = {.lex_state = 73}, - [2534] = {.lex_state = 73}, - [2535] = {.lex_state = 73}, - [2536] = {.lex_state = 73}, - [2537] = {.lex_state = 73}, - [2538] = {.lex_state = 73}, - [2539] = {.lex_state = 73}, - [2540] = {.lex_state = 73}, - [2541] = {.lex_state = 73}, - [2542] = {.lex_state = 73}, - [2543] = {.lex_state = 73}, - [2544] = {.lex_state = 73}, - [2545] = {.lex_state = 69}, - [2546] = {.lex_state = 73}, - [2547] = {.lex_state = 73}, - [2548] = {.lex_state = 73}, - [2549] = {.lex_state = 73}, - [2550] = {.lex_state = 73}, - [2551] = {.lex_state = 73}, - [2552] = {.lex_state = 73}, - [2553] = {.lex_state = 73}, - [2554] = {.lex_state = 73}, - [2555] = {.lex_state = 73}, - [2556] = {.lex_state = 76}, - [2557] = {.lex_state = 66}, - [2558] = {.lex_state = 66}, - [2559] = {.lex_state = 76}, - [2560] = {.lex_state = 76}, - [2561] = {.lex_state = 76}, - [2562] = {.lex_state = 76}, - [2563] = {.lex_state = 76}, - [2564] = {.lex_state = 76}, - [2565] = {.lex_state = 76}, - [2566] = {.lex_state = 66}, - [2567] = {.lex_state = 76}, - [2568] = {.lex_state = 76}, - [2569] = {.lex_state = 76}, - [2570] = {.lex_state = 76}, - [2571] = {.lex_state = 76}, - [2572] = {.lex_state = 76}, - [2573] = {.lex_state = 76}, - [2574] = {.lex_state = 76}, - [2575] = {.lex_state = 76}, - [2576] = {.lex_state = 76}, - [2577] = {.lex_state = 76}, - [2578] = {.lex_state = 76}, - [2579] = {.lex_state = 76}, - [2580] = {.lex_state = 76}, - [2581] = {.lex_state = 76}, - [2582] = {.lex_state = 76}, - [2583] = {.lex_state = 66}, - [2584] = {.lex_state = 76}, - [2585] = {.lex_state = 76}, - [2586] = {.lex_state = 76}, - [2587] = {.lex_state = 80}, - [2588] = {.lex_state = 76}, - [2589] = {.lex_state = 76}, - [2590] = {.lex_state = 76}, - [2591] = {.lex_state = 76}, - [2592] = {.lex_state = 76}, - [2593] = {.lex_state = 76}, - [2594] = {.lex_state = 76}, - [2595] = {.lex_state = 76}, - [2596] = {.lex_state = 76}, - [2597] = {.lex_state = 76}, - [2598] = {.lex_state = 76}, - [2599] = {.lex_state = 76}, - [2600] = {.lex_state = 76}, - [2601] = {.lex_state = 76}, - [2602] = {.lex_state = 76}, - [2603] = {.lex_state = 76}, - [2604] = {.lex_state = 76}, - [2605] = {.lex_state = 76}, - [2606] = {.lex_state = 76}, - [2607] = {.lex_state = 76}, - [2608] = {.lex_state = 76}, - [2609] = {.lex_state = 76}, - [2610] = {.lex_state = 76}, - [2611] = {.lex_state = 76}, - [2612] = {.lex_state = 76}, - [2613] = {.lex_state = 76}, - [2614] = {.lex_state = 76}, - [2615] = {.lex_state = 76}, - [2616] = {.lex_state = 76}, - [2617] = {.lex_state = 76}, - [2618] = {.lex_state = 76}, - [2619] = {.lex_state = 76}, - [2620] = {.lex_state = 76}, - [2621] = {.lex_state = 76}, - [2622] = {.lex_state = 76}, - [2623] = {.lex_state = 76}, - [2624] = {.lex_state = 76}, - [2625] = {.lex_state = 76}, - [2626] = {.lex_state = 76}, - [2627] = {.lex_state = 76}, - [2628] = {.lex_state = 76}, - [2629] = {.lex_state = 80}, - [2630] = {.lex_state = 76}, - [2631] = {.lex_state = 76}, - [2632] = {.lex_state = 76}, - [2633] = {.lex_state = 76}, - [2634] = {.lex_state = 76}, - [2635] = {.lex_state = 76}, - [2636] = {.lex_state = 76}, - [2637] = {.lex_state = 76}, - [2638] = {.lex_state = 76}, - [2639] = {.lex_state = 76}, - [2640] = {.lex_state = 78}, - [2641] = {.lex_state = 66}, - [2642] = {.lex_state = 66}, - [2643] = {.lex_state = 78}, - [2644] = {.lex_state = 78}, - [2645] = {.lex_state = 78}, - [2646] = {.lex_state = 78}, - [2647] = {.lex_state = 78}, - [2648] = {.lex_state = 78}, - [2649] = {.lex_state = 78}, - [2650] = {.lex_state = 66}, - [2651] = {.lex_state = 78}, - [2652] = {.lex_state = 78}, - [2653] = {.lex_state = 78}, - [2654] = {.lex_state = 78}, - [2655] = {.lex_state = 78}, - [2656] = {.lex_state = 78}, - [2657] = {.lex_state = 78}, - [2658] = {.lex_state = 78}, - [2659] = {.lex_state = 78}, - [2660] = {.lex_state = 78}, - [2661] = {.lex_state = 78}, - [2662] = {.lex_state = 78}, - [2663] = {.lex_state = 78}, - [2664] = {.lex_state = 78}, - [2665] = {.lex_state = 78}, - [2666] = {.lex_state = 78}, - [2667] = {.lex_state = 66}, - [2668] = {.lex_state = 78}, - [2669] = {.lex_state = 78}, - [2670] = {.lex_state = 78}, - [2671] = {.lex_state = 82}, - [2672] = {.lex_state = 78}, - [2673] = {.lex_state = 78}, - [2674] = {.lex_state = 78}, - [2675] = {.lex_state = 78}, - [2676] = {.lex_state = 78}, - [2677] = {.lex_state = 78}, - [2678] = {.lex_state = 78}, - [2679] = {.lex_state = 78}, - [2680] = {.lex_state = 78}, - [2681] = {.lex_state = 78}, - [2682] = {.lex_state = 78}, - [2683] = {.lex_state = 78}, - [2684] = {.lex_state = 78}, - [2685] = {.lex_state = 78}, - [2686] = {.lex_state = 78}, - [2687] = {.lex_state = 78}, - [2688] = {.lex_state = 78}, - [2689] = {.lex_state = 78}, - [2690] = {.lex_state = 78}, - [2691] = {.lex_state = 78}, - [2692] = {.lex_state = 78}, - [2693] = {.lex_state = 78}, - [2694] = {.lex_state = 78}, - [2695] = {.lex_state = 78}, - [2696] = {.lex_state = 78}, - [2697] = {.lex_state = 78}, - [2698] = {.lex_state = 78}, - [2699] = {.lex_state = 78}, - [2700] = {.lex_state = 78}, - [2701] = {.lex_state = 78}, - [2702] = {.lex_state = 78}, - [2703] = {.lex_state = 78}, - [2704] = {.lex_state = 78}, - [2705] = {.lex_state = 78}, - [2706] = {.lex_state = 78}, - [2707] = {.lex_state = 78}, - [2708] = {.lex_state = 78}, - [2709] = {.lex_state = 78}, - [2710] = {.lex_state = 78}, - [2711] = {.lex_state = 78}, - [2712] = {.lex_state = 78}, - [2713] = {.lex_state = 82}, - [2714] = {.lex_state = 78}, - [2715] = {.lex_state = 78}, - [2716] = {.lex_state = 78}, - [2717] = {.lex_state = 78}, - [2718] = {.lex_state = 78}, - [2719] = {.lex_state = 78}, - [2720] = {.lex_state = 78}, - [2721] = {.lex_state = 78}, - [2722] = {.lex_state = 78}, - [2723] = {.lex_state = 78}, - [2724] = {.lex_state = 69}, - [2725] = {.lex_state = 66}, - [2726] = {.lex_state = 66}, - [2727] = {.lex_state = 69}, - [2728] = {.lex_state = 69}, - [2729] = {.lex_state = 69}, - [2730] = {.lex_state = 69}, - [2731] = {.lex_state = 69}, - [2732] = {.lex_state = 69}, - [2733] = {.lex_state = 69}, - [2734] = {.lex_state = 66}, - [2735] = {.lex_state = 69}, - [2736] = {.lex_state = 69}, - [2737] = {.lex_state = 69}, - [2738] = {.lex_state = 69}, - [2739] = {.lex_state = 69}, - [2740] = {.lex_state = 69}, - [2741] = {.lex_state = 69}, - [2742] = {.lex_state = 69}, - [2743] = {.lex_state = 69}, - [2744] = {.lex_state = 69}, - [2745] = {.lex_state = 69}, - [2746] = {.lex_state = 69}, - [2747] = {.lex_state = 69}, - [2748] = {.lex_state = 69}, - [2749] = {.lex_state = 69}, - [2750] = {.lex_state = 69}, - [2751] = {.lex_state = 66}, - [2752] = {.lex_state = 69}, - [2753] = {.lex_state = 69}, - [2754] = {.lex_state = 69}, - [2755] = {.lex_state = 58}, - [2756] = {.lex_state = 69}, - [2757] = {.lex_state = 69}, - [2758] = {.lex_state = 69}, - [2759] = {.lex_state = 69}, - [2760] = {.lex_state = 69}, - [2761] = {.lex_state = 69}, - [2762] = {.lex_state = 69}, - [2763] = {.lex_state = 69}, - [2764] = {.lex_state = 69}, - [2765] = {.lex_state = 69}, - [2766] = {.lex_state = 69}, - [2767] = {.lex_state = 69}, - [2768] = {.lex_state = 69}, - [2769] = {.lex_state = 69}, - [2770] = {.lex_state = 69}, - [2771] = {.lex_state = 69}, - [2772] = {.lex_state = 69}, - [2773] = {.lex_state = 69}, - [2774] = {.lex_state = 69}, - [2775] = {.lex_state = 69}, - [2776] = {.lex_state = 69}, - [2777] = {.lex_state = 69}, - [2778] = {.lex_state = 69}, - [2779] = {.lex_state = 69}, - [2780] = {.lex_state = 69}, - [2781] = {.lex_state = 69}, - [2782] = {.lex_state = 69}, - [2783] = {.lex_state = 69}, - [2784] = {.lex_state = 69}, - [2785] = {.lex_state = 69}, - [2786] = {.lex_state = 69}, - [2787] = {.lex_state = 69}, - [2788] = {.lex_state = 69}, - [2789] = {.lex_state = 69}, - [2790] = {.lex_state = 69}, - [2791] = {.lex_state = 69}, - [2792] = {.lex_state = 69}, - [2793] = {.lex_state = 69}, - [2794] = {.lex_state = 69}, - [2795] = {.lex_state = 69}, - [2796] = {.lex_state = 69}, - [2797] = {.lex_state = 58}, - [2798] = {.lex_state = 69}, - [2799] = {.lex_state = 69}, - [2800] = {.lex_state = 69}, - [2801] = {.lex_state = 69}, - [2802] = {.lex_state = 69}, - [2803] = {.lex_state = 69}, - [2804] = {.lex_state = 69}, - [2805] = {.lex_state = 69}, - [2806] = {.lex_state = 69}, - [2807] = {.lex_state = 69}, - [2808] = {.lex_state = 80}, - [2809] = {.lex_state = 66}, - [2810] = {.lex_state = 66}, - [2811] = {.lex_state = 80}, - [2812] = {.lex_state = 80}, - [2813] = {.lex_state = 80}, - [2814] = {.lex_state = 80}, - [2815] = {.lex_state = 80}, - [2816] = {.lex_state = 80}, - [2817] = {.lex_state = 80}, - [2818] = {.lex_state = 66}, - [2819] = {.lex_state = 80}, - [2820] = {.lex_state = 80}, - [2821] = {.lex_state = 80}, - [2822] = {.lex_state = 80}, - [2823] = {.lex_state = 80}, - [2824] = {.lex_state = 80}, - [2825] = {.lex_state = 80}, - [2826] = {.lex_state = 80}, - [2827] = {.lex_state = 80}, - [2828] = {.lex_state = 80}, - [2829] = {.lex_state = 80}, - [2830] = {.lex_state = 80}, - [2831] = {.lex_state = 80}, - [2832] = {.lex_state = 80}, - [2833] = {.lex_state = 80}, - [2834] = {.lex_state = 80}, - [2835] = {.lex_state = 66}, - [2836] = {.lex_state = 80}, - [2837] = {.lex_state = 80}, - [2838] = {.lex_state = 80}, - [2839] = {.lex_state = 57}, - [2840] = {.lex_state = 80}, - [2841] = {.lex_state = 80}, - [2842] = {.lex_state = 80}, - [2843] = {.lex_state = 80}, - [2844] = {.lex_state = 80}, - [2845] = {.lex_state = 80}, - [2846] = {.lex_state = 80}, - [2847] = {.lex_state = 80}, - [2848] = {.lex_state = 80}, - [2849] = {.lex_state = 80}, - [2850] = {.lex_state = 80}, - [2851] = {.lex_state = 80}, - [2852] = {.lex_state = 80}, - [2853] = {.lex_state = 80}, - [2854] = {.lex_state = 80}, - [2855] = {.lex_state = 80}, - [2856] = {.lex_state = 80}, - [2857] = {.lex_state = 80}, - [2858] = {.lex_state = 80}, - [2859] = {.lex_state = 80}, - [2860] = {.lex_state = 80}, - [2861] = {.lex_state = 80}, - [2862] = {.lex_state = 80}, - [2863] = {.lex_state = 80}, - [2864] = {.lex_state = 80}, - [2865] = {.lex_state = 80}, - [2866] = {.lex_state = 80}, - [2867] = {.lex_state = 80}, - [2868] = {.lex_state = 80}, - [2869] = {.lex_state = 80}, - [2870] = {.lex_state = 80}, - [2871] = {.lex_state = 80}, - [2872] = {.lex_state = 80}, - [2873] = {.lex_state = 80}, - [2874] = {.lex_state = 80}, - [2875] = {.lex_state = 80}, - [2876] = {.lex_state = 80}, - [2877] = {.lex_state = 80}, - [2878] = {.lex_state = 80}, - [2879] = {.lex_state = 80}, - [2880] = {.lex_state = 80}, - [2881] = {.lex_state = 57}, - [2882] = {.lex_state = 80}, - [2883] = {.lex_state = 80}, - [2884] = {.lex_state = 80}, - [2885] = {.lex_state = 80}, - [2886] = {.lex_state = 80}, - [2887] = {.lex_state = 80}, - [2888] = {.lex_state = 80}, - [2889] = {.lex_state = 80}, - [2890] = {.lex_state = 80}, - [2891] = {.lex_state = 80}, - [2892] = {.lex_state = 82}, - [2893] = {.lex_state = 66}, - [2894] = {.lex_state = 66}, - [2895] = {.lex_state = 82}, - [2896] = {.lex_state = 82}, - [2897] = {.lex_state = 82}, - [2898] = {.lex_state = 82}, - [2899] = {.lex_state = 82}, - [2900] = {.lex_state = 82}, - [2901] = {.lex_state = 82}, - [2902] = {.lex_state = 66}, - [2903] = {.lex_state = 82}, - [2904] = {.lex_state = 82}, - [2905] = {.lex_state = 82}, - [2906] = {.lex_state = 82}, - [2907] = {.lex_state = 82}, - [2908] = {.lex_state = 82}, - [2909] = {.lex_state = 82}, - [2910] = {.lex_state = 82}, - [2911] = {.lex_state = 82}, - [2912] = {.lex_state = 82}, - [2913] = {.lex_state = 82}, - [2914] = {.lex_state = 82}, - [2915] = {.lex_state = 82}, - [2916] = {.lex_state = 82}, - [2917] = {.lex_state = 82}, - [2918] = {.lex_state = 82}, - [2919] = {.lex_state = 66}, - [2920] = {.lex_state = 82}, - [2921] = {.lex_state = 82}, - [2922] = {.lex_state = 82}, - [2923] = {.lex_state = 66}, - [2924] = {.lex_state = 82}, - [2925] = {.lex_state = 82}, - [2926] = {.lex_state = 82}, - [2927] = {.lex_state = 82}, - [2928] = {.lex_state = 82}, - [2929] = {.lex_state = 82}, - [2930] = {.lex_state = 82}, - [2931] = {.lex_state = 82}, - [2932] = {.lex_state = 82}, - [2933] = {.lex_state = 82}, - [2934] = {.lex_state = 82}, - [2935] = {.lex_state = 82}, - [2936] = {.lex_state = 82}, - [2937] = {.lex_state = 82}, - [2938] = {.lex_state = 82}, - [2939] = {.lex_state = 82}, - [2940] = {.lex_state = 82}, - [2941] = {.lex_state = 82}, - [2942] = {.lex_state = 82}, - [2943] = {.lex_state = 82}, - [2944] = {.lex_state = 82}, - [2945] = {.lex_state = 82}, - [2946] = {.lex_state = 82}, - [2947] = {.lex_state = 82}, - [2948] = {.lex_state = 82}, - [2949] = {.lex_state = 82}, - [2950] = {.lex_state = 82}, - [2951] = {.lex_state = 82}, - [2952] = {.lex_state = 82}, - [2953] = {.lex_state = 82}, - [2954] = {.lex_state = 82}, - [2955] = {.lex_state = 82}, - [2956] = {.lex_state = 82}, - [2957] = {.lex_state = 82}, - [2958] = {.lex_state = 82}, - [2959] = {.lex_state = 82}, - [2960] = {.lex_state = 82}, - [2961] = {.lex_state = 82}, - [2962] = {.lex_state = 82}, - [2963] = {.lex_state = 82}, - [2964] = {.lex_state = 82}, - [2965] = {.lex_state = 66}, - [2966] = {.lex_state = 82}, - [2967] = {.lex_state = 82}, - [2968] = {.lex_state = 82}, - [2969] = {.lex_state = 82}, - [2970] = {.lex_state = 82}, - [2971] = {.lex_state = 82}, - [2972] = {.lex_state = 82}, - [2973] = {.lex_state = 82}, - [2974] = {.lex_state = 82}, - [2975] = {.lex_state = 82}, - [2976] = {.lex_state = 55}, - [2977] = {.lex_state = 66}, - [2978] = {.lex_state = 66}, - [2979] = {.lex_state = 55}, - [2980] = {.lex_state = 55}, - [2981] = {.lex_state = 55}, - [2982] = {.lex_state = 55}, - [2983] = {.lex_state = 55}, - [2984] = {.lex_state = 55}, - [2985] = {.lex_state = 55}, - [2986] = {.lex_state = 66}, - [2987] = {.lex_state = 55}, - [2988] = {.lex_state = 55}, - [2989] = {.lex_state = 55}, - [2990] = {.lex_state = 55}, - [2991] = {.lex_state = 55}, + [2363] = {.lex_state = 77}, + [2364] = {.lex_state = 77}, + [2365] = {.lex_state = 83}, + [2366] = {.lex_state = 77}, + [2367] = {.lex_state = 77}, + [2368] = {.lex_state = 77}, + [2369] = {.lex_state = 77}, + [2370] = {.lex_state = 77}, + [2371] = {.lex_state = 77}, + [2372] = {.lex_state = 77}, + [2373] = {.lex_state = 77}, + [2374] = {.lex_state = 77}, + [2375] = {.lex_state = 77}, + [2376] = {.lex_state = 77}, + [2377] = {.lex_state = 77}, + [2378] = {.lex_state = 77}, + [2379] = {.lex_state = 77}, + [2380] = {.lex_state = 77}, + [2381] = {.lex_state = 77}, + [2382] = {.lex_state = 77}, + [2383] = {.lex_state = 77}, + [2384] = {.lex_state = 77}, + [2385] = {.lex_state = 77}, + [2386] = {.lex_state = 77}, + [2387] = {.lex_state = 77}, + [2388] = {.lex_state = 77}, + [2389] = {.lex_state = 77}, + [2390] = {.lex_state = 77}, + [2391] = {.lex_state = 77}, + [2392] = {.lex_state = 77}, + [2393] = {.lex_state = 77}, + [2394] = {.lex_state = 77}, + [2395] = {.lex_state = 77}, + [2396] = {.lex_state = 77}, + [2397] = {.lex_state = 77}, + [2398] = {.lex_state = 77}, + [2399] = {.lex_state = 77}, + [2400] = {.lex_state = 77}, + [2401] = {.lex_state = 77}, + [2402] = {.lex_state = 77}, + [2403] = {.lex_state = 77}, + [2404] = {.lex_state = 77}, + [2405] = {.lex_state = 77}, + [2406] = {.lex_state = 77}, + [2407] = {.lex_state = 83}, + [2408] = {.lex_state = 73}, + [2409] = {.lex_state = 77}, + [2410] = {.lex_state = 77}, + [2411] = {.lex_state = 77}, + [2412] = {.lex_state = 77}, + [2413] = {.lex_state = 77}, + [2414] = {.lex_state = 77}, + [2415] = {.lex_state = 77}, + [2416] = {.lex_state = 77}, + [2417] = {.lex_state = 77}, + [2418] = {.lex_state = 79}, + [2419] = {.lex_state = 91}, + [2420] = {.lex_state = 91}, + [2421] = {.lex_state = 79}, + [2422] = {.lex_state = 79}, + [2423] = {.lex_state = 79}, + [2424] = {.lex_state = 79}, + [2425] = {.lex_state = 79}, + [2426] = {.lex_state = 79}, + [2427] = {.lex_state = 79}, + [2428] = {.lex_state = 91}, + [2429] = {.lex_state = 79}, + [2430] = {.lex_state = 79}, + [2431] = {.lex_state = 79}, + [2432] = {.lex_state = 79}, + [2433] = {.lex_state = 79}, + [2434] = {.lex_state = 79}, + [2435] = {.lex_state = 79}, + [2436] = {.lex_state = 79}, + [2437] = {.lex_state = 79}, + [2438] = {.lex_state = 79}, + [2439] = {.lex_state = 79}, + [2440] = {.lex_state = 79}, + [2441] = {.lex_state = 79}, + [2442] = {.lex_state = 79}, + [2443] = {.lex_state = 79}, + [2444] = {.lex_state = 91}, + [2445] = {.lex_state = 79}, + [2446] = {.lex_state = 79}, + [2447] = {.lex_state = 85}, + [2448] = {.lex_state = 79}, + [2449] = {.lex_state = 79}, + [2450] = {.lex_state = 79}, + [2451] = {.lex_state = 79}, + [2452] = {.lex_state = 79}, + [2453] = {.lex_state = 79}, + [2454] = {.lex_state = 79}, + [2455] = {.lex_state = 79}, + [2456] = {.lex_state = 79}, + [2457] = {.lex_state = 79}, + [2458] = {.lex_state = 79}, + [2459] = {.lex_state = 79}, + [2460] = {.lex_state = 79}, + [2461] = {.lex_state = 79}, + [2462] = {.lex_state = 79}, + [2463] = {.lex_state = 79}, + [2464] = {.lex_state = 79}, + [2465] = {.lex_state = 79}, + [2466] = {.lex_state = 79}, + [2467] = {.lex_state = 79}, + [2468] = {.lex_state = 79}, + [2469] = {.lex_state = 79}, + [2470] = {.lex_state = 79}, + [2471] = {.lex_state = 79}, + [2472] = {.lex_state = 79}, + [2473] = {.lex_state = 79}, + [2474] = {.lex_state = 79}, + [2475] = {.lex_state = 79}, + [2476] = {.lex_state = 79}, + [2477] = {.lex_state = 79}, + [2478] = {.lex_state = 79}, + [2479] = {.lex_state = 79}, + [2480] = {.lex_state = 79}, + [2481] = {.lex_state = 79}, + [2482] = {.lex_state = 79}, + [2483] = {.lex_state = 79}, + [2484] = {.lex_state = 79}, + [2485] = {.lex_state = 79}, + [2486] = {.lex_state = 79}, + [2487] = {.lex_state = 79}, + [2488] = {.lex_state = 79}, + [2489] = {.lex_state = 85}, + [2490] = {.lex_state = 79}, + [2491] = {.lex_state = 79}, + [2492] = {.lex_state = 79}, + [2493] = {.lex_state = 79}, + [2494] = {.lex_state = 79}, + [2495] = {.lex_state = 79}, + [2496] = {.lex_state = 79}, + [2497] = {.lex_state = 79}, + [2498] = {.lex_state = 79}, + [2499] = {.lex_state = 79}, + [2500] = {.lex_state = 81}, + [2501] = {.lex_state = 91}, + [2502] = {.lex_state = 91}, + [2503] = {.lex_state = 81}, + [2504] = {.lex_state = 81}, + [2505] = {.lex_state = 81}, + [2506] = {.lex_state = 81}, + [2507] = {.lex_state = 81}, + [2508] = {.lex_state = 81}, + [2509] = {.lex_state = 81}, + [2510] = {.lex_state = 91}, + [2511] = {.lex_state = 81}, + [2512] = {.lex_state = 81}, + [2513] = {.lex_state = 81}, + [2514] = {.lex_state = 81}, + [2515] = {.lex_state = 81}, + [2516] = {.lex_state = 81}, + [2517] = {.lex_state = 81}, + [2518] = {.lex_state = 81}, + [2519] = {.lex_state = 81}, + [2520] = {.lex_state = 81}, + [2521] = {.lex_state = 81}, + [2522] = {.lex_state = 81}, + [2523] = {.lex_state = 81}, + [2524] = {.lex_state = 81}, + [2525] = {.lex_state = 81}, + [2526] = {.lex_state = 91}, + [2527] = {.lex_state = 81}, + [2528] = {.lex_state = 81}, + [2529] = {.lex_state = 87}, + [2530] = {.lex_state = 81}, + [2531] = {.lex_state = 81}, + [2532] = {.lex_state = 81}, + [2533] = {.lex_state = 81}, + [2534] = {.lex_state = 81}, + [2535] = {.lex_state = 81}, + [2536] = {.lex_state = 81}, + [2537] = {.lex_state = 81}, + [2538] = {.lex_state = 81}, + [2539] = {.lex_state = 81}, + [2540] = {.lex_state = 81}, + [2541] = {.lex_state = 81}, + [2542] = {.lex_state = 81}, + [2543] = {.lex_state = 81}, + [2544] = {.lex_state = 81}, + [2545] = {.lex_state = 81}, + [2546] = {.lex_state = 81}, + [2547] = {.lex_state = 81}, + [2548] = {.lex_state = 81}, + [2549] = {.lex_state = 81}, + [2550] = {.lex_state = 81}, + [2551] = {.lex_state = 81}, + [2552] = {.lex_state = 81}, + [2553] = {.lex_state = 81}, + [2554] = {.lex_state = 81}, + [2555] = {.lex_state = 81}, + [2556] = {.lex_state = 81}, + [2557] = {.lex_state = 81}, + [2558] = {.lex_state = 81}, + [2559] = {.lex_state = 81}, + [2560] = {.lex_state = 81}, + [2561] = {.lex_state = 81}, + [2562] = {.lex_state = 81}, + [2563] = {.lex_state = 81}, + [2564] = {.lex_state = 81}, + [2565] = {.lex_state = 81}, + [2566] = {.lex_state = 81}, + [2567] = {.lex_state = 81}, + [2568] = {.lex_state = 81}, + [2569] = {.lex_state = 81}, + [2570] = {.lex_state = 81}, + [2571] = {.lex_state = 87}, + [2572] = {.lex_state = 81}, + [2573] = {.lex_state = 81}, + [2574] = {.lex_state = 81}, + [2575] = {.lex_state = 81}, + [2576] = {.lex_state = 81}, + [2577] = {.lex_state = 81}, + [2578] = {.lex_state = 81}, + [2579] = {.lex_state = 81}, + [2580] = {.lex_state = 81}, + [2581] = {.lex_state = 81}, + [2582] = {.lex_state = 83}, + [2583] = {.lex_state = 91}, + [2584] = {.lex_state = 91}, + [2585] = {.lex_state = 83}, + [2586] = {.lex_state = 83}, + [2587] = {.lex_state = 83}, + [2588] = {.lex_state = 83}, + [2589] = {.lex_state = 83}, + [2590] = {.lex_state = 83}, + [2591] = {.lex_state = 83}, + [2592] = {.lex_state = 91}, + [2593] = {.lex_state = 83}, + [2594] = {.lex_state = 83}, + [2595] = {.lex_state = 83}, + [2596] = {.lex_state = 83}, + [2597] = {.lex_state = 83}, + [2598] = {.lex_state = 83}, + [2599] = {.lex_state = 83}, + [2600] = {.lex_state = 83}, + [2601] = {.lex_state = 83}, + [2602] = {.lex_state = 83}, + [2603] = {.lex_state = 83}, + [2604] = {.lex_state = 83}, + [2605] = {.lex_state = 83}, + [2606] = {.lex_state = 83}, + [2607] = {.lex_state = 83}, + [2608] = {.lex_state = 91}, + [2609] = {.lex_state = 83}, + [2610] = {.lex_state = 83}, + [2611] = {.lex_state = 88}, + [2612] = {.lex_state = 83}, + [2613] = {.lex_state = 83}, + [2614] = {.lex_state = 83}, + [2615] = {.lex_state = 83}, + [2616] = {.lex_state = 83}, + [2617] = {.lex_state = 83}, + [2618] = {.lex_state = 83}, + [2619] = {.lex_state = 83}, + [2620] = {.lex_state = 83}, + [2621] = {.lex_state = 83}, + [2622] = {.lex_state = 83}, + [2623] = {.lex_state = 83}, + [2624] = {.lex_state = 83}, + [2625] = {.lex_state = 83}, + [2626] = {.lex_state = 83}, + [2627] = {.lex_state = 83}, + [2628] = {.lex_state = 83}, + [2629] = {.lex_state = 83}, + [2630] = {.lex_state = 83}, + [2631] = {.lex_state = 83}, + [2632] = {.lex_state = 83}, + [2633] = {.lex_state = 83}, + [2634] = {.lex_state = 83}, + [2635] = {.lex_state = 83}, + [2636] = {.lex_state = 83}, + [2637] = {.lex_state = 83}, + [2638] = {.lex_state = 83}, + [2639] = {.lex_state = 83}, + [2640] = {.lex_state = 83}, + [2641] = {.lex_state = 83}, + [2642] = {.lex_state = 83}, + [2643] = {.lex_state = 83}, + [2644] = {.lex_state = 83}, + [2645] = {.lex_state = 83}, + [2646] = {.lex_state = 83}, + [2647] = {.lex_state = 83}, + [2648] = {.lex_state = 83}, + [2649] = {.lex_state = 83}, + [2650] = {.lex_state = 83}, + [2651] = {.lex_state = 83}, + [2652] = {.lex_state = 83}, + [2653] = {.lex_state = 88}, + [2654] = {.lex_state = 83}, + [2655] = {.lex_state = 83}, + [2656] = {.lex_state = 83}, + [2657] = {.lex_state = 83}, + [2658] = {.lex_state = 83}, + [2659] = {.lex_state = 83}, + [2660] = {.lex_state = 83}, + [2661] = {.lex_state = 83}, + [2662] = {.lex_state = 83}, + [2663] = {.lex_state = 83}, + [2664] = {.lex_state = 85}, + [2665] = {.lex_state = 67}, + [2666] = {.lex_state = 91}, + [2667] = {.lex_state = 85}, + [2668] = {.lex_state = 85}, + [2669] = {.lex_state = 85}, + [2670] = {.lex_state = 85}, + [2671] = {.lex_state = 85}, + [2672] = {.lex_state = 85}, + [2673] = {.lex_state = 85}, + [2674] = {.lex_state = 73}, + [2675] = {.lex_state = 85}, + [2676] = {.lex_state = 85}, + [2677] = {.lex_state = 85}, + [2678] = {.lex_state = 85}, + [2679] = {.lex_state = 85}, + [2680] = {.lex_state = 85}, + [2681] = {.lex_state = 85}, + [2682] = {.lex_state = 85}, + [2683] = {.lex_state = 85}, + [2684] = {.lex_state = 85}, + [2685] = {.lex_state = 85}, + [2686] = {.lex_state = 85}, + [2687] = {.lex_state = 85}, + [2688] = {.lex_state = 85}, + [2689] = {.lex_state = 85}, + [2690] = {.lex_state = 91}, + [2691] = {.lex_state = 85}, + [2692] = {.lex_state = 85}, + [2693] = {.lex_state = 58}, + [2694] = {.lex_state = 85}, + [2695] = {.lex_state = 85}, + [2696] = {.lex_state = 85}, + [2697] = {.lex_state = 85}, + [2698] = {.lex_state = 85}, + [2699] = {.lex_state = 85}, + [2700] = {.lex_state = 85}, + [2701] = {.lex_state = 85}, + [2702] = {.lex_state = 85}, + [2703] = {.lex_state = 85}, + [2704] = {.lex_state = 85}, + [2705] = {.lex_state = 85}, + [2706] = {.lex_state = 85}, + [2707] = {.lex_state = 85}, + [2708] = {.lex_state = 85}, + [2709] = {.lex_state = 85}, + [2710] = {.lex_state = 85}, + [2711] = {.lex_state = 85}, + [2712] = {.lex_state = 85}, + [2713] = {.lex_state = 85}, + [2714] = {.lex_state = 85}, + [2715] = {.lex_state = 85}, + [2716] = {.lex_state = 85}, + [2717] = {.lex_state = 85}, + [2718] = {.lex_state = 85}, + [2719] = {.lex_state = 85}, + [2720] = {.lex_state = 85}, + [2721] = {.lex_state = 85}, + [2722] = {.lex_state = 85}, + [2723] = {.lex_state = 85}, + [2724] = {.lex_state = 85}, + [2725] = {.lex_state = 85}, + [2726] = {.lex_state = 85}, + [2727] = {.lex_state = 85}, + [2728] = {.lex_state = 85}, + [2729] = {.lex_state = 85}, + [2730] = {.lex_state = 85}, + [2731] = {.lex_state = 85}, + [2732] = {.lex_state = 85}, + [2733] = {.lex_state = 85}, + [2734] = {.lex_state = 85}, + [2735] = {.lex_state = 58}, + [2736] = {.lex_state = 85}, + [2737] = {.lex_state = 85}, + [2738] = {.lex_state = 85}, + [2739] = {.lex_state = 85}, + [2740] = {.lex_state = 85}, + [2741] = {.lex_state = 85}, + [2742] = {.lex_state = 85}, + [2743] = {.lex_state = 85}, + [2744] = {.lex_state = 85}, + [2745] = {.lex_state = 85}, + [2746] = {.lex_state = 87}, + [2747] = {.lex_state = 67}, + [2748] = {.lex_state = 67}, + [2749] = {.lex_state = 87}, + [2750] = {.lex_state = 87}, + [2751] = {.lex_state = 87}, + [2752] = {.lex_state = 87}, + [2753] = {.lex_state = 87}, + [2754] = {.lex_state = 87}, + [2755] = {.lex_state = 87}, + [2756] = {.lex_state = 67}, + [2757] = {.lex_state = 87}, + [2758] = {.lex_state = 87}, + [2759] = {.lex_state = 87}, + [2760] = {.lex_state = 87}, + [2761] = {.lex_state = 87}, + [2762] = {.lex_state = 87}, + [2763] = {.lex_state = 87}, + [2764] = {.lex_state = 87}, + [2765] = {.lex_state = 87}, + [2766] = {.lex_state = 87}, + [2767] = {.lex_state = 87}, + [2768] = {.lex_state = 87}, + [2769] = {.lex_state = 87}, + [2770] = {.lex_state = 87}, + [2771] = {.lex_state = 87}, + [2772] = {.lex_state = 67}, + [2773] = {.lex_state = 87}, + [2774] = {.lex_state = 87}, + [2775] = {.lex_state = 57}, + [2776] = {.lex_state = 87}, + [2777] = {.lex_state = 87}, + [2778] = {.lex_state = 87}, + [2779] = {.lex_state = 87}, + [2780] = {.lex_state = 87}, + [2781] = {.lex_state = 87}, + [2782] = {.lex_state = 87}, + [2783] = {.lex_state = 87}, + [2784] = {.lex_state = 87}, + [2785] = {.lex_state = 87}, + [2786] = {.lex_state = 87}, + [2787] = {.lex_state = 87}, + [2788] = {.lex_state = 87}, + [2789] = {.lex_state = 87}, + [2790] = {.lex_state = 87}, + [2791] = {.lex_state = 87}, + [2792] = {.lex_state = 87}, + [2793] = {.lex_state = 87}, + [2794] = {.lex_state = 87}, + [2795] = {.lex_state = 87}, + [2796] = {.lex_state = 87}, + [2797] = {.lex_state = 87}, + [2798] = {.lex_state = 87}, + [2799] = {.lex_state = 87}, + [2800] = {.lex_state = 87}, + [2801] = {.lex_state = 87}, + [2802] = {.lex_state = 87}, + [2803] = {.lex_state = 87}, + [2804] = {.lex_state = 87}, + [2805] = {.lex_state = 87}, + [2806] = {.lex_state = 87}, + [2807] = {.lex_state = 87}, + [2808] = {.lex_state = 87}, + [2809] = {.lex_state = 87}, + [2810] = {.lex_state = 87}, + [2811] = {.lex_state = 87}, + [2812] = {.lex_state = 87}, + [2813] = {.lex_state = 87}, + [2814] = {.lex_state = 87}, + [2815] = {.lex_state = 87}, + [2816] = {.lex_state = 87}, + [2817] = {.lex_state = 57}, + [2818] = {.lex_state = 87}, + [2819] = {.lex_state = 87}, + [2820] = {.lex_state = 87}, + [2821] = {.lex_state = 87}, + [2822] = {.lex_state = 87}, + [2823] = {.lex_state = 87}, + [2824] = {.lex_state = 87}, + [2825] = {.lex_state = 87}, + [2826] = {.lex_state = 87}, + [2827] = {.lex_state = 87}, + [2828] = {.lex_state = 88}, + [2829] = {.lex_state = 67}, + [2830] = {.lex_state = 67}, + [2831] = {.lex_state = 88}, + [2832] = {.lex_state = 88}, + [2833] = {.lex_state = 88}, + [2834] = {.lex_state = 88}, + [2835] = {.lex_state = 88}, + [2836] = {.lex_state = 88}, + [2837] = {.lex_state = 88}, + [2838] = {.lex_state = 67}, + [2839] = {.lex_state = 88}, + [2840] = {.lex_state = 88}, + [2841] = {.lex_state = 88}, + [2842] = {.lex_state = 88}, + [2843] = {.lex_state = 88}, + [2844] = {.lex_state = 88}, + [2845] = {.lex_state = 88}, + [2846] = {.lex_state = 88}, + [2847] = {.lex_state = 88}, + [2848] = {.lex_state = 88}, + [2849] = {.lex_state = 88}, + [2850] = {.lex_state = 88}, + [2851] = {.lex_state = 88}, + [2852] = {.lex_state = 88}, + [2853] = {.lex_state = 88}, + [2854] = {.lex_state = 73}, + [2855] = {.lex_state = 88}, + [2856] = {.lex_state = 88}, + [2857] = {.lex_state = 67}, + [2858] = {.lex_state = 88}, + [2859] = {.lex_state = 88}, + [2860] = {.lex_state = 88}, + [2861] = {.lex_state = 88}, + [2862] = {.lex_state = 88}, + [2863] = {.lex_state = 88}, + [2864] = {.lex_state = 88}, + [2865] = {.lex_state = 88}, + [2866] = {.lex_state = 88}, + [2867] = {.lex_state = 88}, + [2868] = {.lex_state = 88}, + [2869] = {.lex_state = 88}, + [2870] = {.lex_state = 88}, + [2871] = {.lex_state = 88}, + [2872] = {.lex_state = 88}, + [2873] = {.lex_state = 88}, + [2874] = {.lex_state = 88}, + [2875] = {.lex_state = 88}, + [2876] = {.lex_state = 88}, + [2877] = {.lex_state = 88}, + [2878] = {.lex_state = 88}, + [2879] = {.lex_state = 88}, + [2880] = {.lex_state = 88}, + [2881] = {.lex_state = 88}, + [2882] = {.lex_state = 88}, + [2883] = {.lex_state = 88}, + [2884] = {.lex_state = 88}, + [2885] = {.lex_state = 88}, + [2886] = {.lex_state = 88}, + [2887] = {.lex_state = 88}, + [2888] = {.lex_state = 88}, + [2889] = {.lex_state = 88}, + [2890] = {.lex_state = 88}, + [2891] = {.lex_state = 88}, + [2892] = {.lex_state = 88}, + [2893] = {.lex_state = 88}, + [2894] = {.lex_state = 88}, + [2895] = {.lex_state = 88}, + [2896] = {.lex_state = 88}, + [2897] = {.lex_state = 88}, + [2898] = {.lex_state = 88}, + [2899] = {.lex_state = 67}, + [2900] = {.lex_state = 88}, + [2901] = {.lex_state = 88}, + [2902] = {.lex_state = 88}, + [2903] = {.lex_state = 88}, + [2904] = {.lex_state = 88}, + [2905] = {.lex_state = 88}, + [2906] = {.lex_state = 88}, + [2907] = {.lex_state = 88}, + [2908] = {.lex_state = 88}, + [2909] = {.lex_state = 88}, + [2910] = {.lex_state = 56}, + [2911] = {.lex_state = 67}, + [2912] = {.lex_state = 67}, + [2913] = {.lex_state = 56}, + [2914] = {.lex_state = 56}, + [2915] = {.lex_state = 56}, + [2916] = {.lex_state = 56}, + [2917] = {.lex_state = 56}, + [2918] = {.lex_state = 56}, + [2919] = {.lex_state = 56}, + [2920] = {.lex_state = 67}, + [2921] = {.lex_state = 56}, + [2922] = {.lex_state = 56}, + [2923] = {.lex_state = 56}, + [2924] = {.lex_state = 56}, + [2925] = {.lex_state = 56}, + [2926] = {.lex_state = 56}, + [2927] = {.lex_state = 56}, + [2928] = {.lex_state = 56}, + [2929] = {.lex_state = 56}, + [2930] = {.lex_state = 56}, + [2931] = {.lex_state = 56}, + [2932] = {.lex_state = 56}, + [2933] = {.lex_state = 56}, + [2934] = {.lex_state = 56}, + [2935] = {.lex_state = 56}, + [2936] = {.lex_state = 67}, + [2937] = {.lex_state = 56}, + [2938] = {.lex_state = 56}, + [2939] = {.lex_state = 67}, + [2940] = {.lex_state = 56}, + [2941] = {.lex_state = 56}, + [2942] = {.lex_state = 56}, + [2943] = {.lex_state = 56}, + [2944] = {.lex_state = 56}, + [2945] = {.lex_state = 56}, + [2946] = {.lex_state = 56}, + [2947] = {.lex_state = 56}, + [2948] = {.lex_state = 56}, + [2949] = {.lex_state = 56}, + [2950] = {.lex_state = 56}, + [2951] = {.lex_state = 56}, + [2952] = {.lex_state = 56}, + [2953] = {.lex_state = 56}, + [2954] = {.lex_state = 56}, + [2955] = {.lex_state = 56}, + [2956] = {.lex_state = 56}, + [2957] = {.lex_state = 56}, + [2958] = {.lex_state = 56}, + [2959] = {.lex_state = 56}, + [2960] = {.lex_state = 56}, + [2961] = {.lex_state = 56}, + [2962] = {.lex_state = 56}, + [2963] = {.lex_state = 56}, + [2964] = {.lex_state = 56}, + [2965] = {.lex_state = 56}, + [2966] = {.lex_state = 56}, + [2967] = {.lex_state = 56}, + [2968] = {.lex_state = 56}, + [2969] = {.lex_state = 56}, + [2970] = {.lex_state = 56}, + [2971] = {.lex_state = 56}, + [2972] = {.lex_state = 56}, + [2973] = {.lex_state = 56}, + [2974] = {.lex_state = 56}, + [2975] = {.lex_state = 56}, + [2976] = {.lex_state = 56}, + [2977] = {.lex_state = 56}, + [2978] = {.lex_state = 56}, + [2979] = {.lex_state = 56}, + [2980] = {.lex_state = 56}, + [2981] = {.lex_state = 67}, + [2982] = {.lex_state = 56}, + [2983] = {.lex_state = 56}, + [2984] = {.lex_state = 56}, + [2985] = {.lex_state = 56}, + [2986] = {.lex_state = 56}, + [2987] = {.lex_state = 56}, + [2988] = {.lex_state = 56}, + [2989] = {.lex_state = 56}, + [2990] = {.lex_state = 56}, + [2991] = {.lex_state = 56}, [2992] = {.lex_state = 55}, - [2993] = {.lex_state = 55}, - [2994] = {.lex_state = 55}, + [2993] = {.lex_state = 67}, + [2994] = {.lex_state = 67}, [2995] = {.lex_state = 55}, [2996] = {.lex_state = 55}, - [2997] = {.lex_state = 54}, + [2997] = {.lex_state = 55}, [2998] = {.lex_state = 55}, [2999] = {.lex_state = 55}, [3000] = {.lex_state = 55}, - [3001] = {.lex_state = 55}, - [3002] = {.lex_state = 55}, - [3003] = {.lex_state = 54}, + [3001] = {.lex_state = 73}, + [3002] = {.lex_state = 67}, + [3003] = {.lex_state = 55}, [3004] = {.lex_state = 55}, [3005] = {.lex_state = 55}, [3006] = {.lex_state = 55}, - [3007] = {.lex_state = 66}, + [3007] = {.lex_state = 55}, [3008] = {.lex_state = 55}, [3009] = {.lex_state = 55}, [3010] = {.lex_state = 55}, @@ -21965,10 +21607,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3015] = {.lex_state = 55}, [3016] = {.lex_state = 55}, [3017] = {.lex_state = 55}, - [3018] = {.lex_state = 55}, + [3018] = {.lex_state = 67}, [3019] = {.lex_state = 55}, [3020] = {.lex_state = 55}, - [3021] = {.lex_state = 55}, + [3021] = {.lex_state = 67}, [3022] = {.lex_state = 55}, [3023] = {.lex_state = 55}, [3024] = {.lex_state = 55}, @@ -21996,7 +21638,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3046] = {.lex_state = 55}, [3047] = {.lex_state = 55}, [3048] = {.lex_state = 55}, - [3049] = {.lex_state = 66}, + [3049] = {.lex_state = 55}, [3050] = {.lex_state = 55}, [3051] = {.lex_state = 55}, [3052] = {.lex_state = 55}, @@ -22007,1425 +21649,1425 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3057] = {.lex_state = 55}, [3058] = {.lex_state = 55}, [3059] = {.lex_state = 55}, - [3060] = {.lex_state = 59}, - [3061] = {.lex_state = 66}, - [3062] = {.lex_state = 66}, - [3063] = {.lex_state = 59}, - [3064] = {.lex_state = 59}, - [3065] = {.lex_state = 59}, - [3066] = {.lex_state = 59}, - [3067] = {.lex_state = 59}, - [3068] = {.lex_state = 59}, - [3069] = {.lex_state = 59}, - [3070] = {.lex_state = 54}, - [3071] = {.lex_state = 59}, - [3072] = {.lex_state = 59}, - [3073] = {.lex_state = 59}, - [3074] = {.lex_state = 59}, - [3075] = {.lex_state = 59}, - [3076] = {.lex_state = 59}, - [3077] = {.lex_state = 59}, - [3078] = {.lex_state = 59}, - [3079] = {.lex_state = 59}, - [3080] = {.lex_state = 59}, - [3081] = {.lex_state = 59}, - [3082] = {.lex_state = 59}, - [3083] = {.lex_state = 59}, - [3084] = {.lex_state = 59}, - [3085] = {.lex_state = 59}, - [3086] = {.lex_state = 59}, - [3087] = {.lex_state = 66}, - [3088] = {.lex_state = 59}, - [3089] = {.lex_state = 59}, - [3090] = {.lex_state = 59}, - [3091] = {.lex_state = 66}, - [3092] = {.lex_state = 59}, - [3093] = {.lex_state = 59}, - [3094] = {.lex_state = 59}, - [3095] = {.lex_state = 59}, - [3096] = {.lex_state = 59}, - [3097] = {.lex_state = 59}, - [3098] = {.lex_state = 59}, - [3099] = {.lex_state = 59}, - [3100] = {.lex_state = 59}, - [3101] = {.lex_state = 59}, - [3102] = {.lex_state = 59}, - [3103] = {.lex_state = 59}, - [3104] = {.lex_state = 59}, - [3105] = {.lex_state = 59}, - [3106] = {.lex_state = 59}, - [3107] = {.lex_state = 59}, - [3108] = {.lex_state = 59}, - [3109] = {.lex_state = 59}, - [3110] = {.lex_state = 59}, - [3111] = {.lex_state = 59}, - [3112] = {.lex_state = 59}, - [3113] = {.lex_state = 59}, - [3114] = {.lex_state = 59}, - [3115] = {.lex_state = 59}, - [3116] = {.lex_state = 59}, - [3117] = {.lex_state = 59}, - [3118] = {.lex_state = 59}, - [3119] = {.lex_state = 59}, - [3120] = {.lex_state = 59}, - [3121] = {.lex_state = 59}, - [3122] = {.lex_state = 59}, - [3123] = {.lex_state = 59}, - [3124] = {.lex_state = 59}, - [3125] = {.lex_state = 59}, - [3126] = {.lex_state = 59}, - [3127] = {.lex_state = 59}, - [3128] = {.lex_state = 59}, - [3129] = {.lex_state = 59}, - [3130] = {.lex_state = 59}, - [3131] = {.lex_state = 59}, - [3132] = {.lex_state = 59}, - [3133] = {.lex_state = 66}, - [3134] = {.lex_state = 59}, - [3135] = {.lex_state = 59}, - [3136] = {.lex_state = 59}, - [3137] = {.lex_state = 59}, - [3138] = {.lex_state = 59}, - [3139] = {.lex_state = 59}, - [3140] = {.lex_state = 59}, - [3141] = {.lex_state = 59}, - [3142] = {.lex_state = 59}, - [3143] = {.lex_state = 59}, - [3144] = {.lex_state = 63}, - [3145] = {.lex_state = 66}, - [3146] = {.lex_state = 66}, - [3147] = {.lex_state = 63}, - [3148] = {.lex_state = 63}, - [3149] = {.lex_state = 63}, - [3150] = {.lex_state = 63}, - [3151] = {.lex_state = 63}, - [3152] = {.lex_state = 63}, - [3153] = {.lex_state = 63}, - [3154] = {.lex_state = 66}, - [3155] = {.lex_state = 63}, - [3156] = {.lex_state = 63}, - [3157] = {.lex_state = 63}, - [3158] = {.lex_state = 63}, - [3159] = {.lex_state = 63}, - [3160] = {.lex_state = 63}, - [3161] = {.lex_state = 63}, - [3162] = {.lex_state = 63}, - [3163] = {.lex_state = 63}, - [3164] = {.lex_state = 63}, - [3165] = {.lex_state = 63}, - [3166] = {.lex_state = 63}, - [3167] = {.lex_state = 63}, - [3168] = {.lex_state = 63}, - [3169] = {.lex_state = 63}, - [3170] = {.lex_state = 63}, - [3171] = {.lex_state = 66}, - [3172] = {.lex_state = 63}, - [3173] = {.lex_state = 63}, - [3174] = {.lex_state = 63}, - [3175] = {.lex_state = 54}, - [3176] = {.lex_state = 63}, - [3177] = {.lex_state = 63}, - [3178] = {.lex_state = 63}, - [3179] = {.lex_state = 63}, - [3180] = {.lex_state = 63}, - [3181] = {.lex_state = 63}, - [3182] = {.lex_state = 63}, - [3183] = {.lex_state = 63}, - [3184] = {.lex_state = 63}, - [3185] = {.lex_state = 63}, - [3186] = {.lex_state = 63}, - [3187] = {.lex_state = 63}, - [3188] = {.lex_state = 63}, - [3189] = {.lex_state = 63}, - [3190] = {.lex_state = 63}, - [3191] = {.lex_state = 63}, - [3192] = {.lex_state = 63}, - [3193] = {.lex_state = 63}, - [3194] = {.lex_state = 63}, - [3195] = {.lex_state = 63}, - [3196] = {.lex_state = 63}, - [3197] = {.lex_state = 63}, - [3198] = {.lex_state = 63}, - [3199] = {.lex_state = 63}, - [3200] = {.lex_state = 63}, - [3201] = {.lex_state = 63}, - [3202] = {.lex_state = 63}, - [3203] = {.lex_state = 63}, - [3204] = {.lex_state = 63}, - [3205] = {.lex_state = 63}, - [3206] = {.lex_state = 63}, - [3207] = {.lex_state = 63}, - [3208] = {.lex_state = 63}, - [3209] = {.lex_state = 63}, - [3210] = {.lex_state = 63}, - [3211] = {.lex_state = 63}, - [3212] = {.lex_state = 63}, - [3213] = {.lex_state = 63}, - [3214] = {.lex_state = 63}, - [3215] = {.lex_state = 63}, - [3216] = {.lex_state = 63}, - [3217] = {.lex_state = 54}, - [3218] = {.lex_state = 63}, - [3219] = {.lex_state = 63}, - [3220] = {.lex_state = 63}, - [3221] = {.lex_state = 63}, - [3222] = {.lex_state = 63}, - [3223] = {.lex_state = 63}, - [3224] = {.lex_state = 63}, - [3225] = {.lex_state = 63}, - [3226] = {.lex_state = 63}, - [3227] = {.lex_state = 63}, - [3228] = {.lex_state = 54}, - [3229] = {.lex_state = 54}, - [3230] = {.lex_state = 54}, - [3231] = {.lex_state = 70}, - [3232] = {.lex_state = 66}, - [3233] = {.lex_state = 66}, - [3234] = {.lex_state = 54}, - [3235] = {.lex_state = 54}, - [3236] = {.lex_state = 66}, - [3237] = {.lex_state = 66}, - [3238] = {.lex_state = 54}, - [3239] = {.lex_state = 54}, - [3240] = {.lex_state = 66}, - [3241] = {.lex_state = 114}, - [3242] = {.lex_state = 114}, - [3243] = {.lex_state = 66}, - [3244] = {.lex_state = 63}, - [3245] = {.lex_state = 63}, - [3246] = {.lex_state = 54}, - [3247] = {.lex_state = 55}, - [3248] = {.lex_state = 55}, - [3249] = {.lex_state = 66}, - [3250] = {.lex_state = 59}, - [3251] = {.lex_state = 59}, - [3252] = {.lex_state = 66}, - [3253] = {.lex_state = 66}, + [3060] = {.lex_state = 55}, + [3061] = {.lex_state = 55}, + [3062] = {.lex_state = 55}, + [3063] = {.lex_state = 67}, + [3064] = {.lex_state = 55}, + [3065] = {.lex_state = 55}, + [3066] = {.lex_state = 55}, + [3067] = {.lex_state = 55}, + [3068] = {.lex_state = 55}, + [3069] = {.lex_state = 55}, + [3070] = {.lex_state = 55}, + [3071] = {.lex_state = 55}, + [3072] = {.lex_state = 55}, + [3073] = {.lex_state = 55}, + [3074] = {.lex_state = 62}, + [3075] = {.lex_state = 67}, + [3076] = {.lex_state = 67}, + [3077] = {.lex_state = 62}, + [3078] = {.lex_state = 62}, + [3079] = {.lex_state = 62}, + [3080] = {.lex_state = 62}, + [3081] = {.lex_state = 62}, + [3082] = {.lex_state = 62}, + [3083] = {.lex_state = 62}, + [3084] = {.lex_state = 67}, + [3085] = {.lex_state = 62}, + [3086] = {.lex_state = 62}, + [3087] = {.lex_state = 62}, + [3088] = {.lex_state = 62}, + [3089] = {.lex_state = 62}, + [3090] = {.lex_state = 62}, + [3091] = {.lex_state = 62}, + [3092] = {.lex_state = 62}, + [3093] = {.lex_state = 62}, + [3094] = {.lex_state = 62}, + [3095] = {.lex_state = 62}, + [3096] = {.lex_state = 62}, + [3097] = {.lex_state = 62}, + [3098] = {.lex_state = 62}, + [3099] = {.lex_state = 62}, + [3100] = {.lex_state = 67}, + [3101] = {.lex_state = 62}, + [3102] = {.lex_state = 62}, + [3103] = {.lex_state = 73}, + [3104] = {.lex_state = 62}, + [3105] = {.lex_state = 62}, + [3106] = {.lex_state = 62}, + [3107] = {.lex_state = 62}, + [3108] = {.lex_state = 62}, + [3109] = {.lex_state = 62}, + [3110] = {.lex_state = 62}, + [3111] = {.lex_state = 62}, + [3112] = {.lex_state = 62}, + [3113] = {.lex_state = 62}, + [3114] = {.lex_state = 62}, + [3115] = {.lex_state = 62}, + [3116] = {.lex_state = 62}, + [3117] = {.lex_state = 62}, + [3118] = {.lex_state = 62}, + [3119] = {.lex_state = 62}, + [3120] = {.lex_state = 62}, + [3121] = {.lex_state = 62}, + [3122] = {.lex_state = 62}, + [3123] = {.lex_state = 62}, + [3124] = {.lex_state = 62}, + [3125] = {.lex_state = 62}, + [3126] = {.lex_state = 62}, + [3127] = {.lex_state = 62}, + [3128] = {.lex_state = 62}, + [3129] = {.lex_state = 62}, + [3130] = {.lex_state = 62}, + [3131] = {.lex_state = 62}, + [3132] = {.lex_state = 62}, + [3133] = {.lex_state = 62}, + [3134] = {.lex_state = 62}, + [3135] = {.lex_state = 62}, + [3136] = {.lex_state = 62}, + [3137] = {.lex_state = 62}, + [3138] = {.lex_state = 62}, + [3139] = {.lex_state = 62}, + [3140] = {.lex_state = 62}, + [3141] = {.lex_state = 62}, + [3142] = {.lex_state = 62}, + [3143] = {.lex_state = 62}, + [3144] = {.lex_state = 62}, + [3145] = {.lex_state = 73}, + [3146] = {.lex_state = 62}, + [3147] = {.lex_state = 62}, + [3148] = {.lex_state = 62}, + [3149] = {.lex_state = 62}, + [3150] = {.lex_state = 62}, + [3151] = {.lex_state = 62}, + [3152] = {.lex_state = 62}, + [3153] = {.lex_state = 62}, + [3154] = {.lex_state = 62}, + [3155] = {.lex_state = 62}, + [3156] = {.lex_state = 67}, + [3157] = {.lex_state = 67}, + [3158] = {.lex_state = 73}, + [3159] = {.lex_state = 73}, + [3160] = {.lex_state = 67}, + [3161] = {.lex_state = 67}, + [3162] = {.lex_state = 73}, + [3163] = {.lex_state = 73}, + [3164] = {.lex_state = 67}, + [3165] = {.lex_state = 73}, + [3166] = {.lex_state = 73}, + [3167] = {.lex_state = 67}, + [3168] = {.lex_state = 114}, + [3169] = {.lex_state = 73}, + [3170] = {.lex_state = 67}, + [3171] = {.lex_state = 62}, + [3172] = {.lex_state = 62}, + [3173] = {.lex_state = 67}, + [3174] = {.lex_state = 56}, + [3175] = {.lex_state = 56}, + [3176] = {.lex_state = 67}, + [3177] = {.lex_state = 55}, + [3178] = {.lex_state = 55}, + [3179] = {.lex_state = 67}, + [3180] = {.lex_state = 114}, + [3181] = {.lex_state = 67}, + [3182] = {.lex_state = 67}, + [3183] = {.lex_state = 114}, + [3184] = {.lex_state = 114}, + [3185] = {.lex_state = 73}, + [3186] = {.lex_state = 73}, + [3187] = {.lex_state = 114}, + [3188] = {.lex_state = 73}, + [3189] = {.lex_state = 67}, + [3190] = {.lex_state = 73}, + [3191] = {.lex_state = 114}, + [3192] = {.lex_state = 73}, + [3193] = {.lex_state = 73}, + [3194] = {.lex_state = 73}, + [3195] = {.lex_state = 57}, + [3196] = {.lex_state = 57}, + [3197] = {.lex_state = 57}, + [3198] = {.lex_state = 67}, + [3199] = {.lex_state = 114}, + [3200] = {.lex_state = 57}, + [3201] = {.lex_state = 67}, + [3202] = {.lex_state = 67}, + [3203] = {.lex_state = 114}, + [3204] = {.lex_state = 73}, + [3205] = {.lex_state = 57}, + [3206] = {.lex_state = 114}, + [3207] = {.lex_state = 114}, + [3208] = {.lex_state = 57}, + [3209] = {.lex_state = 114}, + [3210] = {.lex_state = 114}, + [3211] = {.lex_state = 57}, + [3212] = {.lex_state = 73}, + [3213] = {.lex_state = 114}, + [3214] = {.lex_state = 67}, + [3215] = {.lex_state = 57}, + [3216] = {.lex_state = 114}, + [3217] = {.lex_state = 57}, + [3218] = {.lex_state = 57}, + [3219] = {.lex_state = 114}, + [3220] = {.lex_state = 59}, + [3221] = {.lex_state = 73}, + [3222] = {.lex_state = 67}, + [3223] = {.lex_state = 73}, + [3224] = {.lex_state = 57}, + [3225] = {.lex_state = 114}, + [3226] = {.lex_state = 57}, + [3227] = {.lex_state = 73}, + [3228] = {.lex_state = 70}, + [3229] = {.lex_state = 57}, + [3230] = {.lex_state = 114}, + [3231] = {.lex_state = 57}, + [3232] = {.lex_state = 57}, + [3233] = {.lex_state = 114}, + [3234] = {.lex_state = 73}, + [3235] = {.lex_state = 57}, + [3236] = {.lex_state = 73}, + [3237] = {.lex_state = 73}, + [3238] = {.lex_state = 73}, + [3239] = {.lex_state = 114}, + [3240] = {.lex_state = 73}, + [3241] = {.lex_state = 57}, + [3242] = {.lex_state = 67}, + [3243] = {.lex_state = 73}, + [3244] = {.lex_state = 114}, + [3245] = {.lex_state = 67}, + [3246] = {.lex_state = 73}, + [3247] = {.lex_state = 114}, + [3248] = {.lex_state = 67}, + [3249] = {.lex_state = 73}, + [3250] = {.lex_state = 67}, + [3251] = {.lex_state = 57}, + [3252] = {.lex_state = 67}, + [3253] = {.lex_state = 73}, [3254] = {.lex_state = 114}, - [3255] = {.lex_state = 66}, - [3256] = {.lex_state = 66}, - [3257] = {.lex_state = 54}, - [3258] = {.lex_state = 114}, - [3259] = {.lex_state = 114}, - [3260] = {.lex_state = 54}, - [3261] = {.lex_state = 54}, - [3262] = {.lex_state = 114}, - [3263] = {.lex_state = 66}, - [3264] = {.lex_state = 66}, - [3265] = {.lex_state = 54}, - [3266] = {.lex_state = 54}, - [3267] = {.lex_state = 54}, - [3268] = {.lex_state = 54}, - [3269] = {.lex_state = 54}, - [3270] = {.lex_state = 54}, - [3271] = {.lex_state = 114}, - [3272] = {.lex_state = 54}, - [3273] = {.lex_state = 114}, - [3274] = {.lex_state = 54}, - [3275] = {.lex_state = 114}, - [3276] = {.lex_state = 54}, - [3277] = {.lex_state = 54}, - [3278] = {.lex_state = 54}, - [3279] = {.lex_state = 114}, - [3280] = {.lex_state = 114}, - [3281] = {.lex_state = 54}, + [3255] = {.lex_state = 67}, + [3256] = {.lex_state = 57}, + [3257] = {.lex_state = 73}, + [3258] = {.lex_state = 57}, + [3259] = {.lex_state = 57}, + [3260] = {.lex_state = 57}, + [3261] = {.lex_state = 67}, + [3262] = {.lex_state = 57}, + [3263] = {.lex_state = 67}, + [3264] = {.lex_state = 67}, + [3265] = {.lex_state = 57}, + [3266] = {.lex_state = 57}, + [3267] = {.lex_state = 57}, + [3268] = {.lex_state = 73}, + [3269] = {.lex_state = 57}, + [3270] = {.lex_state = 57}, + [3271] = {.lex_state = 57}, + [3272] = {.lex_state = 57}, + [3273] = {.lex_state = 57}, + [3274] = {.lex_state = 114}, + [3275] = {.lex_state = 73}, + [3276] = {.lex_state = 67}, + [3277] = {.lex_state = 73}, + [3278] = {.lex_state = 59}, + [3279] = {.lex_state = 57}, + [3280] = {.lex_state = 57}, + [3281] = {.lex_state = 57}, [3282] = {.lex_state = 114}, [3283] = {.lex_state = 114}, - [3284] = {.lex_state = 57}, - [3285] = {.lex_state = 54}, + [3284] = {.lex_state = 73}, + [3285] = {.lex_state = 114}, [3286] = {.lex_state = 114}, - [3287] = {.lex_state = 54}, - [3288] = {.lex_state = 114}, - [3289] = {.lex_state = 54}, - [3290] = {.lex_state = 66}, + [3287] = {.lex_state = 59}, + [3288] = {.lex_state = 57}, + [3289] = {.lex_state = 67}, + [3290] = {.lex_state = 59}, [3291] = {.lex_state = 114}, - [3292] = {.lex_state = 54}, - [3293] = {.lex_state = 54}, - [3294] = {.lex_state = 54}, - [3295] = {.lex_state = 54}, - [3296] = {.lex_state = 54}, - [3297] = {.lex_state = 54}, + [3292] = {.lex_state = 59}, + [3293] = {.lex_state = 59}, + [3294] = {.lex_state = 57}, + [3295] = {.lex_state = 59}, + [3296] = {.lex_state = 57}, + [3297] = {.lex_state = 59}, [3298] = {.lex_state = 114}, - [3299] = {.lex_state = 54}, - [3300] = {.lex_state = 54}, - [3301] = {.lex_state = 54}, - [3302] = {.lex_state = 54}, - [3303] = {.lex_state = 114}, + [3299] = {.lex_state = 114}, + [3300] = {.lex_state = 114}, + [3301] = {.lex_state = 57}, + [3302] = {.lex_state = 67}, + [3303] = {.lex_state = 59}, [3304] = {.lex_state = 57}, [3305] = {.lex_state = 57}, [3306] = {.lex_state = 114}, - [3307] = {.lex_state = 57}, - [3308] = {.lex_state = 114}, + [3307] = {.lex_state = 114}, + [3308] = {.lex_state = 57}, [3309] = {.lex_state = 57}, [3310] = {.lex_state = 57}, - [3311] = {.lex_state = 54}, - [3312] = {.lex_state = 56}, - [3313] = {.lex_state = 57}, + [3311] = {.lex_state = 57}, + [3312] = {.lex_state = 57}, + [3313] = {.lex_state = 114}, [3314] = {.lex_state = 114}, - [3315] = {.lex_state = 57}, + [3315] = {.lex_state = 114}, [3316] = {.lex_state = 114}, - [3317] = {.lex_state = 54}, - [3318] = {.lex_state = 88}, - [3319] = {.lex_state = 114}, - [3320] = {.lex_state = 56}, - [3321] = {.lex_state = 66}, - [3322] = {.lex_state = 57}, - [3323] = {.lex_state = 57}, - [3324] = {.lex_state = 54}, - [3325] = {.lex_state = 57}, - [3326] = {.lex_state = 66}, - [3327] = {.lex_state = 56}, - [3328] = {.lex_state = 66}, - [3329] = {.lex_state = 66}, - [3330] = {.lex_state = 57}, - [3331] = {.lex_state = 66}, + [3317] = {.lex_state = 91}, + [3318] = {.lex_state = 57}, + [3319] = {.lex_state = 67}, + [3320] = {.lex_state = 57}, + [3321] = {.lex_state = 67}, + [3322] = {.lex_state = 114}, + [3323] = {.lex_state = 67}, + [3324] = {.lex_state = 57}, + [3325] = {.lex_state = 67}, + [3326] = {.lex_state = 67}, + [3327] = {.lex_state = 67}, + [3328] = {.lex_state = 73}, + [3329] = {.lex_state = 70}, + [3330] = {.lex_state = 114}, + [3331] = {.lex_state = 57}, [3332] = {.lex_state = 57}, - [3333] = {.lex_state = 66}, - [3334] = {.lex_state = 56}, - [3335] = {.lex_state = 57}, - [3336] = {.lex_state = 57}, - [3337] = {.lex_state = 56}, - [3338] = {.lex_state = 114}, - [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 114}, - [3341] = {.lex_state = 66}, - [3342] = {.lex_state = 56}, - [3343] = {.lex_state = 114}, + [3333] = {.lex_state = 114}, + [3334] = {.lex_state = 57}, + [3335] = {.lex_state = 67}, + [3336] = {.lex_state = 67}, + [3337] = {.lex_state = 59}, + [3338] = {.lex_state = 57}, + [3339] = {.lex_state = 57}, + [3340] = {.lex_state = 59}, + [3341] = {.lex_state = 57}, + [3342] = {.lex_state = 59}, + [3343] = {.lex_state = 59}, [3344] = {.lex_state = 57}, - [3345] = {.lex_state = 56}, - [3346] = {.lex_state = 56}, - [3347] = {.lex_state = 54}, - [3348] = {.lex_state = 114}, - [3349] = {.lex_state = 114}, + [3345] = {.lex_state = 57}, + [3346] = {.lex_state = 114}, + [3347] = {.lex_state = 114}, + [3348] = {.lex_state = 73}, + [3349] = {.lex_state = 67}, [3350] = {.lex_state = 57}, - [3351] = {.lex_state = 57}, - [3352] = {.lex_state = 57}, - [3353] = {.lex_state = 57}, - [3354] = {.lex_state = 66}, - [3355] = {.lex_state = 57}, - [3356] = {.lex_state = 57}, - [3357] = {.lex_state = 57}, - [3358] = {.lex_state = 57}, - [3359] = {.lex_state = 57}, - [3360] = {.lex_state = 57}, - [3361] = {.lex_state = 114}, - [3362] = {.lex_state = 114}, + [3351] = {.lex_state = 59}, + [3352] = {.lex_state = 59}, + [3353] = {.lex_state = 59}, + [3354] = {.lex_state = 73}, + [3355] = {.lex_state = 114}, + [3356] = {.lex_state = 59}, + [3357] = {.lex_state = 114}, + [3358] = {.lex_state = 114}, + [3359] = {.lex_state = 59}, + [3360] = {.lex_state = 114}, + [3361] = {.lex_state = 67}, + [3362] = {.lex_state = 73}, [3363] = {.lex_state = 114}, [3364] = {.lex_state = 114}, [3365] = {.lex_state = 114}, - [3366] = {.lex_state = 114}, - [3367] = {.lex_state = 66}, + [3366] = {.lex_state = 73}, + [3367] = {.lex_state = 58}, [3368] = {.lex_state = 114}, - [3369] = {.lex_state = 114}, - [3370] = {.lex_state = 114}, - [3371] = {.lex_state = 114}, + [3369] = {.lex_state = 57}, + [3370] = {.lex_state = 57}, + [3371] = {.lex_state = 59}, [3372] = {.lex_state = 57}, [3373] = {.lex_state = 57}, - [3374] = {.lex_state = 57}, - [3375] = {.lex_state = 56}, + [3374] = {.lex_state = 114}, + [3375] = {.lex_state = 57}, [3376] = {.lex_state = 57}, [3377] = {.lex_state = 57}, - [3378] = {.lex_state = 114}, - [3379] = {.lex_state = 114}, + [3378] = {.lex_state = 57}, + [3379] = {.lex_state = 57}, [3380] = {.lex_state = 114}, - [3381] = {.lex_state = 56}, - [3382] = {.lex_state = 54}, + [3381] = {.lex_state = 59}, + [3382] = {.lex_state = 59}, [3383] = {.lex_state = 57}, [3384] = {.lex_state = 57}, - [3385] = {.lex_state = 57}, - [3386] = {.lex_state = 114}, - [3387] = {.lex_state = 57}, - [3388] = {.lex_state = 57}, - [3389] = {.lex_state = 57}, - [3390] = {.lex_state = 56}, - [3391] = {.lex_state = 114}, + [3385] = {.lex_state = 114}, + [3386] = {.lex_state = 57}, + [3387] = {.lex_state = 114}, + [3388] = {.lex_state = 114}, + [3389] = {.lex_state = 67}, + [3390] = {.lex_state = 57}, + [3391] = {.lex_state = 67}, [3392] = {.lex_state = 114}, - [3393] = {.lex_state = 114}, + [3393] = {.lex_state = 67}, [3394] = {.lex_state = 114}, - [3395] = {.lex_state = 56}, - [3396] = {.lex_state = 114}, - [3397] = {.lex_state = 66}, - [3398] = {.lex_state = 114}, - [3399] = {.lex_state = 66}, - [3400] = {.lex_state = 56}, - [3401] = {.lex_state = 66}, + [3395] = {.lex_state = 59}, + [3396] = {.lex_state = 59}, + [3397] = {.lex_state = 67}, + [3398] = {.lex_state = 67}, + [3399] = {.lex_state = 67}, + [3400] = {.lex_state = 57}, + [3401] = {.lex_state = 67}, [3402] = {.lex_state = 114}, - [3403] = {.lex_state = 66}, - [3404] = {.lex_state = 66}, - [3405] = {.lex_state = 54}, + [3403] = {.lex_state = 114}, + [3404] = {.lex_state = 57}, + [3405] = {.lex_state = 114}, [3406] = {.lex_state = 57}, - [3407] = {.lex_state = 66}, - [3408] = {.lex_state = 56}, - [3409] = {.lex_state = 56}, - [3410] = {.lex_state = 56}, - [3411] = {.lex_state = 56}, - [3412] = {.lex_state = 114}, - [3413] = {.lex_state = 114}, - [3414] = {.lex_state = 54}, - [3415] = {.lex_state = 56}, - [3416] = {.lex_state = 57}, - [3417] = {.lex_state = 114}, - [3418] = {.lex_state = 56}, - [3419] = {.lex_state = 57}, - [3420] = {.lex_state = 56}, - [3421] = {.lex_state = 57}, - [3422] = {.lex_state = 54}, - [3423] = {.lex_state = 54}, - [3424] = {.lex_state = 57}, - [3425] = {.lex_state = 57}, - [3426] = {.lex_state = 57}, - [3427] = {.lex_state = 114}, - [3428] = {.lex_state = 56}, + [3407] = {.lex_state = 59}, + [3408] = {.lex_state = 67}, + [3409] = {.lex_state = 57}, + [3410] = {.lex_state = 114}, + [3411] = {.lex_state = 59}, + [3412] = {.lex_state = 73}, + [3413] = {.lex_state = 59}, + [3414] = {.lex_state = 67}, + [3415] = {.lex_state = 59}, + [3416] = {.lex_state = 59}, + [3417] = {.lex_state = 59}, + [3418] = {.lex_state = 58}, + [3419] = {.lex_state = 73}, + [3420] = {.lex_state = 67}, + [3421] = {.lex_state = 114}, + [3422] = {.lex_state = 114}, + [3423] = {.lex_state = 114}, + [3424] = {.lex_state = 58}, + [3425] = {.lex_state = 59}, + [3426] = {.lex_state = 58}, + [3427] = {.lex_state = 73}, + [3428] = {.lex_state = 57}, [3429] = {.lex_state = 114}, - [3430] = {.lex_state = 114}, + [3430] = {.lex_state = 58}, [3431] = {.lex_state = 114}, [3432] = {.lex_state = 114}, - [3433] = {.lex_state = 114}, + [3433] = {.lex_state = 59}, [3434] = {.lex_state = 114}, - [3435] = {.lex_state = 54}, - [3436] = {.lex_state = 57}, - [3437] = {.lex_state = 57}, - [3438] = {.lex_state = 57}, - [3439] = {.lex_state = 57}, - [3440] = {.lex_state = 57}, - [3441] = {.lex_state = 56}, - [3442] = {.lex_state = 114}, - [3443] = {.lex_state = 114}, + [3435] = {.lex_state = 58}, + [3436] = {.lex_state = 58}, + [3437] = {.lex_state = 58}, + [3438] = {.lex_state = 58}, + [3439] = {.lex_state = 58}, + [3440] = {.lex_state = 58}, + [3441] = {.lex_state = 73}, + [3442] = {.lex_state = 73}, + [3443] = {.lex_state = 58}, [3444] = {.lex_state = 114}, - [3445] = {.lex_state = 57}, - [3446] = {.lex_state = 56}, - [3447] = {.lex_state = 88}, - [3448] = {.lex_state = 57}, - [3449] = {.lex_state = 56}, - [3450] = {.lex_state = 57}, + [3445] = {.lex_state = 58}, + [3446] = {.lex_state = 58}, + [3447] = {.lex_state = 59}, + [3448] = {.lex_state = 59}, + [3449] = {.lex_state = 58}, + [3450] = {.lex_state = 58}, [3451] = {.lex_state = 114}, [3452] = {.lex_state = 114}, - [3453] = {.lex_state = 114}, - [3454] = {.lex_state = 114}, - [3455] = {.lex_state = 114}, - [3456] = {.lex_state = 114}, + [3453] = {.lex_state = 58}, + [3454] = {.lex_state = 58}, + [3455] = {.lex_state = 58}, + [3456] = {.lex_state = 59}, [3457] = {.lex_state = 114}, - [3458] = {.lex_state = 114}, - [3459] = {.lex_state = 57}, - [3460] = {.lex_state = 57}, - [3461] = {.lex_state = 57}, - [3462] = {.lex_state = 57}, - [3463] = {.lex_state = 57}, - [3464] = {.lex_state = 56}, - [3465] = {.lex_state = 56}, - [3466] = {.lex_state = 57}, - [3467] = {.lex_state = 57}, - [3468] = {.lex_state = 57}, - [3469] = {.lex_state = 56}, - [3470] = {.lex_state = 57}, - [3471] = {.lex_state = 56}, - [3472] = {.lex_state = 57}, - [3473] = {.lex_state = 56}, - [3474] = {.lex_state = 54}, - [3475] = {.lex_state = 56}, - [3476] = {.lex_state = 56}, - [3477] = {.lex_state = 56}, - [3478] = {.lex_state = 56}, - [3479] = {.lex_state = 56}, - [3480] = {.lex_state = 114}, - [3481] = {.lex_state = 56}, + [3458] = {.lex_state = 59}, + [3459] = {.lex_state = 114}, + [3460] = {.lex_state = 58}, + [3461] = {.lex_state = 67}, + [3462] = {.lex_state = 58}, + [3463] = {.lex_state = 73}, + [3464] = {.lex_state = 114}, + [3465] = {.lex_state = 67}, + [3466] = {.lex_state = 58}, + [3467] = {.lex_state = 59}, + [3468] = {.lex_state = 59}, + [3469] = {.lex_state = 59}, + [3470] = {.lex_state = 59}, + [3471] = {.lex_state = 59}, + [3472] = {.lex_state = 58}, + [3473] = {.lex_state = 59}, + [3474] = {.lex_state = 59}, + [3475] = {.lex_state = 59}, + [3476] = {.lex_state = 73}, + [3477] = {.lex_state = 59}, + [3478] = {.lex_state = 114}, + [3479] = {.lex_state = 59}, + [3480] = {.lex_state = 59}, + [3481] = {.lex_state = 59}, [3482] = {.lex_state = 114}, - [3483] = {.lex_state = 114}, - [3484] = {.lex_state = 114}, - [3485] = {.lex_state = 56}, - [3486] = {.lex_state = 57}, - [3487] = {.lex_state = 57}, - [3488] = {.lex_state = 56}, - [3489] = {.lex_state = 56}, - [3490] = {.lex_state = 56}, - [3491] = {.lex_state = 57}, - [3492] = {.lex_state = 54}, - [3493] = {.lex_state = 56}, - [3494] = {.lex_state = 56}, - [3495] = {.lex_state = 56}, - [3496] = {.lex_state = 56}, - [3497] = {.lex_state = 114}, - [3498] = {.lex_state = 56}, - [3499] = {.lex_state = 66}, - [3500] = {.lex_state = 57}, - [3501] = {.lex_state = 57}, - [3502] = {.lex_state = 56}, - [3503] = {.lex_state = 56}, - [3504] = {.lex_state = 57}, - [3505] = {.lex_state = 114}, - [3506] = {.lex_state = 114}, - [3507] = {.lex_state = 114}, - [3508] = {.lex_state = 58}, - [3509] = {.lex_state = 54}, + [3483] = {.lex_state = 59}, + [3484] = {.lex_state = 59}, + [3485] = {.lex_state = 58}, + [3486] = {.lex_state = 58}, + [3487] = {.lex_state = 114}, + [3488] = {.lex_state = 58}, + [3489] = {.lex_state = 58}, + [3490] = {.lex_state = 58}, + [3491] = {.lex_state = 58}, + [3492] = {.lex_state = 59}, + [3493] = {.lex_state = 59}, + [3494] = {.lex_state = 58}, + [3495] = {.lex_state = 58}, + [3496] = {.lex_state = 59}, + [3497] = {.lex_state = 58}, + [3498] = {.lex_state = 58}, + [3499] = {.lex_state = 58}, + [3500] = {.lex_state = 58}, + [3501] = {.lex_state = 58}, + [3502] = {.lex_state = 58}, + [3503] = {.lex_state = 58}, + [3504] = {.lex_state = 58}, + [3505] = {.lex_state = 59}, + [3506] = {.lex_state = 58}, + [3507] = {.lex_state = 58}, + [3508] = {.lex_state = 59}, + [3509] = {.lex_state = 58}, [3510] = {.lex_state = 58}, [3511] = {.lex_state = 58}, [3512] = {.lex_state = 58}, - [3513] = {.lex_state = 58}, - [3514] = {.lex_state = 57}, - [3515] = {.lex_state = 56}, - [3516] = {.lex_state = 57}, - [3517] = {.lex_state = 57}, - [3518] = {.lex_state = 54}, - [3519] = {.lex_state = 58}, - [3520] = {.lex_state = 58}, - [3521] = {.lex_state = 57}, + [3513] = {.lex_state = 73}, + [3514] = {.lex_state = 59}, + [3515] = {.lex_state = 58}, + [3516] = {.lex_state = 58}, + [3517] = {.lex_state = 58}, + [3518] = {.lex_state = 58}, + [3519] = {.lex_state = 59}, + [3520] = {.lex_state = 59}, + [3521] = {.lex_state = 59}, [3522] = {.lex_state = 58}, [3523] = {.lex_state = 58}, - [3524] = {.lex_state = 57}, - [3525] = {.lex_state = 57}, - [3526] = {.lex_state = 57}, - [3527] = {.lex_state = 54}, - [3528] = {.lex_state = 57}, - [3529] = {.lex_state = 114}, + [3524] = {.lex_state = 58}, + [3525] = {.lex_state = 58}, + [3526] = {.lex_state = 59}, + [3527] = {.lex_state = 58}, + [3528] = {.lex_state = 59}, + [3529] = {.lex_state = 58}, [3530] = {.lex_state = 58}, [3531] = {.lex_state = 58}, - [3532] = {.lex_state = 58}, - [3533] = {.lex_state = 58}, - [3534] = {.lex_state = 58}, - [3535] = {.lex_state = 57}, - [3536] = {.lex_state = 54}, - [3537] = {.lex_state = 57}, - [3538] = {.lex_state = 58}, - [3539] = {.lex_state = 58}, - [3540] = {.lex_state = 58}, - [3541] = {.lex_state = 58}, - [3542] = {.lex_state = 58}, - [3543] = {.lex_state = 56}, - [3544] = {.lex_state = 58}, - [3545] = {.lex_state = 56}, + [3532] = {.lex_state = 59}, + [3533] = {.lex_state = 59}, + [3534] = {.lex_state = 59}, + [3535] = {.lex_state = 58}, + [3536] = {.lex_state = 59}, + [3537] = {.lex_state = 59}, + [3538] = {.lex_state = 59}, + [3539] = {.lex_state = 59}, + [3540] = {.lex_state = 59}, + [3541] = {.lex_state = 59}, + [3542] = {.lex_state = 91}, + [3543] = {.lex_state = 59}, + [3544] = {.lex_state = 59}, + [3545] = {.lex_state = 58}, [3546] = {.lex_state = 58}, - [3547] = {.lex_state = 56}, - [3548] = {.lex_state = 56}, - [3549] = {.lex_state = 56}, - [3550] = {.lex_state = 58}, - [3551] = {.lex_state = 56}, - [3552] = {.lex_state = 56}, - [3553] = {.lex_state = 88}, - [3554] = {.lex_state = 54}, - [3555] = {.lex_state = 56}, + [3547] = {.lex_state = 58}, + [3548] = {.lex_state = 59}, + [3549] = {.lex_state = 58}, + [3550] = {.lex_state = 59}, + [3551] = {.lex_state = 59}, + [3552] = {.lex_state = 59}, + [3553] = {.lex_state = 59}, + [3554] = {.lex_state = 58}, + [3555] = {.lex_state = 58}, [3556] = {.lex_state = 58}, - [3557] = {.lex_state = 54}, + [3557] = {.lex_state = 58}, [3558] = {.lex_state = 58}, [3559] = {.lex_state = 58}, - [3560] = {.lex_state = 56}, - [3561] = {.lex_state = 56}, - [3562] = {.lex_state = 56}, - [3563] = {.lex_state = 56}, - [3564] = {.lex_state = 58}, + [3560] = {.lex_state = 58}, + [3561] = {.lex_state = 58}, + [3562] = {.lex_state = 58}, + [3563] = {.lex_state = 73}, + [3564] = {.lex_state = 59}, [3565] = {.lex_state = 58}, - [3566] = {.lex_state = 56}, - [3567] = {.lex_state = 58}, - [3568] = {.lex_state = 56}, - [3569] = {.lex_state = 56}, + [3566] = {.lex_state = 73}, + [3567] = {.lex_state = 59}, + [3568] = {.lex_state = 58}, + [3569] = {.lex_state = 58}, [3570] = {.lex_state = 58}, [3571] = {.lex_state = 58}, - [3572] = {.lex_state = 58}, - [3573] = {.lex_state = 58}, - [3574] = {.lex_state = 58}, - [3575] = {.lex_state = 58}, - [3576] = {.lex_state = 58}, - [3577] = {.lex_state = 56}, - [3578] = {.lex_state = 58}, - [3579] = {.lex_state = 56}, - [3580] = {.lex_state = 58}, - [3581] = {.lex_state = 56}, - [3582] = {.lex_state = 54}, - [3583] = {.lex_state = 56}, - [3584] = {.lex_state = 54}, - [3585] = {.lex_state = 58}, - [3586] = {.lex_state = 58}, - [3587] = {.lex_state = 56}, - [3588] = {.lex_state = 58}, - [3589] = {.lex_state = 56}, - [3590] = {.lex_state = 58}, - [3591] = {.lex_state = 58}, - [3592] = {.lex_state = 58}, - [3593] = {.lex_state = 58}, - [3594] = {.lex_state = 58}, - [3595] = {.lex_state = 58}, - [3596] = {.lex_state = 58}, - [3597] = {.lex_state = 58}, - [3598] = {.lex_state = 58}, - [3599] = {.lex_state = 58}, - [3600] = {.lex_state = 58}, - [3601] = {.lex_state = 58}, - [3602] = {.lex_state = 58}, - [3603] = {.lex_state = 58}, - [3604] = {.lex_state = 58}, - [3605] = {.lex_state = 58}, - [3606] = {.lex_state = 58}, - [3607] = {.lex_state = 58}, - [3608] = {.lex_state = 58}, - [3609] = {.lex_state = 58}, - [3610] = {.lex_state = 58}, - [3611] = {.lex_state = 58}, - [3612] = {.lex_state = 58}, - [3613] = {.lex_state = 58}, - [3614] = {.lex_state = 58}, - [3615] = {.lex_state = 56}, - [3616] = {.lex_state = 56}, - [3617] = {.lex_state = 58}, - [3618] = {.lex_state = 56}, - [3619] = {.lex_state = 58}, - [3620] = {.lex_state = 56}, - [3621] = {.lex_state = 58}, - [3622] = {.lex_state = 56}, - [3623] = {.lex_state = 58}, - [3624] = {.lex_state = 56}, - [3625] = {.lex_state = 56}, - [3626] = {.lex_state = 56}, - [3627] = {.lex_state = 54}, - [3628] = {.lex_state = 56}, - [3629] = {.lex_state = 58}, - [3630] = {.lex_state = 58}, - [3631] = {.lex_state = 58}, - [3632] = {.lex_state = 58}, - [3633] = {.lex_state = 58}, - [3634] = {.lex_state = 58}, - [3635] = {.lex_state = 56}, - [3636] = {.lex_state = 56}, - [3637] = {.lex_state = 58}, - [3638] = {.lex_state = 58}, - [3639] = {.lex_state = 58}, - [3640] = {.lex_state = 56}, - [3641] = {.lex_state = 54}, - [3642] = {.lex_state = 3}, - [3643] = {.lex_state = 3}, - [3644] = {.lex_state = 3}, - [3645] = {.lex_state = 3}, - [3646] = {.lex_state = 3}, - [3647] = {.lex_state = 3}, - [3648] = {.lex_state = 3}, - [3649] = {.lex_state = 3}, - [3650] = {.lex_state = 3}, - [3651] = {.lex_state = 3}, - [3652] = {.lex_state = 3}, - [3653] = {.lex_state = 3}, - [3654] = {.lex_state = 3}, - [3655] = {.lex_state = 3}, - [3656] = {.lex_state = 3}, - [3657] = {.lex_state = 3}, - [3658] = {.lex_state = 3}, - [3659] = {.lex_state = 3}, - [3660] = {.lex_state = 3}, - [3661] = {.lex_state = 3}, - [3662] = {.lex_state = 3}, - [3663] = {.lex_state = 3}, - [3664] = {.lex_state = 3}, - [3665] = {.lex_state = 3}, - [3666] = {.lex_state = 3}, - [3667] = {.lex_state = 3}, - [3668] = {.lex_state = 3}, - [3669] = {.lex_state = 3}, - [3670] = {.lex_state = 3}, - [3671] = {.lex_state = 3}, - [3672] = {.lex_state = 3}, - [3673] = {.lex_state = 3}, - [3674] = {.lex_state = 3}, - [3675] = {.lex_state = 3}, - [3676] = {.lex_state = 3}, - [3677] = {.lex_state = 48}, - [3678] = {.lex_state = 61}, - [3679] = {.lex_state = 61}, - [3680] = {.lex_state = 67}, - [3681] = {.lex_state = 71}, - [3682] = {.lex_state = 74}, - [3683] = {.lex_state = 61}, - [3684] = {.lex_state = 48}, - [3685] = {.lex_state = 74}, - [3686] = {.lex_state = 71}, - [3687] = {.lex_state = 67}, - [3688] = {.lex_state = 67}, - [3689] = {.lex_state = 71}, - [3690] = {.lex_state = 74}, - [3691] = {.lex_state = 61}, - [3692] = {.lex_state = 74}, - [3693] = {.lex_state = 71}, - [3694] = {.lex_state = 67}, - [3695] = {.lex_state = 61}, - [3696] = {.lex_state = 48}, - [3697] = {.lex_state = 61}, - [3698] = {.lex_state = 74}, + [3572] = {.lex_state = 3}, + [3573] = {.lex_state = 3}, + [3574] = {.lex_state = 3}, + [3575] = {.lex_state = 3}, + [3576] = {.lex_state = 3}, + [3577] = {.lex_state = 3}, + [3578] = {.lex_state = 3}, + [3579] = {.lex_state = 3}, + [3580] = {.lex_state = 3}, + [3581] = {.lex_state = 3}, + [3582] = {.lex_state = 3}, + [3583] = {.lex_state = 3}, + [3584] = {.lex_state = 3}, + [3585] = {.lex_state = 3}, + [3586] = {.lex_state = 3}, + [3587] = {.lex_state = 3}, + [3588] = {.lex_state = 3}, + [3589] = {.lex_state = 3}, + [3590] = {.lex_state = 3}, + [3591] = {.lex_state = 3}, + [3592] = {.lex_state = 3}, + [3593] = {.lex_state = 3}, + [3594] = {.lex_state = 3}, + [3595] = {.lex_state = 3}, + [3596] = {.lex_state = 3}, + [3597] = {.lex_state = 3}, + [3598] = {.lex_state = 3}, + [3599] = {.lex_state = 3}, + [3600] = {.lex_state = 3}, + [3601] = {.lex_state = 3}, + [3602] = {.lex_state = 3}, + [3603] = {.lex_state = 3}, + [3604] = {.lex_state = 3}, + [3605] = {.lex_state = 3}, + [3606] = {.lex_state = 3}, + [3607] = {.lex_state = 49}, + [3608] = {.lex_state = 60}, + [3609] = {.lex_state = 65}, + [3610] = {.lex_state = 60}, + [3611] = {.lex_state = 68}, + [3612] = {.lex_state = 65}, + [3613] = {.lex_state = 71}, + [3614] = {.lex_state = 68}, + [3615] = {.lex_state = 60}, + [3616] = {.lex_state = 65}, + [3617] = {.lex_state = 65}, + [3618] = {.lex_state = 43}, + [3619] = {.lex_state = 43}, + [3620] = {.lex_state = 43}, + [3621] = {.lex_state = 71}, + [3622] = {.lex_state = 68}, + [3623] = {.lex_state = 60}, + [3624] = {.lex_state = 43}, + [3625] = {.lex_state = 43}, + [3626] = {.lex_state = 65}, + [3627] = {.lex_state = 65}, + [3628] = {.lex_state = 60}, + [3629] = {.lex_state = 68}, + [3630] = {.lex_state = 65}, + [3631] = {.lex_state = 60}, + [3632] = {.lex_state = 68}, + [3633] = {.lex_state = 71}, + [3634] = {.lex_state = 60}, + [3635] = {.lex_state = 71}, + [3636] = {.lex_state = 71}, + [3637] = {.lex_state = 68}, + [3638] = {.lex_state = 60}, + [3639] = {.lex_state = 49}, + [3640] = {.lex_state = 65}, + [3641] = {.lex_state = 65}, + [3642] = {.lex_state = 49}, + [3643] = {.lex_state = 60}, + [3644] = {.lex_state = 68}, + [3645] = {.lex_state = 49}, + [3646] = {.lex_state = 71}, + [3647] = {.lex_state = 68}, + [3648] = {.lex_state = 60}, + [3649] = {.lex_state = 65}, + [3650] = {.lex_state = 71}, + [3651] = {.lex_state = 71}, + [3652] = {.lex_state = 68}, + [3653] = {.lex_state = 60}, + [3654] = {.lex_state = 65}, + [3655] = {.lex_state = 65}, + [3656] = {.lex_state = 49}, + [3657] = {.lex_state = 43}, + [3658] = {.lex_state = 65}, + [3659] = {.lex_state = 60}, + [3660] = {.lex_state = 68}, + [3661] = {.lex_state = 68}, + [3662] = {.lex_state = 71}, + [3663] = {.lex_state = 68}, + [3664] = {.lex_state = 60}, + [3665] = {.lex_state = 65}, + [3666] = {.lex_state = 49}, + [3667] = {.lex_state = 71}, + [3668] = {.lex_state = 71}, + [3669] = {.lex_state = 65}, + [3670] = {.lex_state = 60}, + [3671] = {.lex_state = 68}, + [3672] = {.lex_state = 71}, + [3673] = {.lex_state = 68}, + [3674] = {.lex_state = 71}, + [3675] = {.lex_state = 68}, + [3676] = {.lex_state = 60}, + [3677] = {.lex_state = 60}, + [3678] = {.lex_state = 68}, + [3679] = {.lex_state = 65}, + [3680] = {.lex_state = 65}, + [3681] = {.lex_state = 49}, + [3682] = {.lex_state = 43}, + [3683] = {.lex_state = 43}, + [3684] = {.lex_state = 65}, + [3685] = {.lex_state = 60}, + [3686] = {.lex_state = 68}, + [3687] = {.lex_state = 43}, + [3688] = {.lex_state = 71}, + [3689] = {.lex_state = 49}, + [3690] = {.lex_state = 43}, + [3691] = {.lex_state = 43}, + [3692] = {.lex_state = 65}, + [3693] = {.lex_state = 60}, + [3694] = {.lex_state = 71}, + [3695] = {.lex_state = 68}, + [3696] = {.lex_state = 65}, + [3697] = {.lex_state = 60}, + [3698] = {.lex_state = 68}, [3699] = {.lex_state = 71}, - [3700] = {.lex_state = 67}, - [3701] = {.lex_state = 48}, - [3702] = {.lex_state = 61}, - [3703] = {.lex_state = 74}, - [3704] = {.lex_state = 71}, - [3705] = {.lex_state = 67}, - [3706] = {.lex_state = 67}, - [3707] = {.lex_state = 71}, - [3708] = {.lex_state = 74}, - [3709] = {.lex_state = 61}, - [3710] = {.lex_state = 67}, - [3711] = {.lex_state = 71}, - [3712] = {.lex_state = 74}, - [3713] = {.lex_state = 61}, - [3714] = {.lex_state = 48}, - [3715] = {.lex_state = 61}, - [3716] = {.lex_state = 74}, - [3717] = {.lex_state = 61}, - [3718] = {.lex_state = 74}, - [3719] = {.lex_state = 71}, - [3720] = {.lex_state = 67}, - [3721] = {.lex_state = 71}, - [3722] = {.lex_state = 67}, - [3723] = {.lex_state = 71}, - [3724] = {.lex_state = 74}, - [3725] = {.lex_state = 61}, - [3726] = {.lex_state = 67}, - [3727] = {.lex_state = 48}, - [3728] = {.lex_state = 61}, - [3729] = {.lex_state = 74}, + [3700] = {.lex_state = 60}, + [3701] = {.lex_state = 43}, + [3702] = {.lex_state = 65}, + [3703] = {.lex_state = 71}, + [3704] = {.lex_state = 60}, + [3705] = {.lex_state = 65}, + [3706] = {.lex_state = 60}, + [3707] = {.lex_state = 43}, + [3708] = {.lex_state = 68}, + [3709] = {.lex_state = 71}, + [3710] = {.lex_state = 68}, + [3711] = {.lex_state = 60}, + [3712] = {.lex_state = 65}, + [3713] = {.lex_state = 49}, + [3714] = {.lex_state = 71}, + [3715] = {.lex_state = 49}, + [3716] = {.lex_state = 65}, + [3717] = {.lex_state = 71}, + [3718] = {.lex_state = 60}, + [3719] = {.lex_state = 68}, + [3720] = {.lex_state = 60}, + [3721] = {.lex_state = 65}, + [3722] = {.lex_state = 71}, + [3723] = {.lex_state = 49}, + [3724] = {.lex_state = 68}, + [3725] = {.lex_state = 43}, + [3726] = {.lex_state = 49}, + [3727] = {.lex_state = 71}, + [3728] = {.lex_state = 43}, + [3729] = {.lex_state = 71}, [3730] = {.lex_state = 71}, - [3731] = {.lex_state = 67}, - [3732] = {.lex_state = 67}, + [3731] = {.lex_state = 71}, + [3732] = {.lex_state = 65}, [3733] = {.lex_state = 71}, - [3734] = {.lex_state = 74}, - [3735] = {.lex_state = 61}, - [3736] = {.lex_state = 67}, - [3737] = {.lex_state = 71}, - [3738] = {.lex_state = 61}, - [3739] = {.lex_state = 74}, - [3740] = {.lex_state = 61}, - [3741] = {.lex_state = 48}, - [3742] = {.lex_state = 74}, - [3743] = {.lex_state = 48}, - [3744] = {.lex_state = 71}, - [3745] = {.lex_state = 67}, - [3746] = {.lex_state = 67}, - [3747] = {.lex_state = 71}, - [3748] = {.lex_state = 74}, - [3749] = {.lex_state = 61}, - [3750] = {.lex_state = 48}, - [3751] = {.lex_state = 48}, - [3752] = {.lex_state = 61}, - [3753] = {.lex_state = 74}, + [3734] = {.lex_state = 71}, + [3735] = {.lex_state = 68}, + [3736] = {.lex_state = 60}, + [3737] = {.lex_state = 65}, + [3738] = {.lex_state = 60}, + [3739] = {.lex_state = 68}, + [3740] = {.lex_state = 71}, + [3741] = {.lex_state = 65}, + [3742] = {.lex_state = 49}, + [3743] = {.lex_state = 68}, + [3744] = {.lex_state = 65}, + [3745] = {.lex_state = 60}, + [3746] = {.lex_state = 68}, + [3747] = {.lex_state = 68}, + [3748] = {.lex_state = 71}, + [3749] = {.lex_state = 49}, + [3750] = {.lex_state = 71}, + [3751] = {.lex_state = 60}, + [3752] = {.lex_state = 60}, + [3753] = {.lex_state = 68}, [3754] = {.lex_state = 71}, - [3755] = {.lex_state = 67}, - [3756] = {.lex_state = 61}, - [3757] = {.lex_state = 74}, - [3758] = {.lex_state = 71}, - [3759] = {.lex_state = 67}, - [3760] = {.lex_state = 61}, - [3761] = {.lex_state = 74}, - [3762] = {.lex_state = 67}, - [3763] = {.lex_state = 71}, - [3764] = {.lex_state = 71}, - [3765] = {.lex_state = 67}, - [3766] = {.lex_state = 74}, - [3767] = {.lex_state = 48}, - [3768] = {.lex_state = 61}, - [3769] = {.lex_state = 67}, - [3770] = {.lex_state = 48}, + [3755] = {.lex_state = 71}, + [3756] = {.lex_state = 71}, + [3757] = {.lex_state = 68}, + [3758] = {.lex_state = 68}, + [3759] = {.lex_state = 60}, + [3760] = {.lex_state = 65}, + [3761] = {.lex_state = 65}, + [3762] = {.lex_state = 60}, + [3763] = {.lex_state = 60}, + [3764] = {.lex_state = 65}, + [3765] = {.lex_state = 65}, + [3766] = {.lex_state = 60}, + [3767] = {.lex_state = 65}, + [3768] = {.lex_state = 60}, + [3769] = {.lex_state = 68}, + [3770] = {.lex_state = 71}, [3771] = {.lex_state = 71}, - [3772] = {.lex_state = 74}, - [3773] = {.lex_state = 61}, - [3774] = {.lex_state = 61}, - [3775] = {.lex_state = 74}, + [3772] = {.lex_state = 49}, + [3773] = {.lex_state = 65}, + [3774] = {.lex_state = 60}, + [3775] = {.lex_state = 68}, [3776] = {.lex_state = 71}, - [3777] = {.lex_state = 67}, - [3778] = {.lex_state = 71}, - [3779] = {.lex_state = 67}, - [3780] = {.lex_state = 61}, - [3781] = {.lex_state = 67}, - [3782] = {.lex_state = 67}, - [3783] = {.lex_state = 48}, - [3784] = {.lex_state = 61}, - [3785] = {.lex_state = 61}, - [3786] = {.lex_state = 74}, - [3787] = {.lex_state = 71}, - [3788] = {.lex_state = 67}, - [3789] = {.lex_state = 61}, - [3790] = {.lex_state = 74}, - [3791] = {.lex_state = 71}, - [3792] = {.lex_state = 67}, - [3793] = {.lex_state = 48}, - [3794] = {.lex_state = 61}, - [3795] = {.lex_state = 74}, - [3796] = {.lex_state = 67}, - [3797] = {.lex_state = 71}, - [3798] = {.lex_state = 74}, - [3799] = {.lex_state = 61}, - [3800] = {.lex_state = 67}, - [3801] = {.lex_state = 71}, - [3802] = {.lex_state = 74}, - [3803] = {.lex_state = 61}, - [3804] = {.lex_state = 48}, - [3805] = {.lex_state = 71}, - [3806] = {.lex_state = 67}, - [3807] = {.lex_state = 74}, - [3808] = {.lex_state = 61}, - [3809] = {.lex_state = 67}, - [3810] = {.lex_state = 71}, - [3811] = {.lex_state = 74}, - [3812] = {.lex_state = 61}, - [3813] = {.lex_state = 48}, - [3814] = {.lex_state = 71}, - [3815] = {.lex_state = 74}, - [3816] = {.lex_state = 48}, - [3817] = {.lex_state = 71}, - [3818] = {.lex_state = 67}, - [3819] = {.lex_state = 48}, - [3820] = {.lex_state = 48}, - [3821] = {.lex_state = 74}, - [3822] = {.lex_state = 71}, - [3823] = {.lex_state = 67}, - [3824] = {.lex_state = 67}, - [3825] = {.lex_state = 61}, - [3826] = {.lex_state = 74}, - [3827] = {.lex_state = 61}, - [3828] = {.lex_state = 74}, - [3829] = {.lex_state = 71}, - [3830] = {.lex_state = 67}, - [3831] = {.lex_state = 67}, - [3832] = {.lex_state = 71}, - [3833] = {.lex_state = 74}, - [3834] = {.lex_state = 61}, + [3777] = {.lex_state = 60}, + [3778] = {.lex_state = 68}, + [3779] = {.lex_state = 65}, + [3780] = {.lex_state = 71}, + [3781] = {.lex_state = 71}, + [3782] = {.lex_state = 68}, + [3783] = {.lex_state = 68}, + [3784] = {.lex_state = 60}, + [3785] = {.lex_state = 71}, + [3786] = {.lex_state = 68}, + [3787] = {.lex_state = 60}, + [3788] = {.lex_state = 65}, + [3789] = {.lex_state = 65}, + [3790] = {.lex_state = 49}, + [3791] = {.lex_state = 68}, + [3792] = {.lex_state = 65}, + [3793] = {.lex_state = 71}, + [3794] = {.lex_state = 49}, + [3795] = {.lex_state = 68}, + [3796] = {.lex_state = 60}, + [3797] = {.lex_state = 65}, + [3798] = {.lex_state = 71}, + [3799] = {.lex_state = 60}, + [3800] = {.lex_state = 68}, + [3801] = {.lex_state = 43}, + [3802] = {.lex_state = 71}, + [3803] = {.lex_state = 49}, + [3804] = {.lex_state = 65}, + [3805] = {.lex_state = 43}, + [3806] = {.lex_state = 60}, + [3807] = {.lex_state = 68}, + [3808] = {.lex_state = 65}, + [3809] = {.lex_state = 60}, + [3810] = {.lex_state = 68}, + [3811] = {.lex_state = 71}, + [3812] = {.lex_state = 71}, + [3813] = {.lex_state = 49}, + [3814] = {.lex_state = 49}, + [3815] = {.lex_state = 71}, + [3816] = {.lex_state = 43}, + [3817] = {.lex_state = 43}, + [3818] = {.lex_state = 43}, + [3819] = {.lex_state = 68}, + [3820] = {.lex_state = 65}, + [3821] = {.lex_state = 60}, + [3822] = {.lex_state = 43}, + [3823] = {.lex_state = 43}, + [3824] = {.lex_state = 68}, + [3825] = {.lex_state = 65}, + [3826] = {.lex_state = 60}, + [3827] = {.lex_state = 65}, + [3828] = {.lex_state = 68}, + [3829] = {.lex_state = 49}, + [3830] = {.lex_state = 71}, + [3831] = {.lex_state = 65}, + [3832] = {.lex_state = 49}, + [3833] = {.lex_state = 65}, + [3834] = {.lex_state = 60}, [3835] = {.lex_state = 71}, - [3836] = {.lex_state = 67}, - [3837] = {.lex_state = 67}, - [3838] = {.lex_state = 67}, - [3839] = {.lex_state = 71}, - [3840] = {.lex_state = 74}, - [3841] = {.lex_state = 61}, - [3842] = {.lex_state = 71}, - [3843] = {.lex_state = 67}, - [3844] = {.lex_state = 48}, - [3845] = {.lex_state = 61}, - [3846] = {.lex_state = 67}, - [3847] = {.lex_state = 74}, - [3848] = {.lex_state = 71}, - [3849] = {.lex_state = 74}, - [3850] = {.lex_state = 61}, - [3851] = {.lex_state = 74}, - [3852] = {.lex_state = 71}, - [3853] = {.lex_state = 67}, - [3854] = {.lex_state = 48}, - [3855] = {.lex_state = 74}, - [3856] = {.lex_state = 61}, - [3857] = {.lex_state = 71}, - [3858] = {.lex_state = 61}, - [3859] = {.lex_state = 74}, - [3860] = {.lex_state = 71}, - [3861] = {.lex_state = 67}, - [3862] = {.lex_state = 74}, - [3863] = {.lex_state = 61}, - [3864] = {.lex_state = 61}, - [3865] = {.lex_state = 61}, - [3866] = {.lex_state = 74}, - [3867] = {.lex_state = 71}, - [3868] = {.lex_state = 67}, - [3869] = {.lex_state = 67}, + [3836] = {.lex_state = 71}, + [3837] = {.lex_state = 65}, + [3838] = {.lex_state = 60}, + [3839] = {.lex_state = 65}, + [3840] = {.lex_state = 68}, + [3841] = {.lex_state = 71}, + [3842] = {.lex_state = 68}, + [3843] = {.lex_state = 60}, + [3844] = {.lex_state = 65}, + [3845] = {.lex_state = 49}, + [3846] = {.lex_state = 68}, + [3847] = {.lex_state = 43}, + [3848] = {.lex_state = 60}, + [3849] = {.lex_state = 68}, + [3850] = {.lex_state = 65}, + [3851] = {.lex_state = 68}, + [3852] = {.lex_state = 65}, + [3853] = {.lex_state = 71}, + [3854] = {.lex_state = 71}, + [3855] = {.lex_state = 43}, + [3856] = {.lex_state = 43}, + [3857] = {.lex_state = 49}, + [3858] = {.lex_state = 49}, + [3859] = {.lex_state = 65}, + [3860] = {.lex_state = 43}, + [3861] = {.lex_state = 71}, + [3862] = {.lex_state = 68}, + [3863] = {.lex_state = 60}, + [3864] = {.lex_state = 65}, + [3865] = {.lex_state = 49}, + [3866] = {.lex_state = 49}, + [3867] = {.lex_state = 43}, + [3868] = {.lex_state = 71}, + [3869] = {.lex_state = 68}, [3870] = {.lex_state = 71}, - [3871] = {.lex_state = 74}, - [3872] = {.lex_state = 61}, - [3873] = {.lex_state = 48}, - [3874] = {.lex_state = 74}, - [3875] = {.lex_state = 48}, - [3876] = {.lex_state = 61}, - [3877] = {.lex_state = 67}, - [3878] = {.lex_state = 71}, - [3879] = {.lex_state = 74}, - [3880] = {.lex_state = 61}, - [3881] = {.lex_state = 74}, - [3882] = {.lex_state = 74}, - [3883] = {.lex_state = 71}, - [3884] = {.lex_state = 48}, - [3885] = {.lex_state = 67}, - [3886] = {.lex_state = 48}, - [3887] = {.lex_state = 71}, - [3888] = {.lex_state = 61}, - [3889] = {.lex_state = 74}, + [3871] = {.lex_state = 68}, + [3872] = {.lex_state = 60}, + [3873] = {.lex_state = 65}, + [3874] = {.lex_state = 60}, + [3875] = {.lex_state = 60}, + [3876] = {.lex_state = 65}, + [3877] = {.lex_state = 60}, + [3878] = {.lex_state = 68}, + [3879] = {.lex_state = 65}, + [3880] = {.lex_state = 60}, + [3881] = {.lex_state = 68}, + [3882] = {.lex_state = 71}, + [3883] = {.lex_state = 68}, + [3884] = {.lex_state = 65}, + [3885] = {.lex_state = 60}, + [3886] = {.lex_state = 71}, + [3887] = {.lex_state = 68}, + [3888] = {.lex_state = 43}, + [3889] = {.lex_state = 68}, [3890] = {.lex_state = 71}, - [3891] = {.lex_state = 67}, - [3892] = {.lex_state = 48}, - [3893] = {.lex_state = 61}, - [3894] = {.lex_state = 67}, - [3895] = {.lex_state = 71}, - [3896] = {.lex_state = 74}, - [3897] = {.lex_state = 61}, - [3898] = {.lex_state = 48}, - [3899] = {.lex_state = 74}, - [3900] = {.lex_state = 61}, - [3901] = {.lex_state = 74}, - [3902] = {.lex_state = 71}, - [3903] = {.lex_state = 67}, - [3904] = {.lex_state = 71}, - [3905] = {.lex_state = 67}, - [3906] = {.lex_state = 67}, + [3891] = {.lex_state = 49}, + [3892] = {.lex_state = 65}, + [3893] = {.lex_state = 49}, + [3894] = {.lex_state = 71}, + [3895] = {.lex_state = 60}, + [3896] = {.lex_state = 68}, + [3897] = {.lex_state = 71}, + [3898] = {.lex_state = 68}, + [3899] = {.lex_state = 60}, + [3900] = {.lex_state = 65}, + [3901] = {.lex_state = 71}, + [3902] = {.lex_state = 43}, + [3903] = {.lex_state = 68}, + [3904] = {.lex_state = 60}, + [3905] = {.lex_state = 49}, + [3906] = {.lex_state = 49}, [3907] = {.lex_state = 71}, - [3908] = {.lex_state = 67}, - [3909] = {.lex_state = 74}, - [3910] = {.lex_state = 71}, - [3911] = {.lex_state = 61}, - [3912] = {.lex_state = 74}, - [3913] = {.lex_state = 67}, - [3914] = {.lex_state = 71}, - [3915] = {.lex_state = 61}, - [3916] = {.lex_state = 61}, - [3917] = {.lex_state = 74}, - [3918] = {.lex_state = 61}, - [3919] = {.lex_state = 74}, - [3920] = {.lex_state = 71}, - [3921] = {.lex_state = 67}, - [3922] = {.lex_state = 48}, - [3923] = {.lex_state = 61}, - [3924] = {.lex_state = 74}, - [3925] = {.lex_state = 71}, - [3926] = {.lex_state = 67}, - [3927] = {.lex_state = 67}, - [3928] = {.lex_state = 71}, + [3908] = {.lex_state = 65}, + [3909] = {.lex_state = 65}, + [3910] = {.lex_state = 60}, + [3911] = {.lex_state = 68}, + [3912] = {.lex_state = 71}, + [3913] = {.lex_state = 49}, + [3914] = {.lex_state = 60}, + [3915] = {.lex_state = 65}, + [3916] = {.lex_state = 60}, + [3917] = {.lex_state = 71}, + [3918] = {.lex_state = 68}, + [3919] = {.lex_state = 71}, + [3920] = {.lex_state = 68}, + [3921] = {.lex_state = 60}, + [3922] = {.lex_state = 65}, + [3923] = {.lex_state = 43}, + [3924] = {.lex_state = 49}, + [3925] = {.lex_state = 65}, + [3926] = {.lex_state = 43}, + [3927] = {.lex_state = 60}, + [3928] = {.lex_state = 60}, [3929] = {.lex_state = 71}, - [3930] = {.lex_state = 74}, - [3931] = {.lex_state = 61}, - [3932] = {.lex_state = 74}, - [3933] = {.lex_state = 71}, - [3934] = {.lex_state = 67}, - [3935] = {.lex_state = 67}, - [3936] = {.lex_state = 71}, - [3937] = {.lex_state = 74}, - [3938] = {.lex_state = 61}, - [3939] = {.lex_state = 48}, - [3940] = {.lex_state = 67}, - [3941] = {.lex_state = 71}, - [3942] = {.lex_state = 74}, - [3943] = {.lex_state = 61}, - [3944] = {.lex_state = 61}, - [3945] = {.lex_state = 67}, - [3946] = {.lex_state = 71}, - [3947] = {.lex_state = 74}, - [3948] = {.lex_state = 61}, - [3949] = {.lex_state = 61}, - [3950] = {.lex_state = 43}, - [3951] = {.lex_state = 43}, - [3952] = {.lex_state = 43}, - [3953] = {.lex_state = 43}, - [3954] = {.lex_state = 43}, - [3955] = {.lex_state = 48}, - [3956] = {.lex_state = 43}, + [3930] = {.lex_state = 68}, + [3931] = {.lex_state = 60}, + [3932] = {.lex_state = 43}, + [3933] = {.lex_state = 65}, + [3934] = {.lex_state = 68}, + [3935] = {.lex_state = 49}, + [3936] = {.lex_state = 49}, + [3937] = {.lex_state = 43}, + [3938] = {.lex_state = 71}, + [3939] = {.lex_state = 71}, + [3940] = {.lex_state = 68}, + [3941] = {.lex_state = 60}, + [3942] = {.lex_state = 65}, + [3943] = {.lex_state = 49}, + [3944] = {.lex_state = 65}, + [3945] = {.lex_state = 60}, + [3946] = {.lex_state = 68}, + [3947] = {.lex_state = 71}, + [3948] = {.lex_state = 68}, + [3949] = {.lex_state = 60}, + [3950] = {.lex_state = 65}, + [3951] = {.lex_state = 60}, + [3952] = {.lex_state = 68}, + [3953] = {.lex_state = 71}, + [3954] = {.lex_state = 65}, + [3955] = {.lex_state = 71}, + [3956] = {.lex_state = 71}, [3957] = {.lex_state = 43}, - [3958] = {.lex_state = 48}, - [3959] = {.lex_state = 48}, - [3960] = {.lex_state = 43}, - [3961] = {.lex_state = 43}, - [3962] = {.lex_state = 67}, - [3963] = {.lex_state = 71}, - [3964] = {.lex_state = 74}, - [3965] = {.lex_state = 61}, - [3966] = {.lex_state = 48}, - [3967] = {.lex_state = 43}, - [3968] = {.lex_state = 43}, - [3969] = {.lex_state = 43}, - [3970] = {.lex_state = 67}, - [3971] = {.lex_state = 71}, - [3972] = {.lex_state = 74}, - [3973] = {.lex_state = 61}, - [3974] = {.lex_state = 74}, - [3975] = {.lex_state = 71}, - [3976] = {.lex_state = 67}, - [3977] = {.lex_state = 61}, - [3978] = {.lex_state = 48}, - [3979] = {.lex_state = 43}, - [3980] = {.lex_state = 43}, - [3981] = {.lex_state = 43}, - [3982] = {.lex_state = 43}, - [3983] = {.lex_state = 43}, - [3984] = {.lex_state = 43}, - [3985] = {.lex_state = 67}, - [3986] = {.lex_state = 71}, - [3987] = {.lex_state = 74}, - [3988] = {.lex_state = 61}, - [3989] = {.lex_state = 61}, - [3990] = {.lex_state = 43}, - [3991] = {.lex_state = 74}, - [3992] = {.lex_state = 43}, - [3993] = {.lex_state = 43}, - [3994] = {.lex_state = 43}, - [3995] = {.lex_state = 67}, - [3996] = {.lex_state = 71}, - [3997] = {.lex_state = 67}, - [3998] = {.lex_state = 71}, - [3999] = {.lex_state = 74}, - [4000] = {.lex_state = 43}, - [4001] = {.lex_state = 61}, - [4002] = {.lex_state = 74}, - [4003] = {.lex_state = 61}, - [4004] = {.lex_state = 61}, - [4005] = {.lex_state = 74}, - [4006] = {.lex_state = 71}, - [4007] = {.lex_state = 67}, - [4008] = {.lex_state = 48}, - [4009] = {.lex_state = 43}, - [4010] = {.lex_state = 43}, - [4011] = {.lex_state = 43}, - [4012] = {.lex_state = 67}, - [4013] = {.lex_state = 71}, - [4014] = {.lex_state = 74}, - [4015] = {.lex_state = 61}, - [4016] = {.lex_state = 61}, - [4017] = {.lex_state = 71}, - [4018] = {.lex_state = 43}, - [4019] = {.lex_state = 43}, - [4020] = {.lex_state = 67}, - [4021] = {.lex_state = 43}, - [4022] = {.lex_state = 43}, - [4023] = {.lex_state = 43}, - [4024] = {.lex_state = 43}, - [4025] = {.lex_state = 43}, - [4026] = {.lex_state = 43}, - [4027] = {.lex_state = 43}, - [4028] = {.lex_state = 67}, - [4029] = {.lex_state = 71}, - [4030] = {.lex_state = 74}, - [4031] = {.lex_state = 48}, - [4032] = {.lex_state = 44}, + [3958] = {.lex_state = 68}, + [3959] = {.lex_state = 43}, + [3960] = {.lex_state = 60}, + [3961] = {.lex_state = 65}, + [3962] = {.lex_state = 44}, + [3963] = {.lex_state = 44}, + [3964] = {.lex_state = 44}, + [3965] = {.lex_state = 44}, + [3966] = {.lex_state = 44}, + [3967] = {.lex_state = 4}, + [3968] = {.lex_state = 44}, + [3969] = {.lex_state = 44}, + [3970] = {.lex_state = 4}, + [3971] = {.lex_state = 44}, + [3972] = {.lex_state = 44}, + [3973] = {.lex_state = 4}, + [3974] = {.lex_state = 44}, + [3975] = {.lex_state = 4}, + [3976] = {.lex_state = 44}, + [3977] = {.lex_state = 4}, + [3978] = {.lex_state = 44}, + [3979] = {.lex_state = 4}, + [3980] = {.lex_state = 44}, + [3981] = {.lex_state = 4}, + [3982] = {.lex_state = 44}, + [3983] = {.lex_state = 44}, + [3984] = {.lex_state = 44}, + [3985] = {.lex_state = 44}, + [3986] = {.lex_state = 44}, + [3987] = {.lex_state = 4}, + [3988] = {.lex_state = 4}, + [3989] = {.lex_state = 44}, + [3990] = {.lex_state = 4}, + [3991] = {.lex_state = 44}, + [3992] = {.lex_state = 44}, + [3993] = {.lex_state = 44}, + [3994] = {.lex_state = 44}, + [3995] = {.lex_state = 4}, + [3996] = {.lex_state = 44}, + [3997] = {.lex_state = 4}, + [3998] = {.lex_state = 44}, + [3999] = {.lex_state = 4}, + [4000] = {.lex_state = 44}, + [4001] = {.lex_state = 44}, + [4002] = {.lex_state = 4}, + [4003] = {.lex_state = 44}, + [4004] = {.lex_state = 4}, + [4005] = {.lex_state = 44}, + [4006] = {.lex_state = 44}, + [4007] = {.lex_state = 44}, + [4008] = {.lex_state = 44}, + [4009] = {.lex_state = 4}, + [4010] = {.lex_state = 44}, + [4011] = {.lex_state = 44}, + [4012] = {.lex_state = 4}, + [4013] = {.lex_state = 44}, + [4014] = {.lex_state = 4}, + [4015] = {.lex_state = 44}, + [4016] = {.lex_state = 4}, + [4017] = {.lex_state = 44}, + [4018] = {.lex_state = 4}, + [4019] = {.lex_state = 44}, + [4020] = {.lex_state = 4}, + [4021] = {.lex_state = 44}, + [4022] = {.lex_state = 44}, + [4023] = {.lex_state = 44}, + [4024] = {.lex_state = 44}, + [4025] = {.lex_state = 4}, + [4026] = {.lex_state = 44}, + [4027] = {.lex_state = 4}, + [4028] = {.lex_state = 44}, + [4029] = {.lex_state = 44}, + [4030] = {.lex_state = 44}, + [4031] = {.lex_state = 44}, + [4032] = {.lex_state = 4}, [4033] = {.lex_state = 4}, [4034] = {.lex_state = 44}, - [4035] = {.lex_state = 44}, + [4035] = {.lex_state = 4}, [4036] = {.lex_state = 44}, [4037] = {.lex_state = 44}, - [4038] = {.lex_state = 4}, + [4038] = {.lex_state = 44}, [4039] = {.lex_state = 44}, - [4040] = {.lex_state = 4}, - [4041] = {.lex_state = 44}, - [4042] = {.lex_state = 4}, + [4040] = {.lex_state = 44}, + [4041] = {.lex_state = 4}, + [4042] = {.lex_state = 44}, [4043] = {.lex_state = 4}, - [4044] = {.lex_state = 44}, - [4045] = {.lex_state = 4}, - [4046] = {.lex_state = 44}, + [4044] = {.lex_state = 4}, + [4045] = {.lex_state = 44}, + [4046] = {.lex_state = 4}, [4047] = {.lex_state = 44}, [4048] = {.lex_state = 44}, [4049] = {.lex_state = 44}, - [4050] = {.lex_state = 4}, - [4051] = {.lex_state = 44}, + [4050] = {.lex_state = 44}, + [4051] = {.lex_state = 4}, [4052] = {.lex_state = 44}, [4053] = {.lex_state = 44}, [4054] = {.lex_state = 4}, - [4055] = {.lex_state = 4}, - [4056] = {.lex_state = 44}, + [4055] = {.lex_state = 44}, + [4056] = {.lex_state = 4}, [4057] = {.lex_state = 44}, [4058] = {.lex_state = 44}, - [4059] = {.lex_state = 44}, + [4059] = {.lex_state = 4}, [4060] = {.lex_state = 44}, - [4061] = {.lex_state = 4}, + [4061] = {.lex_state = 44}, [4062] = {.lex_state = 44}, [4063] = {.lex_state = 44}, - [4064] = {.lex_state = 4}, + [4064] = {.lex_state = 44}, [4065] = {.lex_state = 4}, [4066] = {.lex_state = 44}, - [4067] = {.lex_state = 44}, - [4068] = {.lex_state = 4}, - [4069] = {.lex_state = 44}, - [4070] = {.lex_state = 4}, - [4071] = {.lex_state = 44}, - [4072] = {.lex_state = 4}, - [4073] = {.lex_state = 4}, - [4074] = {.lex_state = 44}, - [4075] = {.lex_state = 44}, - [4076] = {.lex_state = 44}, - [4077] = {.lex_state = 44}, - [4078] = {.lex_state = 4}, - [4079] = {.lex_state = 44}, - [4080] = {.lex_state = 44}, - [4081] = {.lex_state = 4}, - [4082] = {.lex_state = 4}, - [4083] = {.lex_state = 44}, - [4084] = {.lex_state = 44}, + [4067] = {.lex_state = 43}, + [4068] = {.lex_state = 43}, + [4069] = {.lex_state = 61}, + [4070] = {.lex_state = 50}, + [4071] = {.lex_state = 1}, + [4072] = {.lex_state = 50}, + [4073] = {.lex_state = 1}, + [4074] = {.lex_state = 71}, + [4075] = {.lex_state = 50}, + [4076] = {.lex_state = 50}, + [4077] = {.lex_state = 1}, + [4078] = {.lex_state = 61}, + [4079] = {.lex_state = 65}, + [4080] = {.lex_state = 1}, + [4081] = {.lex_state = 61}, + [4082] = {.lex_state = 50}, + [4083] = {.lex_state = 50}, + [4084] = {.lex_state = 65}, [4085] = {.lex_state = 44}, - [4086] = {.lex_state = 4}, - [4087] = {.lex_state = 44}, - [4088] = {.lex_state = 4}, - [4089] = {.lex_state = 44}, - [4090] = {.lex_state = 44}, - [4091] = {.lex_state = 44}, - [4092] = {.lex_state = 44}, - [4093] = {.lex_state = 4}, - [4094] = {.lex_state = 44}, - [4095] = {.lex_state = 44}, - [4096] = {.lex_state = 4}, - [4097] = {.lex_state = 44}, - [4098] = {.lex_state = 44}, - [4099] = {.lex_state = 4}, - [4100] = {.lex_state = 44}, - [4101] = {.lex_state = 44}, - [4102] = {.lex_state = 44}, - [4103] = {.lex_state = 4}, - [4104] = {.lex_state = 44}, - [4105] = {.lex_state = 44}, - [4106] = {.lex_state = 44}, - [4107] = {.lex_state = 44}, - [4108] = {.lex_state = 44}, - [4109] = {.lex_state = 44}, - [4110] = {.lex_state = 4}, - [4111] = {.lex_state = 4}, - [4112] = {.lex_state = 44}, - [4113] = {.lex_state = 4}, - [4114] = {.lex_state = 44}, - [4115] = {.lex_state = 44}, - [4116] = {.lex_state = 4}, - [4117] = {.lex_state = 44}, - [4118] = {.lex_state = 4}, - [4119] = {.lex_state = 4}, - [4120] = {.lex_state = 44}, - [4121] = {.lex_state = 44}, - [4122] = {.lex_state = 44}, - [4123] = {.lex_state = 44}, - [4124] = {.lex_state = 44}, - [4125] = {.lex_state = 4}, - [4126] = {.lex_state = 44}, - [4127] = {.lex_state = 4}, - [4128] = {.lex_state = 44}, - [4129] = {.lex_state = 4}, - [4130] = {.lex_state = 44}, - [4131] = {.lex_state = 4}, - [4132] = {.lex_state = 44}, - [4133] = {.lex_state = 44}, - [4134] = {.lex_state = 44}, - [4135] = {.lex_state = 44}, - [4136] = {.lex_state = 44}, - [4137] = {.lex_state = 43}, - [4138] = {.lex_state = 43}, - [4139] = {.lex_state = 45}, - [4140] = {.lex_state = 49}, - [4141] = {.lex_state = 49}, - [4142] = {.lex_state = 49}, - [4143] = {.lex_state = 45}, - [4144] = {.lex_state = 1}, - [4145] = {.lex_state = 1}, - [4146] = {.lex_state = 45}, - [4147] = {.lex_state = 49}, + [4086] = {.lex_state = 1}, + [4087] = {.lex_state = 61}, + [4088] = {.lex_state = 61}, + [4089] = {.lex_state = 50}, + [4090] = {.lex_state = 61}, + [4091] = {.lex_state = 1}, + [4092] = {.lex_state = 61}, + [4093] = {.lex_state = 61}, + [4094] = {.lex_state = 61}, + [4095] = {.lex_state = 1}, + [4096] = {.lex_state = 61}, + [4097] = {.lex_state = 50}, + [4098] = {.lex_state = 1}, + [4099] = {.lex_state = 61}, + [4100] = {.lex_state = 50}, + [4101] = {.lex_state = 1}, + [4102] = {.lex_state = 68}, + [4103] = {.lex_state = 1}, + [4104] = {.lex_state = 50}, + [4105] = {.lex_state = 61}, + [4106] = {.lex_state = 61}, + [4107] = {.lex_state = 50}, + [4108] = {.lex_state = 1}, + [4109] = {.lex_state = 1}, + [4110] = {.lex_state = 50}, + [4111] = {.lex_state = 1}, + [4112] = {.lex_state = 50}, + [4113] = {.lex_state = 61}, + [4114] = {.lex_state = 49}, + [4115] = {.lex_state = 61}, + [4116] = {.lex_state = 50}, + [4117] = {.lex_state = 1}, + [4118] = {.lex_state = 71}, + [4119] = {.lex_state = 61}, + [4120] = {.lex_state = 61}, + [4121] = {.lex_state = 49}, + [4122] = {.lex_state = 1}, + [4123] = {.lex_state = 50}, + [4124] = {.lex_state = 1}, + [4125] = {.lex_state = 50}, + [4126] = {.lex_state = 1}, + [4127] = {.lex_state = 61}, + [4128] = {.lex_state = 50}, + [4129] = {.lex_state = 44}, + [4130] = {.lex_state = 50}, + [4131] = {.lex_state = 1}, + [4132] = {.lex_state = 61}, + [4133] = {.lex_state = 1}, + [4134] = {.lex_state = 61}, + [4135] = {.lex_state = 61}, + [4136] = {.lex_state = 61}, + [4137] = {.lex_state = 50}, + [4138] = {.lex_state = 1}, + [4139] = {.lex_state = 1}, + [4140] = {.lex_state = 68}, + [4141] = {.lex_state = 50}, + [4142] = {.lex_state = 61}, + [4143] = {.lex_state = 1}, + [4144] = {.lex_state = 61}, + [4145] = {.lex_state = 50}, + [4146] = {.lex_state = 50}, + [4147] = {.lex_state = 61}, [4148] = {.lex_state = 1}, - [4149] = {.lex_state = 49}, - [4150] = {.lex_state = 45}, - [4151] = {.lex_state = 74}, - [4152] = {.lex_state = 62}, - [4153] = {.lex_state = 71}, - [4154] = {.lex_state = 45}, - [4155] = {.lex_state = 62}, - [4156] = {.lex_state = 1}, - [4157] = {.lex_state = 49}, - [4158] = {.lex_state = 45}, - [4159] = {.lex_state = 45}, - [4160] = {.lex_state = 49}, + [4149] = {.lex_state = 50}, + [4150] = {.lex_state = 61}, + [4151] = {.lex_state = 1}, + [4152] = {.lex_state = 50}, + [4153] = {.lex_state = 61}, + [4154] = {.lex_state = 1}, + [4155] = {.lex_state = 50}, + [4156] = {.lex_state = 61}, + [4157] = {.lex_state = 50}, + [4158] = {.lex_state = 1}, + [4159] = {.lex_state = 50}, + [4160] = {.lex_state = 61}, [4161] = {.lex_state = 1}, [4162] = {.lex_state = 61}, - [4163] = {.lex_state = 62}, - [4164] = {.lex_state = 62}, - [4165] = {.lex_state = 62}, - [4166] = {.lex_state = 48}, + [4163] = {.lex_state = 1}, + [4164] = {.lex_state = 50}, + [4165] = {.lex_state = 50}, + [4166] = {.lex_state = 61}, [4167] = {.lex_state = 1}, - [4168] = {.lex_state = 49}, - [4169] = {.lex_state = 45}, - [4170] = {.lex_state = 1}, - [4171] = {.lex_state = 1}, - [4172] = {.lex_state = 49}, - [4173] = {.lex_state = 45}, - [4174] = {.lex_state = 49}, - [4175] = {.lex_state = 1}, + [4168] = {.lex_state = 1}, + [4169] = {.lex_state = 50}, + [4170] = {.lex_state = 50}, + [4171] = {.lex_state = 61}, + [4172] = {.lex_state = 60}, + [4173] = {.lex_state = 50}, + [4174] = {.lex_state = 1}, + [4175] = {.lex_state = 61}, [4176] = {.lex_state = 61}, - [4177] = {.lex_state = 62}, - [4178] = {.lex_state = 62}, - [4179] = {.lex_state = 45}, - [4180] = {.lex_state = 49}, - [4181] = {.lex_state = 1}, - [4182] = {.lex_state = 45}, - [4183] = {.lex_state = 45}, - [4184] = {.lex_state = 62}, - [4185] = {.lex_state = 62}, - [4186] = {.lex_state = 44}, - [4187] = {.lex_state = 1}, - [4188] = {.lex_state = 62}, - [4189] = {.lex_state = 49}, - [4190] = {.lex_state = 49}, - [4191] = {.lex_state = 1}, - [4192] = {.lex_state = 49}, - [4193] = {.lex_state = 45}, - [4194] = {.lex_state = 45}, - [4195] = {.lex_state = 74}, - [4196] = {.lex_state = 62}, - [4197] = {.lex_state = 62}, - [4198] = {.lex_state = 1}, - [4199] = {.lex_state = 45}, - [4200] = {.lex_state = 49}, - [4201] = {.lex_state = 67}, - [4202] = {.lex_state = 1}, - [4203] = {.lex_state = 62}, - [4204] = {.lex_state = 45}, - [4205] = {.lex_state = 62}, - [4206] = {.lex_state = 49}, - [4207] = {.lex_state = 62}, - [4208] = {.lex_state = 1}, - [4209] = {.lex_state = 1}, - [4210] = {.lex_state = 49}, - [4211] = {.lex_state = 45}, - [4212] = {.lex_state = 1}, - [4213] = {.lex_state = 45}, - [4214] = {.lex_state = 49}, - [4215] = {.lex_state = 1}, - [4216] = {.lex_state = 49}, - [4217] = {.lex_state = 45}, - [4218] = {.lex_state = 62}, - [4219] = {.lex_state = 62}, - [4220] = {.lex_state = 1}, - [4221] = {.lex_state = 45}, - [4222] = {.lex_state = 62}, - [4223] = {.lex_state = 45}, - [4224] = {.lex_state = 49}, - [4225] = {.lex_state = 1}, - [4226] = {.lex_state = 1}, - [4227] = {.lex_state = 62}, - [4228] = {.lex_state = 45}, - [4229] = {.lex_state = 49}, - [4230] = {.lex_state = 45}, - [4231] = {.lex_state = 62}, - [4232] = {.lex_state = 49}, - [4233] = {.lex_state = 1}, - [4234] = {.lex_state = 49}, - [4235] = {.lex_state = 45}, - [4236] = {.lex_state = 62}, - [4237] = {.lex_state = 1}, - [4238] = {.lex_state = 71}, - [4239] = {.lex_state = 49}, - [4240] = {.lex_state = 1}, - [4241] = {.lex_state = 45}, - [4242] = {.lex_state = 62}, - [4243] = {.lex_state = 49}, - [4244] = {.lex_state = 1}, - [4245] = {.lex_state = 62}, - [4246] = {.lex_state = 49}, - [4247] = {.lex_state = 45}, - [4248] = {.lex_state = 1}, - [4249] = {.lex_state = 45}, - [4250] = {.lex_state = 62}, - [4251] = {.lex_state = 45}, - [4252] = {.lex_state = 1}, - [4253] = {.lex_state = 49}, - [4254] = {.lex_state = 62}, - [4255] = {.lex_state = 67}, - [4256] = {.lex_state = 62}, - [4257] = {.lex_state = 44}, - [4258] = {.lex_state = 62}, - [4259] = {.lex_state = 1}, - [4260] = {.lex_state = 45}, - [4261] = {.lex_state = 49}, - [4262] = {.lex_state = 1}, - [4263] = {.lex_state = 62}, - [4264] = {.lex_state = 62}, - [4265] = {.lex_state = 49}, - [4266] = {.lex_state = 62}, - [4267] = {.lex_state = 1}, - [4268] = {.lex_state = 49}, - [4269] = {.lex_state = 45}, - [4270] = {.lex_state = 48}, - [4271] = {.lex_state = 45}, - [4272] = {.lex_state = 49}, - [4273] = {.lex_state = 1}, - [4274] = {.lex_state = 62}, - [4275] = {.lex_state = 62}, - [4276] = {.lex_state = 45}, - [4277] = {.lex_state = 49}, - [4278] = {.lex_state = 1}, - [4279] = {.lex_state = 62}, - [4280] = {.lex_state = 62}, - [4281] = {.lex_state = 1}, - [4282] = {.lex_state = 1}, - [4283] = {.lex_state = 49}, - [4284] = {.lex_state = 49}, - [4285] = {.lex_state = 45}, - [4286] = {.lex_state = 45}, - [4287] = {.lex_state = 49}, - [4288] = {.lex_state = 1}, - [4289] = {.lex_state = 45}, - [4290] = {.lex_state = 62}, - [4291] = {.lex_state = 45}, - [4292] = {.lex_state = 50}, - [4293] = {.lex_state = 49}, - [4294] = {.lex_state = 62}, - [4295] = {.lex_state = 51}, - [4296] = {.lex_state = 62}, - [4297] = {.lex_state = 1}, - [4298] = {.lex_state = 1}, - [4299] = {.lex_state = 50}, - [4300] = {.lex_state = 49}, - [4301] = {.lex_state = 45}, - [4302] = {.lex_state = 51}, - [4303] = {.lex_state = 42}, - [4304] = {.lex_state = 40}, + [4177] = {.lex_state = 1}, + [4178] = {.lex_state = 60}, + [4179] = {.lex_state = 50}, + [4180] = {.lex_state = 50}, + [4181] = {.lex_state = 61}, + [4182] = {.lex_state = 1}, + [4183] = {.lex_state = 1}, + [4184] = {.lex_state = 50}, + [4185] = {.lex_state = 1}, + [4186] = {.lex_state = 50}, + [4187] = {.lex_state = 61}, + [4188] = {.lex_state = 1}, + [4189] = {.lex_state = 61}, + [4190] = {.lex_state = 51}, + [4191] = {.lex_state = 50}, + [4192] = {.lex_state = 52}, + [4193] = {.lex_state = 51}, + [4194] = {.lex_state = 1}, + [4195] = {.lex_state = 52}, + [4196] = {.lex_state = 42}, + [4197] = {.lex_state = 40}, + [4198] = {.lex_state = 40}, + [4199] = {.lex_state = 40}, + [4200] = {.lex_state = 40}, + [4201] = {.lex_state = 40}, + [4202] = {.lex_state = 42}, + [4203] = {.lex_state = 42}, + [4204] = {.lex_state = 40}, + [4205] = {.lex_state = 42}, + [4206] = {.lex_state = 40}, + [4207] = {.lex_state = 42}, + [4208] = {.lex_state = 42}, + [4209] = {.lex_state = 40}, + [4210] = {.lex_state = 40}, + [4211] = {.lex_state = 42}, + [4212] = {.lex_state = 42}, + [4213] = {.lex_state = 41}, + [4214] = {.lex_state = 40}, + [4215] = {.lex_state = 42}, + [4216] = {.lex_state = 40}, + [4217] = {.lex_state = 42}, + [4218] = {.lex_state = 42}, + [4219] = {.lex_state = 68}, + [4220] = {.lex_state = 40}, + [4221] = {.lex_state = 42}, + [4222] = {.lex_state = 40}, + [4223] = {.lex_state = 42}, + [4224] = {.lex_state = 40}, + [4225] = {.lex_state = 42}, + [4226] = {.lex_state = 42}, + [4227] = {.lex_state = 42}, + [4228] = {.lex_state = 42}, + [4229] = {.lex_state = 40}, + [4230] = {.lex_state = 42}, + [4231] = {.lex_state = 40}, + [4232] = {.lex_state = 42}, + [4233] = {.lex_state = 42}, + [4234] = {.lex_state = 40}, + [4235] = {.lex_state = 42}, + [4236] = {.lex_state = 40}, + [4237] = {.lex_state = 40}, + [4238] = {.lex_state = 42}, + [4239] = {.lex_state = 40}, + [4240] = {.lex_state = 41}, + [4241] = {.lex_state = 40}, + [4242] = {.lex_state = 40}, + [4243] = {.lex_state = 42}, + [4244] = {.lex_state = 71}, + [4245] = {.lex_state = 42}, + [4246] = {.lex_state = 42}, + [4247] = {.lex_state = 42}, + [4248] = {.lex_state = 40}, + [4249] = {.lex_state = 40}, + [4250] = {.lex_state = 40}, + [4251] = {.lex_state = 40}, + [4252] = {.lex_state = 42}, + [4253] = {.lex_state = 40}, + [4254] = {.lex_state = 60}, + [4255] = {.lex_state = 42}, + [4256] = {.lex_state = 42}, + [4257] = {.lex_state = 42}, + [4258] = {.lex_state = 40}, + [4259] = {.lex_state = 65}, + [4260] = {.lex_state = 42}, + [4261] = {.lex_state = 40}, + [4262] = {.lex_state = 40}, + [4263] = {.lex_state = 42}, + [4264] = {.lex_state = 40}, + [4265] = {.lex_state = 42}, + [4266] = {.lex_state = 40}, + [4267] = {.lex_state = 42}, + [4268] = {.lex_state = 40}, + [4269] = {.lex_state = 42}, + [4270] = {.lex_state = 40}, + [4271] = {.lex_state = 42}, + [4272] = {.lex_state = 42}, + [4273] = {.lex_state = 40}, + [4274] = {.lex_state = 40}, + [4275] = {.lex_state = 42}, + [4276] = {.lex_state = 41}, + [4277] = {.lex_state = 42}, + [4278] = {.lex_state = 40}, + [4279] = {.lex_state = 40}, + [4280] = {.lex_state = 40}, + [4281] = {.lex_state = 40}, + [4282] = {.lex_state = 42}, + [4283] = {.lex_state = 40}, + [4284] = {.lex_state = 42}, + [4285] = {.lex_state = 40}, + [4286] = {.lex_state = 42}, + [4287] = {.lex_state = 40}, + [4288] = {.lex_state = 60}, + [4289] = {.lex_state = 40}, + [4290] = {.lex_state = 40}, + [4291] = {.lex_state = 40}, + [4292] = {.lex_state = 41}, + [4293] = {.lex_state = 40}, + [4294] = {.lex_state = 40}, + [4295] = {.lex_state = 42}, + [4296] = {.lex_state = 42}, + [4297] = {.lex_state = 42}, + [4298] = {.lex_state = 40}, + [4299] = {.lex_state = 40}, + [4300] = {.lex_state = 40}, + [4301] = {.lex_state = 42}, + [4302] = {.lex_state = 42}, + [4303] = {.lex_state = 40}, + [4304] = {.lex_state = 71}, [4305] = {.lex_state = 40}, - [4306] = {.lex_state = 40}, + [4306] = {.lex_state = 42}, [4307] = {.lex_state = 40}, [4308] = {.lex_state = 40}, [4309] = {.lex_state = 40}, [4310] = {.lex_state = 40}, [4311] = {.lex_state = 40}, [4312] = {.lex_state = 40}, - [4313] = {.lex_state = 40}, + [4313] = {.lex_state = 42}, [4314] = {.lex_state = 40}, - [4315] = {.lex_state = 40}, + [4315] = {.lex_state = 49}, [4316] = {.lex_state = 42}, - [4317] = {.lex_state = 40}, + [4317] = {.lex_state = 42}, [4318] = {.lex_state = 40}, - [4319] = {.lex_state = 42}, - [4320] = {.lex_state = 40}, - [4321] = {.lex_state = 42}, - [4322] = {.lex_state = 42}, + [4319] = {.lex_state = 71}, + [4320] = {.lex_state = 42}, + [4321] = {.lex_state = 68}, + [4322] = {.lex_state = 68}, [4323] = {.lex_state = 40}, [4324] = {.lex_state = 40}, - [4325] = {.lex_state = 42}, - [4326] = {.lex_state = 42}, - [4327] = {.lex_state = 40}, - [4328] = {.lex_state = 40}, - [4329] = {.lex_state = 42}, - [4330] = {.lex_state = 42}, - [4331] = {.lex_state = 42}, + [4325] = {.lex_state = 40}, + [4326] = {.lex_state = 41}, + [4327] = {.lex_state = 42}, + [4328] = {.lex_state = 42}, + [4329] = {.lex_state = 49}, + [4330] = {.lex_state = 60}, + [4331] = {.lex_state = 40}, [4332] = {.lex_state = 40}, [4333] = {.lex_state = 42}, [4334] = {.lex_state = 42}, [4335] = {.lex_state = 40}, [4336] = {.lex_state = 40}, - [4337] = {.lex_state = 40}, - [4338] = {.lex_state = 42}, - [4339] = {.lex_state = 40}, - [4340] = {.lex_state = 40}, - [4341] = {.lex_state = 42}, - [4342] = {.lex_state = 40}, - [4343] = {.lex_state = 42}, + [4337] = {.lex_state = 42}, + [4338] = {.lex_state = 40}, + [4339] = {.lex_state = 65}, + [4340] = {.lex_state = 42}, + [4341] = {.lex_state = 40}, + [4342] = {.lex_state = 42}, + [4343] = {.lex_state = 40}, [4344] = {.lex_state = 40}, [4345] = {.lex_state = 40}, [4346] = {.lex_state = 40}, - [4347] = {.lex_state = 40}, - [4348] = {.lex_state = 42}, - [4349] = {.lex_state = 42}, + [4347] = {.lex_state = 42}, + [4348] = {.lex_state = 65}, + [4349] = {.lex_state = 40}, [4350] = {.lex_state = 42}, [4351] = {.lex_state = 42}, - [4352] = {.lex_state = 61}, - [4353] = {.lex_state = 41}, - [4354] = {.lex_state = 40}, - [4355] = {.lex_state = 40}, + [4352] = {.lex_state = 42}, + [4353] = {.lex_state = 40}, + [4354] = {.lex_state = 42}, + [4355] = {.lex_state = 42}, [4356] = {.lex_state = 40}, [4357] = {.lex_state = 40}, [4358] = {.lex_state = 42}, [4359] = {.lex_state = 40}, - [4360] = {.lex_state = 42}, - [4361] = {.lex_state = 40}, + [4360] = {.lex_state = 40}, + [4361] = {.lex_state = 49}, [4362] = {.lex_state = 42}, [4363] = {.lex_state = 40}, [4364] = {.lex_state = 42}, - [4365] = {.lex_state = 42}, + [4365] = {.lex_state = 40}, [4366] = {.lex_state = 40}, - [4367] = {.lex_state = 41}, + [4367] = {.lex_state = 40}, [4368] = {.lex_state = 42}, - [4369] = {.lex_state = 41}, + [4369] = {.lex_state = 42}, [4370] = {.lex_state = 40}, - [4371] = {.lex_state = 41}, - [4372] = {.lex_state = 42}, - [4373] = {.lex_state = 42}, - [4374] = {.lex_state = 40}, - [4375] = {.lex_state = 42}, - [4376] = {.lex_state = 40}, - [4377] = {.lex_state = 42}, - [4378] = {.lex_state = 40}, - [4379] = {.lex_state = 42}, - [4380] = {.lex_state = 40}, - [4381] = {.lex_state = 61}, - [4382] = {.lex_state = 40}, - [4383] = {.lex_state = 40}, - [4384] = {.lex_state = 42}, - [4385] = {.lex_state = 40}, - [4386] = {.lex_state = 42}, - [4387] = {.lex_state = 67}, - [4388] = {.lex_state = 67}, - [4389] = {.lex_state = 42}, - [4390] = {.lex_state = 40}, - [4391] = {.lex_state = 42}, - [4392] = {.lex_state = 71}, - [4393] = {.lex_state = 42}, - [4394] = {.lex_state = 40}, - [4395] = {.lex_state = 42}, - [4396] = {.lex_state = 71}, - [4397] = {.lex_state = 42}, - [4398] = {.lex_state = 42}, - [4399] = {.lex_state = 40}, - [4400] = {.lex_state = 40}, - [4401] = {.lex_state = 40}, - [4402] = {.lex_state = 42}, - [4403] = {.lex_state = 42}, - [4404] = {.lex_state = 41}, - [4405] = {.lex_state = 42}, - [4406] = {.lex_state = 40}, - [4407] = {.lex_state = 74}, - [4408] = {.lex_state = 42}, - [4409] = {.lex_state = 74}, - [4410] = {.lex_state = 40}, - [4411] = {.lex_state = 42}, - [4412] = {.lex_state = 42}, - [4413] = {.lex_state = 40}, - [4414] = {.lex_state = 42}, - [4415] = {.lex_state = 42}, - [4416] = {.lex_state = 40}, - [4417] = {.lex_state = 42}, - [4418] = {.lex_state = 40}, - [4419] = {.lex_state = 40}, - [4420] = {.lex_state = 40}, - [4421] = {.lex_state = 40}, - [4422] = {.lex_state = 42}, - [4423] = {.lex_state = 74}, - [4424] = {.lex_state = 48}, - [4425] = {.lex_state = 42}, - [4426] = {.lex_state = 61}, - [4427] = {.lex_state = 40}, - [4428] = {.lex_state = 42}, - [4429] = {.lex_state = 40}, - [4430] = {.lex_state = 40}, - [4431] = {.lex_state = 42}, - [4432] = {.lex_state = 42}, - [4433] = {.lex_state = 67}, - [4434] = {.lex_state = 40}, - [4435] = {.lex_state = 40}, - [4436] = {.lex_state = 42}, - [4437] = {.lex_state = 48}, - [4438] = {.lex_state = 42}, - [4439] = {.lex_state = 42}, - [4440] = {.lex_state = 42}, - [4441] = {.lex_state = 40}, - [4442] = {.lex_state = 40}, - [4443] = {.lex_state = 42}, - [4444] = {.lex_state = 42}, - [4445] = {.lex_state = 40}, - [4446] = {.lex_state = 48}, - [4447] = {.lex_state = 40}, - [4448] = {.lex_state = 40}, - [4449] = {.lex_state = 40}, - [4450] = {.lex_state = 40}, - [4451] = {.lex_state = 40}, - [4452] = {.lex_state = 42}, - [4453] = {.lex_state = 42}, - [4454] = {.lex_state = 42}, - [4455] = {.lex_state = 40}, - [4456] = {.lex_state = 42}, - [4457] = {.lex_state = 40}, - [4458] = {.lex_state = 40}, - [4459] = {.lex_state = 40}, - [4460] = {.lex_state = 42}, - [4461] = {.lex_state = 40}, - [4462] = {.lex_state = 71}, - [4463] = {.lex_state = 40}, - [4464] = {.lex_state = 40}, - [4465] = {.lex_state = 42}, - [4466] = {.lex_state = 40}, - [4467] = {.lex_state = 42}, + [4371] = {.lex_state = 42}, + [4372] = {.lex_state = 5}, + [4373] = {.lex_state = 5}, + [4374] = {.lex_state = 5}, + [4375] = {.lex_state = 5}, + [4376] = {.lex_state = 5}, + [4377] = {.lex_state = 5}, + [4378] = {.lex_state = 5}, + [4379] = {.lex_state = 5}, + [4380] = {.lex_state = 5}, + [4381] = {.lex_state = 5}, + [4382] = {.lex_state = 5}, + [4383] = {.lex_state = 5}, + [4384] = {.lex_state = 5}, + [4385] = {.lex_state = 5}, + [4386] = {.lex_state = 5}, + [4387] = {.lex_state = 5}, + [4388] = {.lex_state = 5}, + [4389] = {.lex_state = 5}, + [4390] = {.lex_state = 5}, + [4391] = {.lex_state = 5}, + [4392] = {.lex_state = 5}, + [4393] = {.lex_state = 5}, + [4394] = {.lex_state = 5}, + [4395] = {.lex_state = 5}, + [4396] = {.lex_state = 5}, + [4397] = {.lex_state = 5}, + [4398] = {.lex_state = 5}, + [4399] = {.lex_state = 5}, + [4400] = {.lex_state = 5}, + [4401] = {.lex_state = 5}, + [4402] = {.lex_state = 5}, + [4403] = {.lex_state = 5}, + [4404] = {.lex_state = 5}, + [4405] = {.lex_state = 5}, + [4406] = {.lex_state = 5}, + [4407] = {.lex_state = 5}, + [4408] = {.lex_state = 5}, + [4409] = {.lex_state = 5}, + [4410] = {.lex_state = 5}, + [4411] = {.lex_state = 5}, + [4412] = {.lex_state = 5}, + [4413] = {.lex_state = 5}, + [4414] = {.lex_state = 5}, + [4415] = {.lex_state = 5}, + [4416] = {.lex_state = 5}, + [4417] = {.lex_state = 5}, + [4418] = {.lex_state = 5}, + [4419] = {.lex_state = 5}, + [4420] = {.lex_state = 5}, + [4421] = {.lex_state = 5}, + [4422] = {.lex_state = 5}, + [4423] = {.lex_state = 5}, + [4424] = {.lex_state = 5}, + [4425] = {.lex_state = 5}, + [4426] = {.lex_state = 5}, + [4427] = {.lex_state = 5}, + [4428] = {.lex_state = 5}, + [4429] = {.lex_state = 5}, + [4430] = {.lex_state = 5}, + [4431] = {.lex_state = 5}, + [4432] = {.lex_state = 5}, + [4433] = {.lex_state = 5}, + [4434] = {.lex_state = 5}, + [4435] = {.lex_state = 5}, + [4436] = {.lex_state = 5}, + [4437] = {.lex_state = 5}, + [4438] = {.lex_state = 5}, + [4439] = {.lex_state = 5}, + [4440] = {.lex_state = 5}, + [4441] = {.lex_state = 5}, + [4442] = {.lex_state = 5}, + [4443] = {.lex_state = 5}, + [4444] = {.lex_state = 5}, + [4445] = {.lex_state = 5}, + [4446] = {.lex_state = 5}, + [4447] = {.lex_state = 5}, + [4448] = {.lex_state = 5}, + [4449] = {.lex_state = 5}, + [4450] = {.lex_state = 5}, + [4451] = {.lex_state = 5}, + [4452] = {.lex_state = 5}, + [4453] = {.lex_state = 5}, + [4454] = {.lex_state = 5}, + [4455] = {.lex_state = 5}, + [4456] = {.lex_state = 5}, + [4457] = {.lex_state = 5}, + [4458] = {.lex_state = 5}, + [4459] = {.lex_state = 5}, + [4460] = {.lex_state = 5}, + [4461] = {.lex_state = 5}, + [4462] = {.lex_state = 5}, + [4463] = {.lex_state = 5}, + [4464] = {.lex_state = 5}, + [4465] = {.lex_state = 5}, + [4466] = {.lex_state = 5}, + [4467] = {.lex_state = 5}, [4468] = {.lex_state = 42}, - [4469] = {.lex_state = 42}, - [4470] = {.lex_state = 42}, - [4471] = {.lex_state = 40}, - [4472] = {.lex_state = 40}, - [4473] = {.lex_state = 40}, - [4474] = {.lex_state = 42}, - [4475] = {.lex_state = 40}, - [4476] = {.lex_state = 42}, - [4477] = {.lex_state = 42}, - [4478] = {.lex_state = 40}, + [4469] = {.lex_state = 5}, + [4470] = {.lex_state = 5}, + [4471] = {.lex_state = 5}, + [4472] = {.lex_state = 43}, + [4473] = {.lex_state = 5}, + [4474] = {.lex_state = 5}, + [4475] = {.lex_state = 5}, + [4476] = {.lex_state = 5}, + [4477] = {.lex_state = 5}, + [4478] = {.lex_state = 5}, [4479] = {.lex_state = 5}, [4480] = {.lex_state = 5}, [4481] = {.lex_state = 5}, @@ -23468,7 +23110,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4518] = {.lex_state = 5}, [4519] = {.lex_state = 5}, [4520] = {.lex_state = 5}, - [4521] = {.lex_state = 5}, + [4521] = {.lex_state = 42}, [4522] = {.lex_state = 5}, [4523] = {.lex_state = 5}, [4524] = {.lex_state = 5}, @@ -23490,7 +23132,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4540] = {.lex_state = 5}, [4541] = {.lex_state = 5}, [4542] = {.lex_state = 5}, - [4543] = {.lex_state = 5}, + [4543] = {.lex_state = 40}, [4544] = {.lex_state = 5}, [4545] = {.lex_state = 5}, [4546] = {.lex_state = 5}, @@ -23508,7 +23150,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4558] = {.lex_state = 5}, [4559] = {.lex_state = 5}, [4560] = {.lex_state = 5}, - [4561] = {.lex_state = 42}, + [4561] = {.lex_state = 5}, [4562] = {.lex_state = 5}, [4563] = {.lex_state = 5}, [4564] = {.lex_state = 5}, @@ -23599,7 +23241,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4649] = {.lex_state = 5}, [4650] = {.lex_state = 5}, [4651] = {.lex_state = 5}, - [4652] = {.lex_state = 42}, + [4652] = {.lex_state = 5}, [4653] = {.lex_state = 5}, [4654] = {.lex_state = 5}, [4655] = {.lex_state = 5}, @@ -23908,7 +23550,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4958] = {.lex_state = 5}, [4959] = {.lex_state = 5}, [4960] = {.lex_state = 5}, - [4961] = {.lex_state = 5}, + [4961] = {.lex_state = 41}, [4962] = {.lex_state = 5}, [4963] = {.lex_state = 5}, [4964] = {.lex_state = 5}, @@ -23996,7 +23638,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5046] = {.lex_state = 5}, [5047] = {.lex_state = 5}, [5048] = {.lex_state = 5}, - [5049] = {.lex_state = 41}, + [5049] = {.lex_state = 5}, [5050] = {.lex_state = 5}, [5051] = {.lex_state = 5}, [5052] = {.lex_state = 5}, @@ -24114,7 +23756,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5164] = {.lex_state = 5}, [5165] = {.lex_state = 5}, [5166] = {.lex_state = 5}, - [5167] = {.lex_state = 5}, + [5167] = {.lex_state = 42}, [5168] = {.lex_state = 5}, [5169] = {.lex_state = 5}, [5170] = {.lex_state = 5}, @@ -24187,7 +23829,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5237] = {.lex_state = 5}, [5238] = {.lex_state = 5}, [5239] = {.lex_state = 5}, - [5240] = {.lex_state = 5}, + [5240] = {.lex_state = 43}, [5241] = {.lex_state = 5}, [5242] = {.lex_state = 5}, [5243] = {.lex_state = 5}, @@ -24202,7 +23844,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5252] = {.lex_state = 5}, [5253] = {.lex_state = 5}, [5254] = {.lex_state = 5}, - [5255] = {.lex_state = 42}, + [5255] = {.lex_state = 5}, [5256] = {.lex_state = 5}, [5257] = {.lex_state = 5}, [5258] = {.lex_state = 5}, @@ -24243,31 +23885,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5293] = {.lex_state = 5}, [5294] = {.lex_state = 5}, [5295] = {.lex_state = 5}, - [5296] = {.lex_state = 5}, + [5296] = {.lex_state = 43}, [5297] = {.lex_state = 5}, - [5298] = {.lex_state = 5}, + [5298] = {.lex_state = 43}, [5299] = {.lex_state = 5}, - [5300] = {.lex_state = 5}, + [5300] = {.lex_state = 43}, [5301] = {.lex_state = 5}, - [5302] = {.lex_state = 5}, - [5303] = {.lex_state = 5}, + [5302] = {.lex_state = 43}, + [5303] = {.lex_state = 40}, [5304] = {.lex_state = 5}, [5305] = {.lex_state = 5}, [5306] = {.lex_state = 5}, - [5307] = {.lex_state = 5}, + [5307] = {.lex_state = 43}, [5308] = {.lex_state = 5}, [5309] = {.lex_state = 5}, [5310] = {.lex_state = 5}, [5311] = {.lex_state = 5}, [5312] = {.lex_state = 5}, - [5313] = {.lex_state = 5}, - [5314] = {.lex_state = 5}, + [5313] = {.lex_state = 43}, + [5314] = {.lex_state = 43}, [5315] = {.lex_state = 5}, [5316] = {.lex_state = 5}, - [5317] = {.lex_state = 5}, + [5317] = {.lex_state = 43}, [5318] = {.lex_state = 5}, - [5319] = {.lex_state = 5}, - [5320] = {.lex_state = 5}, + [5319] = {.lex_state = 43}, + [5320] = {.lex_state = 43}, [5321] = {.lex_state = 5}, [5322] = {.lex_state = 5}, [5323] = {.lex_state = 5}, @@ -24275,28 +23917,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5325] = {.lex_state = 5}, [5326] = {.lex_state = 5}, [5327] = {.lex_state = 5}, - [5328] = {.lex_state = 5}, - [5329] = {.lex_state = 43}, - [5330] = {.lex_state = 5}, + [5328] = {.lex_state = 43}, + [5329] = {.lex_state = 5}, + [5330] = {.lex_state = 43}, [5331] = {.lex_state = 5}, [5332] = {.lex_state = 5}, [5333] = {.lex_state = 5}, [5334] = {.lex_state = 5}, - [5335] = {.lex_state = 5}, + [5335] = {.lex_state = 40}, [5336] = {.lex_state = 5}, - [5337] = {.lex_state = 5}, + [5337] = {.lex_state = 43}, [5338] = {.lex_state = 5}, - [5339] = {.lex_state = 5}, + [5339] = {.lex_state = 43}, [5340] = {.lex_state = 5}, [5341] = {.lex_state = 5}, - [5342] = {.lex_state = 5}, - [5343] = {.lex_state = 5}, - [5344] = {.lex_state = 5}, + [5342] = {.lex_state = 43}, + [5343] = {.lex_state = 43}, + [5344] = {.lex_state = 41}, [5345] = {.lex_state = 5}, [5346] = {.lex_state = 5}, - [5347] = {.lex_state = 5}, + [5347] = {.lex_state = 43}, [5348] = {.lex_state = 5}, - [5349] = {.lex_state = 5}, + [5349] = {.lex_state = 43}, [5350] = {.lex_state = 5}, [5351] = {.lex_state = 5}, [5352] = {.lex_state = 5}, @@ -24306,1536 +23948,1393 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5356] = {.lex_state = 5}, [5357] = {.lex_state = 5}, [5358] = {.lex_state = 5}, - [5359] = {.lex_state = 5}, + [5359] = {.lex_state = 43}, [5360] = {.lex_state = 5}, [5361] = {.lex_state = 5}, [5362] = {.lex_state = 5}, [5363] = {.lex_state = 5}, [5364] = {.lex_state = 5}, - [5365] = {.lex_state = 5}, + [5365] = {.lex_state = 43}, [5366] = {.lex_state = 5}, - [5367] = {.lex_state = 5}, + [5367] = {.lex_state = 43}, [5368] = {.lex_state = 5}, - [5369] = {.lex_state = 5}, + [5369] = {.lex_state = 43}, [5370] = {.lex_state = 5}, [5371] = {.lex_state = 5}, [5372] = {.lex_state = 5}, [5373] = {.lex_state = 5}, [5374] = {.lex_state = 5}, - [5375] = {.lex_state = 5}, + [5375] = {.lex_state = 43}, [5376] = {.lex_state = 5}, [5377] = {.lex_state = 5}, [5378] = {.lex_state = 5}, - [5379] = {.lex_state = 5}, + [5379] = {.lex_state = 43}, [5380] = {.lex_state = 5}, [5381] = {.lex_state = 5}, [5382] = {.lex_state = 5}, [5383] = {.lex_state = 5}, - [5384] = {.lex_state = 5}, - [5385] = {.lex_state = 5}, + [5384] = {.lex_state = 41}, + [5385] = {.lex_state = 43}, [5386] = {.lex_state = 5}, - [5387] = {.lex_state = 5}, + [5387] = {.lex_state = 41}, [5388] = {.lex_state = 5}, [5389] = {.lex_state = 5}, - [5390] = {.lex_state = 5}, + [5390] = {.lex_state = 43}, [5391] = {.lex_state = 5}, [5392] = {.lex_state = 5}, [5393] = {.lex_state = 5}, [5394] = {.lex_state = 5}, - [5395] = {.lex_state = 40}, - [5396] = {.lex_state = 43}, - [5397] = {.lex_state = 5}, + [5395] = {.lex_state = 5}, + [5396] = {.lex_state = 5}, + [5397] = {.lex_state = 43}, [5398] = {.lex_state = 5}, - [5399] = {.lex_state = 43}, - [5400] = {.lex_state = 5}, - [5401] = {.lex_state = 43}, - [5402] = {.lex_state = 5}, + [5399] = {.lex_state = 5}, + [5400] = {.lex_state = 43}, + [5401] = {.lex_state = 5}, + [5402] = {.lex_state = 43}, [5403] = {.lex_state = 5}, [5404] = {.lex_state = 5}, [5405] = {.lex_state = 5}, - [5406] = {.lex_state = 5}, + [5406] = {.lex_state = 43}, [5407] = {.lex_state = 5}, - [5408] = {.lex_state = 43}, - [5409] = {.lex_state = 5}, - [5410] = {.lex_state = 43}, + [5408] = {.lex_state = 5}, + [5409] = {.lex_state = 40}, + [5410] = {.lex_state = 5}, [5411] = {.lex_state = 5}, [5412] = {.lex_state = 5}, [5413] = {.lex_state = 5}, [5414] = {.lex_state = 5}, - [5415] = {.lex_state = 43}, - [5416] = {.lex_state = 5}, + [5415] = {.lex_state = 5}, + [5416] = {.lex_state = 43}, [5417] = {.lex_state = 5}, - [5418] = {.lex_state = 43}, + [5418] = {.lex_state = 5}, [5419] = {.lex_state = 5}, - [5420] = {.lex_state = 5}, - [5421] = {.lex_state = 5}, + [5420] = {.lex_state = 43}, + [5421] = {.lex_state = 43}, [5422] = {.lex_state = 5}, [5423] = {.lex_state = 5}, - [5424] = {.lex_state = 43}, - [5425] = {.lex_state = 5}, + [5424] = {.lex_state = 5}, + [5425] = {.lex_state = 43}, [5426] = {.lex_state = 5}, [5427] = {.lex_state = 5}, - [5428] = {.lex_state = 43}, + [5428] = {.lex_state = 5}, [5429] = {.lex_state = 5}, [5430] = {.lex_state = 43}, [5431] = {.lex_state = 5}, - [5432] = {.lex_state = 41}, + [5432] = {.lex_state = 5}, [5433] = {.lex_state = 5}, [5434] = {.lex_state = 5}, [5435] = {.lex_state = 5}, - [5436] = {.lex_state = 43}, - [5437] = {.lex_state = 5}, - [5438] = {.lex_state = 41}, + [5436] = {.lex_state = 5}, + [5437] = {.lex_state = 43}, + [5438] = {.lex_state = 5}, [5439] = {.lex_state = 43}, [5440] = {.lex_state = 5}, [5441] = {.lex_state = 5}, [5442] = {.lex_state = 5}, - [5443] = {.lex_state = 43}, - [5444] = {.lex_state = 5}, - [5445] = {.lex_state = 5}, - [5446] = {.lex_state = 5}, - [5447] = {.lex_state = 43}, - [5448] = {.lex_state = 5}, - [5449] = {.lex_state = 43}, - [5450] = {.lex_state = 5}, - [5451] = {.lex_state = 43}, - [5452] = {.lex_state = 5}, - [5453] = {.lex_state = 5}, - [5454] = {.lex_state = 5}, - [5455] = {.lex_state = 5}, - [5456] = {.lex_state = 43}, - [5457] = {.lex_state = 5}, - [5458] = {.lex_state = 5}, - [5459] = {.lex_state = 5}, - [5460] = {.lex_state = 5}, - [5461] = {.lex_state = 5}, - [5462] = {.lex_state = 5}, + [5443] = {.lex_state = 87}, + [5444] = {.lex_state = 73}, + [5445] = {.lex_state = 90}, + [5446] = {.lex_state = 92}, + [5447] = {.lex_state = 66}, + [5448] = {.lex_state = 78}, + [5449] = {.lex_state = 86}, + [5450] = {.lex_state = 89}, + [5451] = {.lex_state = 64}, + [5452] = {.lex_state = 77}, + [5453] = {.lex_state = 79}, + [5454] = {.lex_state = 61}, + [5455] = {.lex_state = 81}, + [5456] = {.lex_state = 83}, + [5457] = {.lex_state = 0}, + [5458] = {.lex_state = 0}, + [5459] = {.lex_state = 85}, + [5460] = {.lex_state = 87}, + [5461] = {.lex_state = 88}, + [5462] = {.lex_state = 43}, [5463] = {.lex_state = 43}, - [5464] = {.lex_state = 5}, - [5465] = {.lex_state = 41}, - [5466] = {.lex_state = 5}, - [5467] = {.lex_state = 5}, - [5468] = {.lex_state = 5}, - [5469] = {.lex_state = 5}, - [5470] = {.lex_state = 5}, - [5471] = {.lex_state = 43}, - [5472] = {.lex_state = 5}, - [5473] = {.lex_state = 43}, - [5474] = {.lex_state = 5}, - [5475] = {.lex_state = 43}, - [5476] = {.lex_state = 5}, - [5477] = {.lex_state = 5}, - [5478] = {.lex_state = 5}, - [5479] = {.lex_state = 5}, - [5480] = {.lex_state = 43}, - [5481] = {.lex_state = 5}, - [5482] = {.lex_state = 43}, - [5483] = {.lex_state = 5}, - [5484] = {.lex_state = 5}, - [5485] = {.lex_state = 43}, - [5486] = {.lex_state = 5}, - [5487] = {.lex_state = 5}, - [5488] = {.lex_state = 5}, - [5489] = {.lex_state = 5}, - [5490] = {.lex_state = 5}, - [5491] = {.lex_state = 5}, - [5492] = {.lex_state = 5}, - [5493] = {.lex_state = 43}, - [5494] = {.lex_state = 5}, - [5495] = {.lex_state = 43}, - [5496] = {.lex_state = 5}, - [5497] = {.lex_state = 5}, - [5498] = {.lex_state = 5}, - [5499] = {.lex_state = 5}, - [5500] = {.lex_state = 43}, - [5501] = {.lex_state = 5}, - [5502] = {.lex_state = 5}, - [5503] = {.lex_state = 5}, - [5504] = {.lex_state = 5}, - [5505] = {.lex_state = 43}, - [5506] = {.lex_state = 5}, - [5507] = {.lex_state = 43}, - [5508] = {.lex_state = 5}, - [5509] = {.lex_state = 5}, - [5510] = {.lex_state = 43}, - [5511] = {.lex_state = 5}, - [5512] = {.lex_state = 5}, - [5513] = {.lex_state = 40}, - [5514] = {.lex_state = 5}, - [5515] = {.lex_state = 43}, - [5516] = {.lex_state = 5}, - [5517] = {.lex_state = 5}, - [5518] = {.lex_state = 5}, - [5519] = {.lex_state = 43}, - [5520] = {.lex_state = 43}, - [5521] = {.lex_state = 5}, - [5522] = {.lex_state = 40}, - [5523] = {.lex_state = 5}, - [5524] = {.lex_state = 5}, + [5464] = {.lex_state = 43}, + [5465] = {.lex_state = 88}, + [5466] = {.lex_state = 43}, + [5467] = {.lex_state = 87}, + [5468] = {.lex_state = 85}, + [5469] = {.lex_state = 83}, + [5470] = {.lex_state = 81}, + [5471] = {.lex_state = 61}, + [5472] = {.lex_state = 79}, + [5473] = {.lex_state = 77}, + [5474] = {.lex_state = 64}, + [5475] = {.lex_state = 89}, + [5476] = {.lex_state = 0}, + [5477] = {.lex_state = 0}, + [5478] = {.lex_state = 4}, + [5479] = {.lex_state = 73}, + [5480] = {.lex_state = 59}, + [5481] = {.lex_state = 86}, + [5482] = {.lex_state = 59}, + [5483] = {.lex_state = 67}, + [5484] = {.lex_state = 91}, + [5485] = {.lex_state = 75}, + [5486] = {.lex_state = 70}, + [5487] = {.lex_state = 74}, + [5488] = {.lex_state = 72}, + [5489] = {.lex_state = 80}, + [5490] = {.lex_state = 84}, + [5491] = {.lex_state = 54}, + [5492] = {.lex_state = 69}, + [5493] = {.lex_state = 78}, + [5494] = {.lex_state = 82}, + [5495] = {.lex_state = 74}, + [5496] = {.lex_state = 74}, + [5497] = {.lex_state = 76}, + [5498] = {.lex_state = 66}, + [5499] = {.lex_state = 90}, + [5500] = {.lex_state = 92}, + [5501] = {.lex_state = 66}, + [5502] = {.lex_state = 78}, + [5503] = {.lex_state = 86}, + [5504] = {.lex_state = 76}, + [5505] = {.lex_state = 89}, + [5506] = {.lex_state = 64}, + [5507] = {.lex_state = 77}, + [5508] = {.lex_state = 79}, + [5509] = {.lex_state = 61}, + [5510] = {.lex_state = 81}, + [5511] = {.lex_state = 83}, + [5512] = {.lex_state = 92}, + [5513] = {.lex_state = 90}, + [5514] = {.lex_state = 76}, + [5515] = {.lex_state = 74}, + [5516] = {.lex_state = 85}, + [5517] = {.lex_state = 87}, + [5518] = {.lex_state = 88}, + [5519] = {.lex_state = 74}, + [5520] = {.lex_state = 74}, + [5521] = {.lex_state = 74}, + [5522] = {.lex_state = 82}, + [5523] = {.lex_state = 73}, + [5524] = {.lex_state = 69}, [5525] = {.lex_state = 43}, - [5526] = {.lex_state = 43}, - [5527] = {.lex_state = 5}, - [5528] = {.lex_state = 5}, - [5529] = {.lex_state = 43}, - [5530] = {.lex_state = 5}, - [5531] = {.lex_state = 5}, - [5532] = {.lex_state = 5}, - [5533] = {.lex_state = 43}, - [5534] = {.lex_state = 5}, - [5535] = {.lex_state = 5}, - [5536] = {.lex_state = 5}, - [5537] = {.lex_state = 5}, - [5538] = {.lex_state = 5}, - [5539] = {.lex_state = 5}, - [5540] = {.lex_state = 5}, - [5541] = {.lex_state = 5}, - [5542] = {.lex_state = 5}, - [5543] = {.lex_state = 5}, - [5544] = {.lex_state = 40}, - [5545] = {.lex_state = 5}, - [5546] = {.lex_state = 5}, - [5547] = {.lex_state = 43}, - [5548] = {.lex_state = 5}, - [5549] = {.lex_state = 5}, - [5550] = {.lex_state = 78}, - [5551] = {.lex_state = 73}, - [5552] = {.lex_state = 60}, - [5553] = {.lex_state = 56}, - [5554] = {.lex_state = 66}, - [5555] = {.lex_state = 88}, - [5556] = {.lex_state = 65}, + [5526] = {.lex_state = 54}, + [5527] = {.lex_state = 82}, + [5528] = {.lex_state = 69}, + [5529] = {.lex_state = 54}, + [5530] = {.lex_state = 84}, + [5531] = {.lex_state = 43}, + [5532] = {.lex_state = 84}, + [5533] = {.lex_state = 80}, + [5534] = {.lex_state = 72}, + [5535] = {.lex_state = 80}, + [5536] = {.lex_state = 74}, + [5537] = {.lex_state = 70}, + [5538] = {.lex_state = 72}, + [5539] = {.lex_state = 74}, + [5540] = {.lex_state = 70}, + [5541] = {.lex_state = 75}, + [5542] = {.lex_state = 75}, + [5543] = {.lex_state = 91}, + [5544] = {.lex_state = 67}, + [5545] = {.lex_state = 59}, + [5546] = {.lex_state = 0}, + [5547] = {.lex_state = 0}, + [5548] = {.lex_state = 91}, + [5549] = {.lex_state = 4}, + [5550] = {.lex_state = 73}, + [5551] = {.lex_state = 67}, + [5552] = {.lex_state = 61}, + [5553] = {.lex_state = 59}, + [5554] = {.lex_state = 67}, + [5555] = {.lex_state = 91}, + [5556] = {.lex_state = 75}, [5557] = {.lex_state = 70}, - [5558] = {.lex_state = 75}, - [5559] = {.lex_state = 77}, - [5560] = {.lex_state = 81}, - [5561] = {.lex_state = 83}, - [5562] = {.lex_state = 79}, - [5563] = {.lex_state = 72}, - [5564] = {.lex_state = 88}, - [5565] = {.lex_state = 84}, - [5566] = {.lex_state = 75}, - [5567] = {.lex_state = 75}, - [5568] = {.lex_state = 64}, - [5569] = {.lex_state = 86}, + [5558] = {.lex_state = 74}, + [5559] = {.lex_state = 72}, + [5560] = {.lex_state = 80}, + [5561] = {.lex_state = 84}, + [5562] = {.lex_state = 54}, + [5563] = {.lex_state = 69}, + [5564] = {.lex_state = 85}, + [5565] = {.lex_state = 82}, + [5566] = {.lex_state = 74}, + [5567] = {.lex_state = 74}, + [5568] = {.lex_state = 76}, + [5569] = {.lex_state = 4}, [5570] = {.lex_state = 90}, - [5571] = {.lex_state = 89}, - [5572] = {.lex_state = 68}, - [5573] = {.lex_state = 85}, + [5571] = {.lex_state = 92}, + [5572] = {.lex_state = 66}, + [5573] = {.lex_state = 78}, [5574] = {.lex_state = 86}, - [5575] = {.lex_state = 56}, - [5576] = {.lex_state = 60}, - [5577] = {.lex_state = 91}, - [5578] = {.lex_state = 87}, - [5579] = {.lex_state = 73}, - [5580] = {.lex_state = 62}, - [5581] = {.lex_state = 76}, - [5582] = {.lex_state = 78}, - [5583] = {.lex_state = 64}, - [5584] = {.lex_state = 68}, - [5585] = {.lex_state = 89}, - [5586] = {.lex_state = 90}, - [5587] = {.lex_state = 69}, - [5588] = {.lex_state = 80}, - [5589] = {.lex_state = 82}, - [5590] = {.lex_state = 86}, - [5591] = {.lex_state = 43}, - [5592] = {.lex_state = 73}, - [5593] = {.lex_state = 43}, - [5594] = {.lex_state = 75}, - [5595] = {.lex_state = 43}, - [5596] = {.lex_state = 75}, - [5597] = {.lex_state = 54}, - [5598] = {.lex_state = 84}, - [5599] = {.lex_state = 72}, - [5600] = {.lex_state = 79}, - [5601] = {.lex_state = 43}, - [5602] = {.lex_state = 83}, - [5603] = {.lex_state = 4}, - [5604] = {.lex_state = 0}, - [5605] = {.lex_state = 0}, - [5606] = {.lex_state = 0}, - [5607] = {.lex_state = 81}, - [5608] = {.lex_state = 77}, - [5609] = {.lex_state = 75}, - [5610] = {.lex_state = 76}, - [5611] = {.lex_state = 70}, - [5612] = {.lex_state = 65}, - [5613] = {.lex_state = 88}, - [5614] = {.lex_state = 66}, - [5615] = {.lex_state = 0}, - [5616] = {.lex_state = 0}, - [5617] = {.lex_state = 0}, - [5618] = {.lex_state = 78}, - [5619] = {.lex_state = 4}, - [5620] = {.lex_state = 54}, - [5621] = {.lex_state = 0}, - [5622] = {.lex_state = 56}, - [5623] = {.lex_state = 66}, - [5624] = {.lex_state = 88}, - [5625] = {.lex_state = 65}, - [5626] = {.lex_state = 70}, - [5627] = {.lex_state = 75}, - [5628] = {.lex_state = 77}, - [5629] = {.lex_state = 81}, - [5630] = {.lex_state = 83}, - [5631] = {.lex_state = 79}, - [5632] = {.lex_state = 72}, - [5633] = {.lex_state = 69}, - [5634] = {.lex_state = 84}, - [5635] = {.lex_state = 75}, - [5636] = {.lex_state = 75}, - [5637] = {.lex_state = 64}, - [5638] = {.lex_state = 56}, - [5639] = {.lex_state = 90}, - [5640] = {.lex_state = 89}, - [5641] = {.lex_state = 68}, - [5642] = {.lex_state = 85}, - [5643] = {.lex_state = 86}, - [5644] = {.lex_state = 80}, - [5645] = {.lex_state = 60}, - [5646] = {.lex_state = 91}, - [5647] = {.lex_state = 87}, - [5648] = {.lex_state = 73}, - [5649] = {.lex_state = 62}, - [5650] = {.lex_state = 76}, - [5651] = {.lex_state = 78}, - [5652] = {.lex_state = 82}, - [5653] = {.lex_state = 54}, - [5654] = {.lex_state = 4}, - [5655] = {.lex_state = 73}, - [5656] = {.lex_state = 69}, - [5657] = {.lex_state = 80}, - [5658] = {.lex_state = 82}, - [5659] = {.lex_state = 54}, - [5660] = {.lex_state = 43}, - [5661] = {.lex_state = 43}, - [5662] = {.lex_state = 0}, - [5663] = {.lex_state = 43}, - [5664] = {.lex_state = 0}, - [5665] = {.lex_state = 43}, - [5666] = {.lex_state = 43}, - [5667] = {.lex_state = 82}, - [5668] = {.lex_state = 4}, - [5669] = {.lex_state = 0}, - [5670] = {.lex_state = 0}, + [5575] = {.lex_state = 64}, + [5576] = {.lex_state = 89}, + [5577] = {.lex_state = 64}, + [5578] = {.lex_state = 77}, + [5579] = {.lex_state = 79}, + [5580] = {.lex_state = 61}, + [5581] = {.lex_state = 81}, + [5582] = {.lex_state = 83}, + [5583] = {.lex_state = 59}, + [5584] = {.lex_state = 0}, + [5585] = {.lex_state = 0}, + [5586] = {.lex_state = 73}, + [5587] = {.lex_state = 85}, + [5588] = {.lex_state = 87}, + [5589] = {.lex_state = 88}, + [5590] = {.lex_state = 4}, + [5591] = {.lex_state = 0}, + [5592] = {.lex_state = 0}, + [5593] = {.lex_state = 88}, + [5594] = {.lex_state = 67}, + [5595] = {.lex_state = 87}, + [5596] = {.lex_state = 43}, + [5597] = {.lex_state = 85}, + [5598] = {.lex_state = 91}, + [5599] = {.lex_state = 75}, + [5600] = {.lex_state = 43}, + [5601] = {.lex_state = 70}, + [5602] = {.lex_state = 43}, + [5603] = {.lex_state = 43}, + [5604] = {.lex_state = 74}, + [5605] = {.lex_state = 72}, + [5606] = {.lex_state = 80}, + [5607] = {.lex_state = 84}, + [5608] = {.lex_state = 43}, + [5609] = {.lex_state = 54}, + [5610] = {.lex_state = 69}, + [5611] = {.lex_state = 82}, + [5612] = {.lex_state = 74}, + [5613] = {.lex_state = 74}, + [5614] = {.lex_state = 43}, + [5615] = {.lex_state = 4}, + [5616] = {.lex_state = 76}, + [5617] = {.lex_state = 90}, + [5618] = {.lex_state = 92}, + [5619] = {.lex_state = 88}, + [5620] = {.lex_state = 87}, + [5621] = {.lex_state = 85}, + [5622] = {.lex_state = 66}, + [5623] = {.lex_state = 78}, + [5624] = {.lex_state = 86}, + [5625] = {.lex_state = 83}, + [5626] = {.lex_state = 81}, + [5627] = {.lex_state = 61}, + [5628] = {.lex_state = 79}, + [5629] = {.lex_state = 77}, + [5630] = {.lex_state = 64}, + [5631] = {.lex_state = 89}, + [5632] = {.lex_state = 86}, + [5633] = {.lex_state = 78}, + [5634] = {.lex_state = 66}, + [5635] = {.lex_state = 92}, + [5636] = {.lex_state = 90}, + [5637] = {.lex_state = 89}, + [5638] = {.lex_state = 76}, + [5639] = {.lex_state = 74}, + [5640] = {.lex_state = 74}, + [5641] = {.lex_state = 82}, + [5642] = {.lex_state = 61}, + [5643] = {.lex_state = 69}, + [5644] = {.lex_state = 54}, + [5645] = {.lex_state = 84}, + [5646] = {.lex_state = 80}, + [5647] = {.lex_state = 72}, + [5648] = {.lex_state = 74}, + [5649] = {.lex_state = 70}, + [5650] = {.lex_state = 75}, + [5651] = {.lex_state = 91}, + [5652] = {.lex_state = 67}, + [5653] = {.lex_state = 59}, + [5654] = {.lex_state = 73}, + [5655] = {.lex_state = 4}, + [5656] = {.lex_state = 0}, + [5657] = {.lex_state = 0}, + [5658] = {.lex_state = 77}, + [5659] = {.lex_state = 88}, + [5660] = {.lex_state = 83}, + [5661] = {.lex_state = 81}, + [5662] = {.lex_state = 79}, + [5663] = {.lex_state = 61}, + [5664] = {.lex_state = 81}, + [5665] = {.lex_state = 83}, + [5666] = {.lex_state = 85}, + [5667] = {.lex_state = 87}, + [5668] = {.lex_state = 88}, + [5669] = {.lex_state = 43}, + [5670] = {.lex_state = 43}, [5671] = {.lex_state = 43}, - [5672] = {.lex_state = 80}, - [5673] = {.lex_state = 69}, - [5674] = {.lex_state = 65}, - [5675] = {.lex_state = 0}, - [5676] = {.lex_state = 0}, + [5672] = {.lex_state = 43}, + [5673] = {.lex_state = 0}, + [5674] = {.lex_state = 88}, + [5675] = {.lex_state = 87}, + [5676] = {.lex_state = 85}, [5677] = {.lex_state = 0}, - [5678] = {.lex_state = 0}, - [5679] = {.lex_state = 78}, + [5678] = {.lex_state = 4}, + [5679] = {.lex_state = 83}, [5680] = {.lex_state = 87}, - [5681] = {.lex_state = 43}, - [5682] = {.lex_state = 76}, - [5683] = {.lex_state = 62}, - [5684] = {.lex_state = 73}, - [5685] = {.lex_state = 87}, - [5686] = {.lex_state = 91}, - [5687] = {.lex_state = 0}, - [5688] = {.lex_state = 0}, - [5689] = {.lex_state = 0}, - [5690] = {.lex_state = 60}, - [5691] = {.lex_state = 4}, - [5692] = {.lex_state = 54}, - [5693] = {.lex_state = 87}, - [5694] = {.lex_state = 82}, - [5695] = {.lex_state = 56}, - [5696] = {.lex_state = 66}, - [5697] = {.lex_state = 88}, - [5698] = {.lex_state = 65}, - [5699] = {.lex_state = 70}, - [5700] = {.lex_state = 75}, - [5701] = {.lex_state = 77}, - [5702] = {.lex_state = 81}, - [5703] = {.lex_state = 83}, - [5704] = {.lex_state = 79}, - [5705] = {.lex_state = 72}, - [5706] = {.lex_state = 80}, - [5707] = {.lex_state = 84}, - [5708] = {.lex_state = 75}, - [5709] = {.lex_state = 75}, - [5710] = {.lex_state = 64}, - [5711] = {.lex_state = 87}, - [5712] = {.lex_state = 90}, - [5713] = {.lex_state = 89}, - [5714] = {.lex_state = 68}, - [5715] = {.lex_state = 85}, - [5716] = {.lex_state = 86}, + [5681] = {.lex_state = 81}, + [5682] = {.lex_state = 77}, + [5683] = {.lex_state = 79}, + [5684] = {.lex_state = 77}, + [5685] = {.lex_state = 64}, + [5686] = {.lex_state = 89}, + [5687] = {.lex_state = 86}, + [5688] = {.lex_state = 78}, + [5689] = {.lex_state = 66}, + [5690] = {.lex_state = 92}, + [5691] = {.lex_state = 90}, + [5692] = {.lex_state = 64}, + [5693] = {.lex_state = 79}, + [5694] = {.lex_state = 90}, + [5695] = {.lex_state = 76}, + [5696] = {.lex_state = 74}, + [5697] = {.lex_state = 74}, + [5698] = {.lex_state = 82}, + [5699] = {.lex_state = 59}, + [5700] = {.lex_state = 69}, + [5701] = {.lex_state = 54}, + [5702] = {.lex_state = 84}, + [5703] = {.lex_state = 80}, + [5704] = {.lex_state = 72}, + [5705] = {.lex_state = 74}, + [5706] = {.lex_state = 70}, + [5707] = {.lex_state = 75}, + [5708] = {.lex_state = 91}, + [5709] = {.lex_state = 67}, + [5710] = {.lex_state = 59}, + [5711] = {.lex_state = 67}, + [5712] = {.lex_state = 83}, + [5713] = {.lex_state = 91}, + [5714] = {.lex_state = 73}, + [5715] = {.lex_state = 4}, + [5716] = {.lex_state = 0}, [5717] = {.lex_state = 0}, - [5718] = {.lex_state = 60}, - [5719] = {.lex_state = 91}, - [5720] = {.lex_state = 87}, - [5721] = {.lex_state = 73}, - [5722] = {.lex_state = 62}, - [5723] = {.lex_state = 76}, - [5724] = {.lex_state = 78}, - [5725] = {.lex_state = 85}, - [5726] = {.lex_state = 68}, - [5727] = {.lex_state = 43}, - [5728] = {.lex_state = 89}, - [5729] = {.lex_state = 69}, - [5730] = {.lex_state = 80}, - [5731] = {.lex_state = 82}, - [5732] = {.lex_state = 90}, - [5733] = {.lex_state = 69}, - [5734] = {.lex_state = 0}, - [5735] = {.lex_state = 64}, - [5736] = {.lex_state = 75}, - [5737] = {.lex_state = 75}, - [5738] = {.lex_state = 43}, - [5739] = {.lex_state = 84}, - [5740] = {.lex_state = 0}, - [5741] = {.lex_state = 72}, - [5742] = {.lex_state = 82}, - [5743] = {.lex_state = 80}, - [5744] = {.lex_state = 43}, - [5745] = {.lex_state = 69}, - [5746] = {.lex_state = 79}, - [5747] = {.lex_state = 83}, - [5748] = {.lex_state = 81}, - [5749] = {.lex_state = 77}, - [5750] = {.lex_state = 75}, - [5751] = {.lex_state = 70}, - [5752] = {.lex_state = 65}, - [5753] = {.lex_state = 88}, - [5754] = {.lex_state = 66}, - [5755] = {.lex_state = 56}, - [5756] = {.lex_state = 62}, - [5757] = {.lex_state = 54}, - [5758] = {.lex_state = 4}, - [5759] = {.lex_state = 0}, - [5760] = {.lex_state = 87}, - [5761] = {.lex_state = 64}, - [5762] = {.lex_state = 90}, - [5763] = {.lex_state = 89}, - [5764] = {.lex_state = 68}, - [5765] = {.lex_state = 64}, - [5766] = {.lex_state = 85}, - [5767] = {.lex_state = 86}, - [5768] = {.lex_state = 75}, - [5769] = {.lex_state = 0}, - [5770] = {.lex_state = 78}, - [5771] = {.lex_state = 76}, - [5772] = {.lex_state = 77}, - [5773] = {.lex_state = 62}, - [5774] = {.lex_state = 75}, - [5775] = {.lex_state = 84}, - [5776] = {.lex_state = 43}, - [5777] = {.lex_state = 72}, - [5778] = {.lex_state = 60}, - [5779] = {.lex_state = 43}, - [5780] = {.lex_state = 76}, - [5781] = {.lex_state = 91}, - [5782] = {.lex_state = 75}, - [5783] = {.lex_state = 70}, - [5784] = {.lex_state = 78}, - [5785] = {.lex_state = 73}, - [5786] = {.lex_state = 43}, - [5787] = {.lex_state = 79}, - [5788] = {.lex_state = 83}, - [5789] = {.lex_state = 62}, - [5790] = {.lex_state = 76}, - [5791] = {.lex_state = 69}, - [5792] = {.lex_state = 81}, - [5793] = {.lex_state = 76}, - [5794] = {.lex_state = 77}, - [5795] = {.lex_state = 82}, - [5796] = {.lex_state = 80}, - [5797] = {.lex_state = 69}, - [5798] = {.lex_state = 78}, - [5799] = {.lex_state = 69}, - [5800] = {.lex_state = 80}, - [5801] = {.lex_state = 62}, - [5802] = {.lex_state = 62}, - [5803] = {.lex_state = 73}, - [5804] = {.lex_state = 82}, - [5805] = {.lex_state = 78}, - [5806] = {.lex_state = 76}, - [5807] = {.lex_state = 62}, - [5808] = {.lex_state = 73}, - [5809] = {.lex_state = 87}, - [5810] = {.lex_state = 91}, - [5811] = {.lex_state = 60}, - [5812] = {.lex_state = 80}, - [5813] = {.lex_state = 75}, - [5814] = {.lex_state = 86}, - [5815] = {.lex_state = 85}, - [5816] = {.lex_state = 68}, - [5817] = {.lex_state = 89}, - [5818] = {.lex_state = 90}, - [5819] = {.lex_state = 70}, - [5820] = {.lex_state = 64}, - [5821] = {.lex_state = 75}, - [5822] = {.lex_state = 73}, - [5823] = {.lex_state = 75}, - [5824] = {.lex_state = 0}, - [5825] = {.lex_state = 84}, - [5826] = {.lex_state = 43}, - [5827] = {.lex_state = 72}, - [5828] = {.lex_state = 79}, - [5829] = {.lex_state = 83}, - [5830] = {.lex_state = 81}, - [5831] = {.lex_state = 77}, - [5832] = {.lex_state = 75}, - [5833] = {.lex_state = 83}, - [5834] = {.lex_state = 91}, - [5835] = {.lex_state = 60}, - [5836] = {.lex_state = 70}, - [5837] = {.lex_state = 65}, - [5838] = {.lex_state = 88}, - [5839] = {.lex_state = 66}, - [5840] = {.lex_state = 56}, - [5841] = {.lex_state = 65}, - [5842] = {.lex_state = 54}, - [5843] = {.lex_state = 4}, - [5844] = {.lex_state = 81}, - [5845] = {.lex_state = 0}, - [5846] = {.lex_state = 0}, - [5847] = {.lex_state = 0}, - [5848] = {.lex_state = 0}, - [5849] = {.lex_state = 0}, - [5850] = {.lex_state = 0}, - [5851] = {.lex_state = 43}, - [5852] = {.lex_state = 4}, - [5853] = {.lex_state = 54}, - [5854] = {.lex_state = 68}, - [5855] = {.lex_state = 69}, - [5856] = {.lex_state = 43}, - [5857] = {.lex_state = 82}, - [5858] = {.lex_state = 77}, - [5859] = {.lex_state = 43}, - [5860] = {.lex_state = 79}, - [5861] = {.lex_state = 89}, - [5862] = {.lex_state = 66}, - [5863] = {.lex_state = 56}, + [5718] = {.lex_state = 75}, + [5719] = {.lex_state = 70}, + [5720] = {.lex_state = 74}, + [5721] = {.lex_state = 72}, + [5722] = {.lex_state = 80}, + [5723] = {.lex_state = 77}, + [5724] = {.lex_state = 64}, + [5725] = {.lex_state = 89}, + [5726] = {.lex_state = 84}, + [5727] = {.lex_state = 54}, + [5728] = {.lex_state = 69}, + [5729] = {.lex_state = 43}, + [5730] = {.lex_state = 82}, + [5731] = {.lex_state = 74}, + [5732] = {.lex_state = 74}, + [5733] = {.lex_state = 43}, + [5734] = {.lex_state = 43}, + [5735] = {.lex_state = 76}, + [5736] = {.lex_state = 88}, + [5737] = {.lex_state = 87}, + [5738] = {.lex_state = 85}, + [5739] = {.lex_state = 90}, + [5740] = {.lex_state = 92}, + [5741] = {.lex_state = 66}, + [5742] = {.lex_state = 78}, + [5743] = {.lex_state = 83}, + [5744] = {.lex_state = 81}, + [5745] = {.lex_state = 81}, + [5746] = {.lex_state = 61}, + [5747] = {.lex_state = 79}, + [5748] = {.lex_state = 86}, + [5749] = {.lex_state = 64}, + [5750] = {.lex_state = 89}, + [5751] = {.lex_state = 86}, + [5752] = {.lex_state = 78}, + [5753] = {.lex_state = 66}, + [5754] = {.lex_state = 92}, + [5755] = {.lex_state = 61}, + [5756] = {.lex_state = 90}, + [5757] = {.lex_state = 86}, + [5758] = {.lex_state = 86}, + [5759] = {.lex_state = 76}, + [5760] = {.lex_state = 74}, + [5761] = {.lex_state = 74}, + [5762] = {.lex_state = 82}, + [5763] = {.lex_state = 69}, + [5764] = {.lex_state = 54}, + [5765] = {.lex_state = 84}, + [5766] = {.lex_state = 80}, + [5767] = {.lex_state = 72}, + [5768] = {.lex_state = 74}, + [5769] = {.lex_state = 70}, + [5770] = {.lex_state = 75}, + [5771] = {.lex_state = 91}, + [5772] = {.lex_state = 67}, + [5773] = {.lex_state = 59}, + [5774] = {.lex_state = 0}, + [5775] = {.lex_state = 73}, + [5776] = {.lex_state = 79}, + [5777] = {.lex_state = 4}, + [5778] = {.lex_state = 0}, + [5779] = {.lex_state = 0}, + [5780] = {.lex_state = 89}, + [5781] = {.lex_state = 64}, + [5782] = {.lex_state = 77}, + [5783] = {.lex_state = 79}, + [5784] = {.lex_state = 61}, + [5785] = {.lex_state = 81}, + [5786] = {.lex_state = 83}, + [5787] = {.lex_state = 78}, + [5788] = {.lex_state = 66}, + [5789] = {.lex_state = 92}, + [5790] = {.lex_state = 43}, + [5791] = {.lex_state = 85}, + [5792] = {.lex_state = 87}, + [5793] = {.lex_state = 88}, + [5794] = {.lex_state = 43}, + [5795] = {.lex_state = 43}, + [5796] = {.lex_state = 73}, + [5797] = {.lex_state = 43}, + [5798] = {.lex_state = 88}, + [5799] = {.lex_state = 87}, + [5800] = {.lex_state = 85}, + [5801] = {.lex_state = 43}, + [5802] = {.lex_state = 83}, + [5803] = {.lex_state = 81}, + [5804] = {.lex_state = 61}, + [5805] = {.lex_state = 79}, + [5806] = {.lex_state = 77}, + [5807] = {.lex_state = 64}, + [5808] = {.lex_state = 77}, + [5809] = {.lex_state = 89}, + [5810] = {.lex_state = 74}, + [5811] = {.lex_state = 78}, + [5812] = {.lex_state = 66}, + [5813] = {.lex_state = 92}, + [5814] = {.lex_state = 90}, + [5815] = {.lex_state = 76}, + [5816] = {.lex_state = 74}, + [5817] = {.lex_state = 74}, + [5818] = {.lex_state = 82}, + [5819] = {.lex_state = 80}, + [5820] = {.lex_state = 90}, + [5821] = {.lex_state = 76}, + [5822] = {.lex_state = 69}, + [5823] = {.lex_state = 54}, + [5824] = {.lex_state = 84}, + [5825] = {.lex_state = 80}, + [5826] = {.lex_state = 72}, + [5827] = {.lex_state = 74}, + [5828] = {.lex_state = 70}, + [5829] = {.lex_state = 75}, + [5830] = {.lex_state = 91}, + [5831] = {.lex_state = 67}, + [5832] = {.lex_state = 59}, + [5833] = {.lex_state = 0}, + [5834] = {.lex_state = 0}, + [5835] = {.lex_state = 73}, + [5836] = {.lex_state = 4}, + [5837] = {.lex_state = 0}, + [5838] = {.lex_state = 0}, + [5839] = {.lex_state = 4}, + [5840] = {.lex_state = 89}, + [5841] = {.lex_state = 73}, + [5842] = {.lex_state = 67}, + [5843] = {.lex_state = 91}, + [5844] = {.lex_state = 75}, + [5845] = {.lex_state = 70}, + [5846] = {.lex_state = 74}, + [5847] = {.lex_state = 43}, + [5848] = {.lex_state = 72}, + [5849] = {.lex_state = 80}, + [5850] = {.lex_state = 84}, + [5851] = {.lex_state = 54}, + [5852] = {.lex_state = 69}, + [5853] = {.lex_state = 74}, + [5854] = {.lex_state = 43}, + [5855] = {.lex_state = 82}, + [5856] = {.lex_state = 74}, + [5857] = {.lex_state = 4}, + [5858] = {.lex_state = 76}, + [5859] = {.lex_state = 88}, + [5860] = {.lex_state = 87}, + [5861] = {.lex_state = 85}, + [5862] = {.lex_state = 90}, + [5863] = {.lex_state = 92}, [5864] = {.lex_state = 66}, - [5865] = {.lex_state = 91}, - [5866] = {.lex_state = 54}, - [5867] = {.lex_state = 86}, - [5868] = {.lex_state = 0}, - [5869] = {.lex_state = 43}, - [5870] = {.lex_state = 88}, - [5871] = {.lex_state = 72}, - [5872] = {.lex_state = 65}, - [5873] = {.lex_state = 70}, - [5874] = {.lex_state = 75}, - [5875] = {.lex_state = 43}, - [5876] = {.lex_state = 87}, - [5877] = {.lex_state = 77}, - [5878] = {.lex_state = 81}, - [5879] = {.lex_state = 84}, - [5880] = {.lex_state = 83}, - [5881] = {.lex_state = 79}, - [5882] = {.lex_state = 72}, - [5883] = {.lex_state = 82}, - [5884] = {.lex_state = 80}, + [5865] = {.lex_state = 78}, + [5866] = {.lex_state = 83}, + [5867] = {.lex_state = 81}, + [5868] = {.lex_state = 61}, + [5869] = {.lex_state = 79}, + [5870] = {.lex_state = 77}, + [5871] = {.lex_state = 64}, + [5872] = {.lex_state = 86}, + [5873] = {.lex_state = 89}, + [5874] = {.lex_state = 86}, + [5875] = {.lex_state = 78}, + [5876] = {.lex_state = 66}, + [5877] = {.lex_state = 92}, + [5878] = {.lex_state = 90}, + [5879] = {.lex_state = 86}, + [5880] = {.lex_state = 76}, + [5881] = {.lex_state = 74}, + [5882] = {.lex_state = 74}, + [5883] = {.lex_state = 74}, + [5884] = {.lex_state = 82}, [5885] = {.lex_state = 69}, - [5886] = {.lex_state = 60}, - [5887] = {.lex_state = 75}, - [5888] = {.lex_state = 43}, - [5889] = {.lex_state = 43}, - [5890] = {.lex_state = 56}, - [5891] = {.lex_state = 0}, - [5892] = {.lex_state = 78}, - [5893] = {.lex_state = 76}, - [5894] = {.lex_state = 62}, - [5895] = {.lex_state = 73}, - [5896] = {.lex_state = 87}, - [5897] = {.lex_state = 85}, - [5898] = {.lex_state = 68}, - [5899] = {.lex_state = 89}, - [5900] = {.lex_state = 91}, - [5901] = {.lex_state = 60}, - [5902] = {.lex_state = 84}, - [5903] = {.lex_state = 86}, - [5904] = {.lex_state = 85}, - [5905] = {.lex_state = 68}, - [5906] = {.lex_state = 89}, - [5907] = {.lex_state = 90}, - [5908] = {.lex_state = 75}, - [5909] = {.lex_state = 0}, - [5910] = {.lex_state = 64}, - [5911] = {.lex_state = 75}, - [5912] = {.lex_state = 75}, - [5913] = {.lex_state = 84}, + [5886] = {.lex_state = 82}, + [5887] = {.lex_state = 69}, + [5888] = {.lex_state = 54}, + [5889] = {.lex_state = 84}, + [5890] = {.lex_state = 80}, + [5891] = {.lex_state = 72}, + [5892] = {.lex_state = 74}, + [5893] = {.lex_state = 70}, + [5894] = {.lex_state = 75}, + [5895] = {.lex_state = 91}, + [5896] = {.lex_state = 67}, + [5897] = {.lex_state = 59}, + [5898] = {.lex_state = 89}, + [5899] = {.lex_state = 73}, + [5900] = {.lex_state = 4}, + [5901] = {.lex_state = 0}, + [5902] = {.lex_state = 0}, + [5903] = {.lex_state = 64}, + [5904] = {.lex_state = 78}, + [5905] = {.lex_state = 77}, + [5906] = {.lex_state = 79}, + [5907] = {.lex_state = 61}, + [5908] = {.lex_state = 81}, + [5909] = {.lex_state = 83}, + [5910] = {.lex_state = 59}, + [5911] = {.lex_state = 87}, + [5912] = {.lex_state = 88}, + [5913] = {.lex_state = 43}, [5914] = {.lex_state = 43}, - [5915] = {.lex_state = 72}, - [5916] = {.lex_state = 79}, - [5917] = {.lex_state = 83}, - [5918] = {.lex_state = 0}, - [5919] = {.lex_state = 89}, - [5920] = {.lex_state = 81}, - [5921] = {.lex_state = 77}, - [5922] = {.lex_state = 75}, - [5923] = {.lex_state = 70}, - [5924] = {.lex_state = 65}, - [5925] = {.lex_state = 88}, - [5926] = {.lex_state = 66}, - [5927] = {.lex_state = 56}, - [5928] = {.lex_state = 0}, - [5929] = {.lex_state = 90}, - [5930] = {.lex_state = 86}, - [5931] = {.lex_state = 64}, - [5932] = {.lex_state = 54}, - [5933] = {.lex_state = 4}, - [5934] = {.lex_state = 75}, - [5935] = {.lex_state = 0}, - [5936] = {.lex_state = 0}, - [5937] = {.lex_state = 89}, - [5938] = {.lex_state = 75}, - [5939] = {.lex_state = 64}, - [5940] = {.lex_state = 91}, - [5941] = {.lex_state = 54}, - [5942] = {.lex_state = 56}, - [5943] = {.lex_state = 54}, - [5944] = {.lex_state = 66}, - [5945] = {.lex_state = 43}, - [5946] = {.lex_state = 88}, - [5947] = {.lex_state = 90}, - [5948] = {.lex_state = 82}, - [5949] = {.lex_state = 90}, - [5950] = {.lex_state = 85}, - [5951] = {.lex_state = 80}, - [5952] = {.lex_state = 75}, - [5953] = {.lex_state = 68}, - [5954] = {.lex_state = 85}, - [5955] = {.lex_state = 65}, - [5956] = {.lex_state = 43}, - [5957] = {.lex_state = 70}, - [5958] = {.lex_state = 75}, - [5959] = {.lex_state = 77}, - [5960] = {.lex_state = 86}, - [5961] = {.lex_state = 70}, - [5962] = {.lex_state = 75}, - [5963] = {.lex_state = 75}, - [5964] = {.lex_state = 81}, - [5965] = {.lex_state = 43}, - [5966] = {.lex_state = 83}, - [5967] = {.lex_state = 60}, - [5968] = {.lex_state = 79}, - [5969] = {.lex_state = 91}, - [5970] = {.lex_state = 72}, - [5971] = {.lex_state = 87}, - [5972] = {.lex_state = 68}, - [5973] = {.lex_state = 82}, - [5974] = {.lex_state = 80}, - [5975] = {.lex_state = 69}, - [5976] = {.lex_state = 84}, - [5977] = {.lex_state = 75}, - [5978] = {.lex_state = 75}, - [5979] = {.lex_state = 89}, - [5980] = {.lex_state = 78}, - [5981] = {.lex_state = 76}, - [5982] = {.lex_state = 89}, - [5983] = {.lex_state = 68}, - [5984] = {.lex_state = 62}, - [5985] = {.lex_state = 73}, - [5986] = {.lex_state = 87}, - [5987] = {.lex_state = 91}, - [5988] = {.lex_state = 60}, - [5989] = {.lex_state = 88}, + [5915] = {.lex_state = 54}, + [5916] = {.lex_state = 66}, + [5917] = {.lex_state = 84}, + [5918] = {.lex_state = 43}, + [5919] = {.lex_state = 43}, + [5920] = {.lex_state = 88}, + [5921] = {.lex_state = 87}, + [5922] = {.lex_state = 85}, + [5923] = {.lex_state = 0}, + [5924] = {.lex_state = 0}, + [5925] = {.lex_state = 83}, + [5926] = {.lex_state = 81}, + [5927] = {.lex_state = 61}, + [5928] = {.lex_state = 79}, + [5929] = {.lex_state = 77}, + [5930] = {.lex_state = 64}, + [5931] = {.lex_state = 89}, + [5932] = {.lex_state = 86}, + [5933] = {.lex_state = 78}, + [5934] = {.lex_state = 66}, + [5935] = {.lex_state = 92}, + [5936] = {.lex_state = 92}, + [5937] = {.lex_state = 90}, + [5938] = {.lex_state = 54}, + [5939] = {.lex_state = 76}, + [5940] = {.lex_state = 74}, + [5941] = {.lex_state = 74}, + [5942] = {.lex_state = 82}, + [5943] = {.lex_state = 73}, + [5944] = {.lex_state = 69}, + [5945] = {.lex_state = 54}, + [5946] = {.lex_state = 84}, + [5947] = {.lex_state = 84}, + [5948] = {.lex_state = 72}, + [5949] = {.lex_state = 74}, + [5950] = {.lex_state = 80}, + [5951] = {.lex_state = 72}, + [5952] = {.lex_state = 74}, + [5953] = {.lex_state = 70}, + [5954] = {.lex_state = 75}, + [5955] = {.lex_state = 91}, + [5956] = {.lex_state = 67}, + [5957] = {.lex_state = 59}, + [5958] = {.lex_state = 59}, + [5959] = {.lex_state = 67}, + [5960] = {.lex_state = 73}, + [5961] = {.lex_state = 4}, + [5962] = {.lex_state = 0}, + [5963] = {.lex_state = 0}, + [5964] = {.lex_state = 91}, + [5965] = {.lex_state = 75}, + [5966] = {.lex_state = 70}, + [5967] = {.lex_state = 74}, + [5968] = {.lex_state = 76}, + [5969] = {.lex_state = 72}, + [5970] = {.lex_state = 80}, + [5971] = {.lex_state = 84}, + [5972] = {.lex_state = 91}, + [5973] = {.lex_state = 69}, + [5974] = {.lex_state = 43}, + [5975] = {.lex_state = 82}, + [5976] = {.lex_state = 74}, + [5977] = {.lex_state = 74}, + [5978] = {.lex_state = 43}, + [5979] = {.lex_state = 70}, + [5980] = {.lex_state = 75}, + [5981] = {.lex_state = 91}, + [5982] = {.lex_state = 76}, + [5983] = {.lex_state = 90}, + [5984] = {.lex_state = 92}, + [5985] = {.lex_state = 66}, + [5986] = {.lex_state = 88}, + [5987] = {.lex_state = 87}, + [5988] = {.lex_state = 85}, + [5989] = {.lex_state = 78}, [5990] = {.lex_state = 86}, - [5991] = {.lex_state = 85}, - [5992] = {.lex_state = 68}, - [5993] = {.lex_state = 75}, - [5994] = {.lex_state = 84}, - [5995] = {.lex_state = 72}, - [5996] = {.lex_state = 89}, - [5997] = {.lex_state = 90}, - [5998] = {.lex_state = 64}, - [5999] = {.lex_state = 64}, - [6000] = {.lex_state = 75}, - [6001] = {.lex_state = 75}, - [6002] = {.lex_state = 84}, + [5991] = {.lex_state = 89}, + [5992] = {.lex_state = 83}, + [5993] = {.lex_state = 81}, + [5994] = {.lex_state = 61}, + [5995] = {.lex_state = 79}, + [5996] = {.lex_state = 77}, + [5997] = {.lex_state = 64}, + [5998] = {.lex_state = 89}, + [5999] = {.lex_state = 86}, + [6000] = {.lex_state = 78}, + [6001] = {.lex_state = 66}, + [6002] = {.lex_state = 92}, [6003] = {.lex_state = 90}, - [6004] = {.lex_state = 85}, - [6005] = {.lex_state = 72}, - [6006] = {.lex_state = 79}, - [6007] = {.lex_state = 83}, - [6008] = {.lex_state = 81}, + [6004] = {.lex_state = 64}, + [6005] = {.lex_state = 76}, + [6006] = {.lex_state = 74}, + [6007] = {.lex_state = 74}, + [6008] = {.lex_state = 82}, [6009] = {.lex_state = 77}, - [6010] = {.lex_state = 75}, - [6011] = {.lex_state = 70}, - [6012] = {.lex_state = 65}, - [6013] = {.lex_state = 88}, - [6014] = {.lex_state = 90}, - [6015] = {.lex_state = 86}, - [6016] = {.lex_state = 66}, - [6017] = {.lex_state = 56}, - [6018] = {.lex_state = 4}, - [6019] = {.lex_state = 68}, - [6020] = {.lex_state = 54}, - [6021] = {.lex_state = 4}, - [6022] = {.lex_state = 62}, - [6023] = {.lex_state = 0}, - [6024] = {.lex_state = 0}, - [6025] = {.lex_state = 79}, - [6026] = {.lex_state = 64}, - [6027] = {.lex_state = 83}, + [6010] = {.lex_state = 69}, + [6011] = {.lex_state = 67}, + [6012] = {.lex_state = 59}, + [6013] = {.lex_state = 74}, + [6014] = {.lex_state = 54}, + [6015] = {.lex_state = 84}, + [6016] = {.lex_state = 80}, + [6017] = {.lex_state = 72}, + [6018] = {.lex_state = 74}, + [6019] = {.lex_state = 70}, + [6020] = {.lex_state = 75}, + [6021] = {.lex_state = 91}, + [6022] = {.lex_state = 67}, + [6023] = {.lex_state = 59}, + [6024] = {.lex_state = 85}, + [6025] = {.lex_state = 61}, + [6026] = {.lex_state = 73}, + [6027] = {.lex_state = 4}, [6028] = {.lex_state = 0}, - [6029] = {.lex_state = 85}, - [6030] = {.lex_state = 86}, - [6031] = {.lex_state = 76}, - [6032] = {.lex_state = 60}, - [6033] = {.lex_state = 78}, - [6034] = {.lex_state = 91}, - [6035] = {.lex_state = 4}, - [6036] = {.lex_state = 78}, - [6037] = {.lex_state = 87}, - [6038] = {.lex_state = 76}, - [6039] = {.lex_state = 62}, - [6040] = {.lex_state = 0}, + [6029] = {.lex_state = 0}, + [6030] = {.lex_state = 81}, + [6031] = {.lex_state = 83}, + [6032] = {.lex_state = 74}, + [6033] = {.lex_state = 85}, + [6034] = {.lex_state = 87}, + [6035] = {.lex_state = 88}, + [6036] = {.lex_state = 43}, + [6037] = {.lex_state = 43}, + [6038] = {.lex_state = 43}, + [6039] = {.lex_state = 43}, + [6040] = {.lex_state = 79}, [6041] = {.lex_state = 0}, - [6042] = {.lex_state = 69}, - [6043] = {.lex_state = 80}, - [6044] = {.lex_state = 73}, - [6045] = {.lex_state = 43}, - [6046] = {.lex_state = 73}, + [6042] = {.lex_state = 0}, + [6043] = {.lex_state = 82}, + [6044] = {.lex_state = 69}, + [6045] = {.lex_state = 73}, + [6046] = {.lex_state = 88}, [6047] = {.lex_state = 87}, - [6048] = {.lex_state = 82}, - [6049] = {.lex_state = 62}, - [6050] = {.lex_state = 76}, - [6051] = {.lex_state = 0}, - [6052] = {.lex_state = 78}, - [6053] = {.lex_state = 43}, - [6054] = {.lex_state = 69}, - [6055] = {.lex_state = 91}, - [6056] = {.lex_state = 80}, - [6057] = {.lex_state = 81}, - [6058] = {.lex_state = 77}, - [6059] = {.lex_state = 75}, - [6060] = {.lex_state = 43}, - [6061] = {.lex_state = 82}, - [6062] = {.lex_state = 60}, - [6063] = {.lex_state = 82}, - [6064] = {.lex_state = 80}, - [6065] = {.lex_state = 69}, - [6066] = {.lex_state = 43}, - [6067] = {.lex_state = 73}, - [6068] = {.lex_state = 60}, - [6069] = {.lex_state = 86}, - [6070] = {.lex_state = 43}, - [6071] = {.lex_state = 78}, - [6072] = {.lex_state = 76}, - [6073] = {.lex_state = 62}, - [6074] = {.lex_state = 73}, - [6075] = {.lex_state = 87}, - [6076] = {.lex_state = 91}, - [6077] = {.lex_state = 60}, - [6078] = {.lex_state = 75}, - [6079] = {.lex_state = 85}, - [6080] = {.lex_state = 72}, - [6081] = {.lex_state = 86}, - [6082] = {.lex_state = 85}, - [6083] = {.lex_state = 68}, - [6084] = {.lex_state = 89}, - [6085] = {.lex_state = 90}, - [6086] = {.lex_state = 43}, - [6087] = {.lex_state = 64}, - [6088] = {.lex_state = 75}, - [6089] = {.lex_state = 88}, - [6090] = {.lex_state = 65}, - [6091] = {.lex_state = 88}, - [6092] = {.lex_state = 75}, - [6093] = {.lex_state = 84}, - [6094] = {.lex_state = 43}, - [6095] = {.lex_state = 79}, - [6096] = {.lex_state = 79}, - [6097] = {.lex_state = 83}, - [6098] = {.lex_state = 81}, - [6099] = {.lex_state = 77}, - [6100] = {.lex_state = 70}, - [6101] = {.lex_state = 75}, - [6102] = {.lex_state = 70}, - [6103] = {.lex_state = 65}, - [6104] = {.lex_state = 88}, + [6048] = {.lex_state = 85}, + [6049] = {.lex_state = 4}, + [6050] = {.lex_state = 73}, + [6051] = {.lex_state = 59}, + [6052] = {.lex_state = 67}, + [6053] = {.lex_state = 83}, + [6054] = {.lex_state = 81}, + [6055] = {.lex_state = 61}, + [6056] = {.lex_state = 79}, + [6057] = {.lex_state = 77}, + [6058] = {.lex_state = 64}, + [6059] = {.lex_state = 89}, + [6060] = {.lex_state = 86}, + [6061] = {.lex_state = 78}, + [6062] = {.lex_state = 66}, + [6063] = {.lex_state = 92}, + [6064] = {.lex_state = 54}, + [6065] = {.lex_state = 90}, + [6066] = {.lex_state = 4}, + [6067] = {.lex_state = 76}, + [6068] = {.lex_state = 74}, + [6069] = {.lex_state = 74}, + [6070] = {.lex_state = 82}, + [6071] = {.lex_state = 75}, + [6072] = {.lex_state = 69}, + [6073] = {.lex_state = 54}, + [6074] = {.lex_state = 84}, + [6075] = {.lex_state = 0}, + [6076] = {.lex_state = 80}, + [6077] = {.lex_state = 4}, + [6078] = {.lex_state = 80}, + [6079] = {.lex_state = 72}, + [6080] = {.lex_state = 74}, + [6081] = {.lex_state = 70}, + [6082] = {.lex_state = 75}, + [6083] = {.lex_state = 91}, + [6084] = {.lex_state = 67}, + [6085] = {.lex_state = 59}, + [6086] = {.lex_state = 70}, + [6087] = {.lex_state = 74}, + [6088] = {.lex_state = 73}, + [6089] = {.lex_state = 74}, + [6090] = {.lex_state = 0}, + [6091] = {.lex_state = 0}, + [6092] = {.lex_state = 72}, + [6093] = {.lex_state = 80}, + [6094] = {.lex_state = 84}, + [6095] = {.lex_state = 54}, + [6096] = {.lex_state = 72}, + [6097] = {.lex_state = 69}, + [6098] = {.lex_state = 82}, + [6099] = {.lex_state = 74}, + [6100] = {.lex_state = 43}, + [6101] = {.lex_state = 74}, + [6102] = {.lex_state = 76}, + [6103] = {.lex_state = 90}, + [6104] = {.lex_state = 92}, [6105] = {.lex_state = 66}, - [6106] = {.lex_state = 56}, - [6107] = {.lex_state = 0}, - [6108] = {.lex_state = 0}, - [6109] = {.lex_state = 54}, - [6110] = {.lex_state = 84}, + [6106] = {.lex_state = 43}, + [6107] = {.lex_state = 74}, + [6108] = {.lex_state = 78}, + [6109] = {.lex_state = 70}, + [6110] = {.lex_state = 86}, [6111] = {.lex_state = 89}, - [6112] = {.lex_state = 4}, - [6113] = {.lex_state = 0}, - [6114] = {.lex_state = 0}, - [6115] = {.lex_state = 0}, - [6116] = {.lex_state = 0}, - [6117] = {.lex_state = 4}, - [6118] = {.lex_state = 54}, - [6119] = {.lex_state = 90}, - [6120] = {.lex_state = 64}, - [6121] = {.lex_state = 66}, - [6122] = {.lex_state = 56}, - [6123] = {.lex_state = 72}, - [6124] = {.lex_state = 82}, - [6125] = {.lex_state = 80}, - [6126] = {.lex_state = 0}, - [6127] = {.lex_state = 0}, + [6112] = {.lex_state = 88}, + [6113] = {.lex_state = 87}, + [6114] = {.lex_state = 85}, + [6115] = {.lex_state = 64}, + [6116] = {.lex_state = 77}, + [6117] = {.lex_state = 79}, + [6118] = {.lex_state = 61}, + [6119] = {.lex_state = 83}, + [6120] = {.lex_state = 81}, + [6121] = {.lex_state = 61}, + [6122] = {.lex_state = 79}, + [6123] = {.lex_state = 77}, + [6124] = {.lex_state = 64}, + [6125] = {.lex_state = 89}, + [6126] = {.lex_state = 86}, + [6127] = {.lex_state = 78}, [6128] = {.lex_state = 75}, - [6129] = {.lex_state = 75}, - [6130] = {.lex_state = 56}, - [6131] = {.lex_state = 66}, - [6132] = {.lex_state = 84}, - [6133] = {.lex_state = 88}, - [6134] = {.lex_state = 65}, - [6135] = {.lex_state = 0}, - [6136] = {.lex_state = 43}, - [6137] = {.lex_state = 70}, - [6138] = {.lex_state = 4}, - [6139] = {.lex_state = 54}, - [6140] = {.lex_state = 75}, - [6141] = {.lex_state = 77}, - [6142] = {.lex_state = 79}, - [6143] = {.lex_state = 72}, - [6144] = {.lex_state = 43}, - [6145] = {.lex_state = 81}, - [6146] = {.lex_state = 83}, - [6147] = {.lex_state = 56}, - [6148] = {.lex_state = 79}, - [6149] = {.lex_state = 66}, - [6150] = {.lex_state = 72}, - [6151] = {.lex_state = 82}, - [6152] = {.lex_state = 80}, - [6153] = {.lex_state = 62}, - [6154] = {.lex_state = 81}, - [6155] = {.lex_state = 54}, - [6156] = {.lex_state = 69}, + [6129] = {.lex_state = 66}, + [6130] = {.lex_state = 92}, + [6131] = {.lex_state = 90}, + [6132] = {.lex_state = 76}, + [6133] = {.lex_state = 74}, + [6134] = {.lex_state = 91}, + [6135] = {.lex_state = 74}, + [6136] = {.lex_state = 82}, + [6137] = {.lex_state = 83}, + [6138] = {.lex_state = 69}, + [6139] = {.lex_state = 0}, + [6140] = {.lex_state = 67}, + [6141] = {.lex_state = 54}, + [6142] = {.lex_state = 84}, + [6143] = {.lex_state = 80}, + [6144] = {.lex_state = 72}, + [6145] = {.lex_state = 74}, + [6146] = {.lex_state = 70}, + [6147] = {.lex_state = 75}, + [6148] = {.lex_state = 91}, + [6149] = {.lex_state = 67}, + [6150] = {.lex_state = 59}, + [6151] = {.lex_state = 85}, + [6152] = {.lex_state = 87}, + [6153] = {.lex_state = 73}, + [6154] = {.lex_state = 4}, + [6155] = {.lex_state = 0}, + [6156] = {.lex_state = 0}, [6157] = {.lex_state = 88}, - [6158] = {.lex_state = 65}, - [6159] = {.lex_state = 70}, - [6160] = {.lex_state = 89}, - [6161] = {.lex_state = 78}, - [6162] = {.lex_state = 76}, - [6163] = {.lex_state = 62}, - [6164] = {.lex_state = 79}, - [6165] = {.lex_state = 90}, - [6166] = {.lex_state = 87}, - [6167] = {.lex_state = 91}, - [6168] = {.lex_state = 60}, - [6169] = {.lex_state = 90}, - [6170] = {.lex_state = 83}, - [6171] = {.lex_state = 86}, - [6172] = {.lex_state = 85}, - [6173] = {.lex_state = 68}, - [6174] = {.lex_state = 77}, - [6175] = {.lex_state = 64}, - [6176] = {.lex_state = 89}, - [6177] = {.lex_state = 90}, - [6178] = {.lex_state = 77}, - [6179] = {.lex_state = 64}, - [6180] = {.lex_state = 75}, - [6181] = {.lex_state = 75}, - [6182] = {.lex_state = 84}, - [6183] = {.lex_state = 72}, - [6184] = {.lex_state = 79}, - [6185] = {.lex_state = 75}, - [6186] = {.lex_state = 70}, - [6187] = {.lex_state = 4}, - [6188] = {.lex_state = 83}, - [6189] = {.lex_state = 81}, - [6190] = {.lex_state = 77}, - [6191] = {.lex_state = 75}, - [6192] = {.lex_state = 70}, - [6193] = {.lex_state = 65}, - [6194] = {.lex_state = 88}, - [6195] = {.lex_state = 66}, - [6196] = {.lex_state = 77}, - [6197] = {.lex_state = 56}, - [6198] = {.lex_state = 81}, - [6199] = {.lex_state = 83}, - [6200] = {.lex_state = 54}, - [6201] = {.lex_state = 4}, - [6202] = {.lex_state = 84}, - [6203] = {.lex_state = 0}, + [6158] = {.lex_state = 43}, + [6159] = {.lex_state = 43}, + [6160] = {.lex_state = 59}, + [6161] = {.lex_state = 43}, + [6162] = {.lex_state = 0}, + [6163] = {.lex_state = 0}, + [6164] = {.lex_state = 4}, + [6165] = {.lex_state = 43}, + [6166] = {.lex_state = 73}, + [6167] = {.lex_state = 59}, + [6168] = {.lex_state = 67}, + [6169] = {.lex_state = 91}, + [6170] = {.lex_state = 88}, + [6171] = {.lex_state = 0}, + [6172] = {.lex_state = 73}, + [6173] = {.lex_state = 4}, + [6174] = {.lex_state = 87}, + [6175] = {.lex_state = 85}, + [6176] = {.lex_state = 75}, + [6177] = {.lex_state = 70}, + [6178] = {.lex_state = 74}, + [6179] = {.lex_state = 72}, + [6180] = {.lex_state = 83}, + [6181] = {.lex_state = 81}, + [6182] = {.lex_state = 61}, + [6183] = {.lex_state = 79}, + [6184] = {.lex_state = 77}, + [6185] = {.lex_state = 64}, + [6186] = {.lex_state = 89}, + [6187] = {.lex_state = 86}, + [6188] = {.lex_state = 78}, + [6189] = {.lex_state = 66}, + [6190] = {.lex_state = 92}, + [6191] = {.lex_state = 90}, + [6192] = {.lex_state = 80}, + [6193] = {.lex_state = 76}, + [6194] = {.lex_state = 69}, + [6195] = {.lex_state = 74}, + [6196] = {.lex_state = 82}, + [6197] = {.lex_state = 84}, + [6198] = {.lex_state = 64}, + [6199] = {.lex_state = 54}, + [6200] = {.lex_state = 84}, + [6201] = {.lex_state = 80}, + [6202] = {.lex_state = 72}, + [6203] = {.lex_state = 74}, [6204] = {.lex_state = 0}, - [6205] = {.lex_state = 0}, - [6206] = {.lex_state = 65}, - [6207] = {.lex_state = 75}, - [6208] = {.lex_state = 76}, - [6209] = {.lex_state = 72}, - [6210] = {.lex_state = 84}, - [6211] = {.lex_state = 75}, - [6212] = {.lex_state = 75}, - [6213] = {.lex_state = 75}, - [6214] = {.lex_state = 81}, - [6215] = {.lex_state = 91}, - [6216] = {.lex_state = 83}, - [6217] = {.lex_state = 65}, - [6218] = {.lex_state = 65}, - [6219] = {.lex_state = 66}, - [6220] = {.lex_state = 88}, - [6221] = {.lex_state = 75}, - [6222] = {.lex_state = 64}, + [6205] = {.lex_state = 70}, + [6206] = {.lex_state = 75}, + [6207] = {.lex_state = 91}, + [6208] = {.lex_state = 67}, + [6209] = {.lex_state = 59}, + [6210] = {.lex_state = 54}, + [6211] = {.lex_state = 69}, + [6212] = {.lex_state = 73}, + [6213] = {.lex_state = 4}, + [6214] = {.lex_state = 0}, + [6215] = {.lex_state = 0}, + [6216] = {.lex_state = 82}, + [6217] = {.lex_state = 74}, + [6218] = {.lex_state = 74}, + [6219] = {.lex_state = 76}, + [6220] = {.lex_state = 90}, + [6221] = {.lex_state = 92}, + [6222] = {.lex_state = 66}, [6223] = {.lex_state = 78}, - [6224] = {.lex_state = 90}, - [6225] = {.lex_state = 89}, - [6226] = {.lex_state = 43}, - [6227] = {.lex_state = 68}, - [6228] = {.lex_state = 66}, - [6229] = {.lex_state = 85}, - [6230] = {.lex_state = 86}, - [6231] = {.lex_state = 89}, - [6232] = {.lex_state = 68}, - [6233] = {.lex_state = 43}, - [6234] = {.lex_state = 60}, - [6235] = {.lex_state = 85}, - [6236] = {.lex_state = 91}, - [6237] = {.lex_state = 86}, - [6238] = {.lex_state = 56}, - [6239] = {.lex_state = 56}, - [6240] = {.lex_state = 87}, - [6241] = {.lex_state = 60}, - [6242] = {.lex_state = 82}, - [6243] = {.lex_state = 80}, - [6244] = {.lex_state = 69}, - [6245] = {.lex_state = 73}, - [6246] = {.lex_state = 62}, - [6247] = {.lex_state = 76}, - [6248] = {.lex_state = 78}, - [6249] = {.lex_state = 0}, - [6250] = {.lex_state = 54}, - [6251] = {.lex_state = 56}, - [6252] = {.lex_state = 78}, - [6253] = {.lex_state = 0}, - [6254] = {.lex_state = 62}, - [6255] = {.lex_state = 73}, - [6256] = {.lex_state = 87}, - [6257] = {.lex_state = 91}, - [6258] = {.lex_state = 60}, - [6259] = {.lex_state = 91}, - [6260] = {.lex_state = 91}, - [6261] = {.lex_state = 86}, - [6262] = {.lex_state = 85}, - [6263] = {.lex_state = 68}, - [6264] = {.lex_state = 89}, - [6265] = {.lex_state = 90}, - [6266] = {.lex_state = 69}, - [6267] = {.lex_state = 64}, - [6268] = {.lex_state = 75}, - [6269] = {.lex_state = 75}, + [6224] = {.lex_state = 43}, + [6225] = {.lex_state = 86}, + [6226] = {.lex_state = 89}, + [6227] = {.lex_state = 64}, + [6228] = {.lex_state = 43}, + [6229] = {.lex_state = 77}, + [6230] = {.lex_state = 79}, + [6231] = {.lex_state = 61}, + [6232] = {.lex_state = 88}, + [6233] = {.lex_state = 87}, + [6234] = {.lex_state = 85}, + [6235] = {.lex_state = 81}, + [6236] = {.lex_state = 83}, + [6237] = {.lex_state = 85}, + [6238] = {.lex_state = 81}, + [6239] = {.lex_state = 83}, + [6240] = {.lex_state = 81}, + [6241] = {.lex_state = 61}, + [6242] = {.lex_state = 79}, + [6243] = {.lex_state = 77}, + [6244] = {.lex_state = 64}, + [6245] = {.lex_state = 89}, + [6246] = {.lex_state = 86}, + [6247] = {.lex_state = 78}, + [6248] = {.lex_state = 66}, + [6249] = {.lex_state = 92}, + [6250] = {.lex_state = 90}, + [6251] = {.lex_state = 76}, + [6252] = {.lex_state = 74}, + [6253] = {.lex_state = 74}, + [6254] = {.lex_state = 82}, + [6255] = {.lex_state = 69}, + [6256] = {.lex_state = 54}, + [6257] = {.lex_state = 84}, + [6258] = {.lex_state = 80}, + [6259] = {.lex_state = 72}, + [6260] = {.lex_state = 74}, + [6261] = {.lex_state = 70}, + [6262] = {.lex_state = 75}, + [6263] = {.lex_state = 91}, + [6264] = {.lex_state = 67}, + [6265] = {.lex_state = 59}, + [6266] = {.lex_state = 87}, + [6267] = {.lex_state = 43}, + [6268] = {.lex_state = 0}, + [6269] = {.lex_state = 73}, [6270] = {.lex_state = 4}, [6271] = {.lex_state = 0}, - [6272] = {.lex_state = 84}, - [6273] = {.lex_state = 80}, - [6274] = {.lex_state = 72}, - [6275] = {.lex_state = 79}, - [6276] = {.lex_state = 83}, - [6277] = {.lex_state = 81}, - [6278] = {.lex_state = 77}, - [6279] = {.lex_state = 75}, - [6280] = {.lex_state = 70}, - [6281] = {.lex_state = 0}, - [6282] = {.lex_state = 66}, - [6283] = {.lex_state = 0}, - [6284] = {.lex_state = 65}, - [6285] = {.lex_state = 88}, - [6286] = {.lex_state = 66}, - [6287] = {.lex_state = 56}, - [6288] = {.lex_state = 82}, - [6289] = {.lex_state = 87}, - [6290] = {.lex_state = 54}, - [6291] = {.lex_state = 4}, - [6292] = {.lex_state = 54}, - [6293] = {.lex_state = 73}, - [6294] = {.lex_state = 0}, - [6295] = {.lex_state = 0}, - [6296] = {.lex_state = 0}, - [6297] = {.lex_state = 62}, - [6298] = {.lex_state = 76}, - [6299] = {.lex_state = 43}, - [6300] = {.lex_state = 78}, - [6301] = {.lex_state = 76}, - [6302] = {.lex_state = 0}, - [6303] = {.lex_state = 4}, - [6304] = {.lex_state = 43}, - [6305] = {.lex_state = 75}, - [6306] = {.lex_state = 62}, - [6307] = {.lex_state = 87}, - [6308] = {.lex_state = 0}, - [6309] = {.lex_state = 73}, - [6310] = {.lex_state = 87}, - [6311] = {.lex_state = 69}, - [6312] = {.lex_state = 80}, - [6313] = {.lex_state = 0}, - [6314] = {.lex_state = 0}, - [6315] = {.lex_state = 88}, - [6316] = {.lex_state = 82}, - [6317] = {.lex_state = 43}, - [6318] = {.lex_state = 91}, - [6319] = {.lex_state = 0}, - [6320] = {.lex_state = 0}, - [6321] = {.lex_state = 60}, - [6322] = {.lex_state = 43}, - [6323] = {.lex_state = 43}, - [6324] = {.lex_state = 0}, - [6325] = {.lex_state = 86}, - [6326] = {.lex_state = 85}, - [6327] = {.lex_state = 68}, - [6328] = {.lex_state = 89}, - [6329] = {.lex_state = 0}, - [6330] = {.lex_state = 69}, - [6331] = {.lex_state = 82}, - [6332] = {.lex_state = 80}, - [6333] = {.lex_state = 69}, - [6334] = {.lex_state = 73}, - [6335] = {.lex_state = 4}, - [6336] = {.lex_state = 75}, - [6337] = {.lex_state = 0}, - [6338] = {.lex_state = 90}, - [6339] = {.lex_state = 4}, - [6340] = {.lex_state = 78}, - [6341] = {.lex_state = 76}, - [6342] = {.lex_state = 62}, - [6343] = {.lex_state = 73}, + [6272] = {.lex_state = 0}, + [6273] = {.lex_state = 0}, + [6274] = {.lex_state = 0}, + [6275] = {.lex_state = 4}, + [6276] = {.lex_state = 43}, + [6277] = {.lex_state = 73}, + [6278] = {.lex_state = 59}, + [6279] = {.lex_state = 67}, + [6280] = {.lex_state = 91}, + [6281] = {.lex_state = 75}, + [6282] = {.lex_state = 43}, + [6283] = {.lex_state = 70}, + [6284] = {.lex_state = 74}, + [6285] = {.lex_state = 72}, + [6286] = {.lex_state = 80}, + [6287] = {.lex_state = 88}, + [6288] = {.lex_state = 87}, + [6289] = {.lex_state = 85}, + [6290] = {.lex_state = 84}, + [6291] = {.lex_state = 54}, + [6292] = {.lex_state = 69}, + [6293] = {.lex_state = 82}, + [6294] = {.lex_state = 83}, + [6295] = {.lex_state = 81}, + [6296] = {.lex_state = 61}, + [6297] = {.lex_state = 79}, + [6298] = {.lex_state = 77}, + [6299] = {.lex_state = 59}, + [6300] = {.lex_state = 89}, + [6301] = {.lex_state = 86}, + [6302] = {.lex_state = 78}, + [6303] = {.lex_state = 66}, + [6304] = {.lex_state = 92}, + [6305] = {.lex_state = 90}, + [6306] = {.lex_state = 74}, + [6307] = {.lex_state = 76}, + [6308] = {.lex_state = 74}, + [6309] = {.lex_state = 74}, + [6310] = {.lex_state = 82}, + [6311] = {.lex_state = 74}, + [6312] = {.lex_state = 69}, + [6313] = {.lex_state = 54}, + [6314] = {.lex_state = 84}, + [6315] = {.lex_state = 80}, + [6316] = {.lex_state = 72}, + [6317] = {.lex_state = 74}, + [6318] = {.lex_state = 70}, + [6319] = {.lex_state = 75}, + [6320] = {.lex_state = 91}, + [6321] = {.lex_state = 67}, + [6322] = {.lex_state = 82}, + [6323] = {.lex_state = 76}, + [6324] = {.lex_state = 73}, + [6325] = {.lex_state = 4}, + [6326] = {.lex_state = 0}, + [6327] = {.lex_state = 0}, + [6328] = {.lex_state = 90}, + [6329] = {.lex_state = 92}, + [6330] = {.lex_state = 66}, + [6331] = {.lex_state = 78}, + [6332] = {.lex_state = 86}, + [6333] = {.lex_state = 89}, + [6334] = {.lex_state = 64}, + [6335] = {.lex_state = 77}, + [6336] = {.lex_state = 43}, + [6337] = {.lex_state = 79}, + [6338] = {.lex_state = 61}, + [6339] = {.lex_state = 88}, + [6340] = {.lex_state = 81}, + [6341] = {.lex_state = 83}, + [6342] = {.lex_state = 43}, + [6343] = {.lex_state = 43}, [6344] = {.lex_state = 87}, - [6345] = {.lex_state = 84}, - [6346] = {.lex_state = 70}, - [6347] = {.lex_state = 43}, - [6348] = {.lex_state = 91}, - [6349] = {.lex_state = 60}, - [6350] = {.lex_state = 54}, - [6351] = {.lex_state = 86}, - [6352] = {.lex_state = 85}, - [6353] = {.lex_state = 68}, - [6354] = {.lex_state = 89}, - [6355] = {.lex_state = 90}, - [6356] = {.lex_state = 76}, - [6357] = {.lex_state = 54}, - [6358] = {.lex_state = 64}, - [6359] = {.lex_state = 75}, - [6360] = {.lex_state = 75}, - [6361] = {.lex_state = 84}, - [6362] = {.lex_state = 56}, - [6363] = {.lex_state = 72}, - [6364] = {.lex_state = 79}, - [6365] = {.lex_state = 83}, - [6366] = {.lex_state = 56}, - [6367] = {.lex_state = 78}, - [6368] = {.lex_state = 81}, - [6369] = {.lex_state = 77}, - [6370] = {.lex_state = 75}, - [6371] = {.lex_state = 70}, - [6372] = {.lex_state = 65}, - [6373] = {.lex_state = 88}, - [6374] = {.lex_state = 66}, - [6375] = {.lex_state = 56}, - [6376] = {.lex_state = 66}, - [6377] = {.lex_state = 75}, - [6378] = {.lex_state = 43}, - [6379] = {.lex_state = 77}, - [6380] = {.lex_state = 88}, - [6381] = {.lex_state = 54}, - [6382] = {.lex_state = 4}, - [6383] = {.lex_state = 60}, - [6384] = {.lex_state = 0}, - [6385] = {.lex_state = 0}, - [6386] = {.lex_state = 0}, - [6387] = {.lex_state = 65}, - [6388] = {.lex_state = 86}, - [6389] = {.lex_state = 70}, + [6345] = {.lex_state = 88}, + [6346] = {.lex_state = 88}, + [6347] = {.lex_state = 87}, + [6348] = {.lex_state = 85}, + [6349] = {.lex_state = 43}, + [6350] = {.lex_state = 43}, + [6351] = {.lex_state = 83}, + [6352] = {.lex_state = 81}, + [6353] = {.lex_state = 61}, + [6354] = {.lex_state = 79}, + [6355] = {.lex_state = 77}, + [6356] = {.lex_state = 64}, + [6357] = {.lex_state = 89}, + [6358] = {.lex_state = 86}, + [6359] = {.lex_state = 78}, + [6360] = {.lex_state = 66}, + [6361] = {.lex_state = 92}, + [6362] = {.lex_state = 90}, + [6363] = {.lex_state = 76}, + [6364] = {.lex_state = 74}, + [6365] = {.lex_state = 74}, + [6366] = {.lex_state = 82}, + [6367] = {.lex_state = 69}, + [6368] = {.lex_state = 54}, + [6369] = {.lex_state = 84}, + [6370] = {.lex_state = 80}, + [6371] = {.lex_state = 72}, + [6372] = {.lex_state = 74}, + [6373] = {.lex_state = 70}, + [6374] = {.lex_state = 75}, + [6375] = {.lex_state = 91}, + [6376] = {.lex_state = 67}, + [6377] = {.lex_state = 59}, + [6378] = {.lex_state = 73}, + [6379] = {.lex_state = 4}, + [6380] = {.lex_state = 0}, + [6381] = {.lex_state = 0}, + [6382] = {.lex_state = 0}, + [6383] = {.lex_state = 0}, + [6384] = {.lex_state = 4}, + [6385] = {.lex_state = 73}, + [6386] = {.lex_state = 59}, + [6387] = {.lex_state = 67}, + [6388] = {.lex_state = 91}, + [6389] = {.lex_state = 43}, [6390] = {.lex_state = 75}, - [6391] = {.lex_state = 77}, - [6392] = {.lex_state = 64}, - [6393] = {.lex_state = 81}, - [6394] = {.lex_state = 83}, - [6395] = {.lex_state = 79}, - [6396] = {.lex_state = 85}, - [6397] = {.lex_state = 43}, - [6398] = {.lex_state = 81}, - [6399] = {.lex_state = 69}, - [6400] = {.lex_state = 75}, - [6401] = {.lex_state = 84}, - [6402] = {.lex_state = 72}, - [6403] = {.lex_state = 79}, - [6404] = {.lex_state = 72}, - [6405] = {.lex_state = 43}, - [6406] = {.lex_state = 84}, - [6407] = {.lex_state = 75}, - [6408] = {.lex_state = 73}, - [6409] = {.lex_state = 0}, - [6410] = {.lex_state = 83}, - [6411] = {.lex_state = 64}, - [6412] = {.lex_state = 43}, - [6413] = {.lex_state = 90}, - [6414] = {.lex_state = 0}, - [6415] = {.lex_state = 89}, - [6416] = {.lex_state = 0}, - [6417] = {.lex_state = 68}, - [6418] = {.lex_state = 0}, - [6419] = {.lex_state = 82}, - [6420] = {.lex_state = 66}, - [6421] = {.lex_state = 80}, - [6422] = {.lex_state = 69}, - [6423] = {.lex_state = 85}, - [6424] = {.lex_state = 86}, - [6425] = {.lex_state = 4}, - [6426] = {.lex_state = 60}, - [6427] = {.lex_state = 78}, - [6428] = {.lex_state = 76}, - [6429] = {.lex_state = 62}, - [6430] = {.lex_state = 83}, - [6431] = {.lex_state = 88}, - [6432] = {.lex_state = 73}, - [6433] = {.lex_state = 87}, - [6434] = {.lex_state = 91}, - [6435] = {.lex_state = 60}, - [6436] = {.lex_state = 54}, + [6391] = {.lex_state = 70}, + [6392] = {.lex_state = 74}, + [6393] = {.lex_state = 72}, + [6394] = {.lex_state = 80}, + [6395] = {.lex_state = 43}, + [6396] = {.lex_state = 84}, + [6397] = {.lex_state = 54}, + [6398] = {.lex_state = 69}, + [6399] = {.lex_state = 43}, + [6400] = {.lex_state = 88}, + [6401] = {.lex_state = 87}, + [6402] = {.lex_state = 85}, + [6403] = {.lex_state = 74}, + [6404] = {.lex_state = 74}, + [6405] = {.lex_state = 76}, + [6406] = {.lex_state = 90}, + [6407] = {.lex_state = 83}, + [6408] = {.lex_state = 81}, + [6409] = {.lex_state = 61}, + [6410] = {.lex_state = 79}, + [6411] = {.lex_state = 77}, + [6412] = {.lex_state = 64}, + [6413] = {.lex_state = 89}, + [6414] = {.lex_state = 86}, + [6415] = {.lex_state = 78}, + [6416] = {.lex_state = 66}, + [6417] = {.lex_state = 92}, + [6418] = {.lex_state = 90}, + [6419] = {.lex_state = 92}, + [6420] = {.lex_state = 76}, + [6421] = {.lex_state = 74}, + [6422] = {.lex_state = 74}, + [6423] = {.lex_state = 82}, + [6424] = {.lex_state = 66}, + [6425] = {.lex_state = 69}, + [6426] = {.lex_state = 54}, + [6427] = {.lex_state = 84}, + [6428] = {.lex_state = 80}, + [6429] = {.lex_state = 72}, + [6430] = {.lex_state = 74}, + [6431] = {.lex_state = 70}, + [6432] = {.lex_state = 75}, + [6433] = {.lex_state = 91}, + [6434] = {.lex_state = 67}, + [6435] = {.lex_state = 59}, + [6436] = {.lex_state = 78}, [6437] = {.lex_state = 86}, - [6438] = {.lex_state = 85}, - [6439] = {.lex_state = 68}, - [6440] = {.lex_state = 89}, - [6441] = {.lex_state = 90}, - [6442] = {.lex_state = 43}, - [6443] = {.lex_state = 79}, - [6444] = {.lex_state = 91}, - [6445] = {.lex_state = 64}, - [6446] = {.lex_state = 75}, - [6447] = {.lex_state = 75}, - [6448] = {.lex_state = 84}, - [6449] = {.lex_state = 87}, - [6450] = {.lex_state = 72}, - [6451] = {.lex_state = 79}, - [6452] = {.lex_state = 80}, - [6453] = {.lex_state = 83}, - [6454] = {.lex_state = 81}, - [6455] = {.lex_state = 77}, - [6456] = {.lex_state = 75}, - [6457] = {.lex_state = 70}, - [6458] = {.lex_state = 65}, - [6459] = {.lex_state = 88}, - [6460] = {.lex_state = 66}, - [6461] = {.lex_state = 56}, - [6462] = {.lex_state = 72}, - [6463] = {.lex_state = 65}, - [6464] = {.lex_state = 0}, - [6465] = {.lex_state = 62}, - [6466] = {.lex_state = 54}, - [6467] = {.lex_state = 4}, - [6468] = {.lex_state = 81}, - [6469] = {.lex_state = 0}, - [6470] = {.lex_state = 0}, - [6471] = {.lex_state = 0}, - [6472] = {.lex_state = 76}, - [6473] = {.lex_state = 78}, - [6474] = {.lex_state = 4}, - [6475] = {.lex_state = 69}, - [6476] = {.lex_state = 80}, - [6477] = {.lex_state = 77}, - [6478] = {.lex_state = 82}, - [6479] = {.lex_state = 56}, - [6480] = {.lex_state = 0}, - [6481] = {.lex_state = 73}, - [6482] = {.lex_state = 70}, - [6483] = {.lex_state = 66}, - [6484] = {.lex_state = 82}, - [6485] = {.lex_state = 43}, - [6486] = {.lex_state = 65}, - [6487] = {.lex_state = 70}, - [6488] = {.lex_state = 75}, - [6489] = {.lex_state = 43}, - [6490] = {.lex_state = 77}, - [6491] = {.lex_state = 43}, - [6492] = {.lex_state = 81}, - [6493] = {.lex_state = 83}, - [6494] = {.lex_state = 82}, - [6495] = {.lex_state = 75}, - [6496] = {.lex_state = 79}, - [6497] = {.lex_state = 43}, - [6498] = {.lex_state = 43}, - [6499] = {.lex_state = 72}, - [6500] = {.lex_state = 75}, - [6501] = {.lex_state = 84}, - [6502] = {.lex_state = 75}, - [6503] = {.lex_state = 75}, - [6504] = {.lex_state = 82}, - [6505] = {.lex_state = 80}, - [6506] = {.lex_state = 80}, - [6507] = {.lex_state = 69}, - [6508] = {.lex_state = 64}, - [6509] = {.lex_state = 70}, - [6510] = {.lex_state = 68}, - [6511] = {.lex_state = 85}, - [6512] = {.lex_state = 78}, - [6513] = {.lex_state = 76}, - [6514] = {.lex_state = 62}, - [6515] = {.lex_state = 73}, - [6516] = {.lex_state = 66}, - [6517] = {.lex_state = 87}, - [6518] = {.lex_state = 91}, - [6519] = {.lex_state = 60}, - [6520] = {.lex_state = 90}, - [6521] = {.lex_state = 86}, - [6522] = {.lex_state = 85}, - [6523] = {.lex_state = 68}, - [6524] = {.lex_state = 89}, - [6525] = {.lex_state = 90}, - [6526] = {.lex_state = 69}, - [6527] = {.lex_state = 82}, - [6528] = {.lex_state = 89}, - [6529] = {.lex_state = 64}, - [6530] = {.lex_state = 75}, - [6531] = {.lex_state = 75}, - [6532] = {.lex_state = 84}, - [6533] = {.lex_state = 80}, - [6534] = {.lex_state = 72}, - [6535] = {.lex_state = 79}, - [6536] = {.lex_state = 83}, - [6537] = {.lex_state = 81}, - [6538] = {.lex_state = 77}, - [6539] = {.lex_state = 75}, - [6540] = {.lex_state = 70}, - [6541] = {.lex_state = 65}, - [6542] = {.lex_state = 88}, - [6543] = {.lex_state = 66}, - [6544] = {.lex_state = 56}, - [6545] = {.lex_state = 0}, - [6546] = {.lex_state = 0}, - [6547] = {.lex_state = 54}, - [6548] = {.lex_state = 69}, - [6549] = {.lex_state = 4}, - [6550] = {.lex_state = 68}, - [6551] = {.lex_state = 0}, - [6552] = {.lex_state = 0}, + [6438] = {.lex_state = 73}, + [6439] = {.lex_state = 4}, + [6440] = {.lex_state = 0}, + [6441] = {.lex_state = 0}, + [6442] = {.lex_state = 89}, + [6443] = {.lex_state = 64}, + [6444] = {.lex_state = 77}, + [6445] = {.lex_state = 79}, + [6446] = {.lex_state = 61}, + [6447] = {.lex_state = 85}, + [6448] = {.lex_state = 83}, + [6449] = {.lex_state = 85}, + [6450] = {.lex_state = 80}, + [6451] = {.lex_state = 87}, + [6452] = {.lex_state = 88}, + [6453] = {.lex_state = 43}, + [6454] = {.lex_state = 43}, + [6455] = {.lex_state = 43}, + [6456] = {.lex_state = 88}, + [6457] = {.lex_state = 87}, + [6458] = {.lex_state = 85}, + [6459] = {.lex_state = 0}, + [6460] = {.lex_state = 83}, + [6461] = {.lex_state = 81}, + [6462] = {.lex_state = 61}, + [6463] = {.lex_state = 79}, + [6464] = {.lex_state = 77}, + [6465] = {.lex_state = 64}, + [6466] = {.lex_state = 89}, + [6467] = {.lex_state = 86}, + [6468] = {.lex_state = 78}, + [6469] = {.lex_state = 66}, + [6470] = {.lex_state = 92}, + [6471] = {.lex_state = 90}, + [6472] = {.lex_state = 0}, + [6473] = {.lex_state = 76}, + [6474] = {.lex_state = 74}, + [6475] = {.lex_state = 74}, + [6476] = {.lex_state = 82}, + [6477] = {.lex_state = 69}, + [6478] = {.lex_state = 54}, + [6479] = {.lex_state = 84}, + [6480] = {.lex_state = 80}, + [6481] = {.lex_state = 72}, + [6482] = {.lex_state = 74}, + [6483] = {.lex_state = 70}, + [6484] = {.lex_state = 75}, + [6485] = {.lex_state = 91}, + [6486] = {.lex_state = 67}, + [6487] = {.lex_state = 59}, + [6488] = {.lex_state = 4}, + [6489] = {.lex_state = 73}, + [6490] = {.lex_state = 73}, + [6491] = {.lex_state = 4}, + [6492] = {.lex_state = 0}, + [6493] = {.lex_state = 0}, + [6494] = {.lex_state = 59}, + [6495] = {.lex_state = 67}, + [6496] = {.lex_state = 91}, + [6497] = {.lex_state = 75}, + [6498] = {.lex_state = 70}, + [6499] = {.lex_state = 74}, + [6500] = {.lex_state = 72}, + [6501] = {.lex_state = 64}, + [6502] = {.lex_state = 84}, + [6503] = {.lex_state = 43}, + [6504] = {.lex_state = 54}, + [6505] = {.lex_state = 69}, + [6506] = {.lex_state = 82}, + [6507] = {.lex_state = 74}, + [6508] = {.lex_state = 74}, + [6509] = {.lex_state = 43}, + [6510] = {.lex_state = 76}, + [6511] = {.lex_state = 90}, + [6512] = {.lex_state = 92}, + [6513] = {.lex_state = 66}, + [6514] = {.lex_state = 88}, + [6515] = {.lex_state = 87}, + [6516] = {.lex_state = 85}, + [6517] = {.lex_state = 78}, + [6518] = {.lex_state = 86}, + [6519] = {.lex_state = 89}, + [6520] = {.lex_state = 83}, + [6521] = {.lex_state = 81}, + [6522] = {.lex_state = 61}, + [6523] = {.lex_state = 79}, + [6524] = {.lex_state = 77}, + [6525] = {.lex_state = 64}, + [6526] = {.lex_state = 89}, + [6527] = {.lex_state = 86}, + [6528] = {.lex_state = 78}, + [6529] = {.lex_state = 66}, + [6530] = {.lex_state = 92}, + [6531] = {.lex_state = 90}, + [6532] = {.lex_state = 64}, + [6533] = {.lex_state = 76}, + [6534] = {.lex_state = 74}, + [6535] = {.lex_state = 74}, + [6536] = {.lex_state = 82}, + [6537] = {.lex_state = 77}, + [6538] = {.lex_state = 69}, + [6539] = {.lex_state = 54}, + [6540] = {.lex_state = 84}, + [6541] = {.lex_state = 80}, + [6542] = {.lex_state = 72}, + [6543] = {.lex_state = 74}, + [6544] = {.lex_state = 70}, + [6545] = {.lex_state = 75}, + [6546] = {.lex_state = 91}, + [6547] = {.lex_state = 67}, + [6548] = {.lex_state = 59}, + [6549] = {.lex_state = 79}, + [6550] = {.lex_state = 81}, + [6551] = {.lex_state = 73}, + [6552] = {.lex_state = 4}, [6553] = {.lex_state = 0}, - [6554] = {.lex_state = 72}, - [6555] = {.lex_state = 85}, - [6556] = {.lex_state = 4}, - [6557] = {.lex_state = 54}, - [6558] = {.lex_state = 75}, - [6559] = {.lex_state = 81}, - [6560] = {.lex_state = 86}, - [6561] = {.lex_state = 56}, - [6562] = {.lex_state = 66}, - [6563] = {.lex_state = 88}, - [6564] = {.lex_state = 83}, - [6565] = {.lex_state = 79}, - [6566] = {.lex_state = 60}, - [6567] = {.lex_state = 91}, - [6568] = {.lex_state = 87}, - [6569] = {.lex_state = 75}, - [6570] = {.lex_state = 72}, - [6571] = {.lex_state = 73}, - [6572] = {.lex_state = 78}, - [6573] = {.lex_state = 43}, - [6574] = {.lex_state = 65}, - [6575] = {.lex_state = 70}, - [6576] = {.lex_state = 75}, - [6577] = {.lex_state = 62}, - [6578] = {.lex_state = 77}, - [6579] = {.lex_state = 43}, - [6580] = {.lex_state = 76}, - [6581] = {.lex_state = 81}, - [6582] = {.lex_state = 76}, - [6583] = {.lex_state = 83}, - [6584] = {.lex_state = 78}, - [6585] = {.lex_state = 79}, - [6586] = {.lex_state = 65}, - [6587] = {.lex_state = 82}, - [6588] = {.lex_state = 80}, - [6589] = {.lex_state = 69}, - [6590] = {.lex_state = 85}, - [6591] = {.lex_state = 62}, - [6592] = {.lex_state = 79}, + [6554] = {.lex_state = 0}, + [6555] = {.lex_state = 81}, + [6556] = {.lex_state = 83}, + [6557] = {.lex_state = 85}, + [6558] = {.lex_state = 87}, + [6559] = {.lex_state = 88}, + [6560] = {.lex_state = 43}, + [6561] = {.lex_state = 43}, + [6562] = {.lex_state = 43}, + [6563] = {.lex_state = 43}, + [6564] = {.lex_state = 0}, + [6565] = {.lex_state = 0}, + [6566] = {.lex_state = 88}, + [6567] = {.lex_state = 87}, + [6568] = {.lex_state = 85}, + [6569] = {.lex_state = 4}, + [6570] = {.lex_state = 73}, + [6571] = {.lex_state = 59}, + [6572] = {.lex_state = 67}, + [6573] = {.lex_state = 83}, + [6574] = {.lex_state = 81}, + [6575] = {.lex_state = 61}, + [6576] = {.lex_state = 79}, + [6577] = {.lex_state = 77}, + [6578] = {.lex_state = 4}, + [6579] = {.lex_state = 89}, + [6580] = {.lex_state = 86}, + [6581] = {.lex_state = 78}, + [6582] = {.lex_state = 66}, + [6583] = {.lex_state = 92}, + [6584] = {.lex_state = 90}, + [6585] = {.lex_state = 91}, + [6586] = {.lex_state = 76}, + [6587] = {.lex_state = 74}, + [6588] = {.lex_state = 74}, + [6589] = {.lex_state = 82}, + [6590] = {.lex_state = 75}, + [6591] = {.lex_state = 69}, + [6592] = {.lex_state = 54}, [6593] = {.lex_state = 84}, - [6594] = {.lex_state = 75}, - [6595] = {.lex_state = 75}, - [6596] = {.lex_state = 78}, - [6597] = {.lex_state = 76}, - [6598] = {.lex_state = 62}, - [6599] = {.lex_state = 73}, - [6600] = {.lex_state = 87}, - [6601] = {.lex_state = 91}, - [6602] = {.lex_state = 60}, - [6603] = {.lex_state = 88}, - [6604] = {.lex_state = 86}, - [6605] = {.lex_state = 85}, - [6606] = {.lex_state = 68}, - [6607] = {.lex_state = 89}, - [6608] = {.lex_state = 90}, - [6609] = {.lex_state = 64}, - [6610] = {.lex_state = 64}, - [6611] = {.lex_state = 75}, - [6612] = {.lex_state = 75}, - [6613] = {.lex_state = 75}, - [6614] = {.lex_state = 84}, - [6615] = {.lex_state = 90}, - [6616] = {.lex_state = 72}, - [6617] = {.lex_state = 79}, - [6618] = {.lex_state = 83}, - [6619] = {.lex_state = 81}, - [6620] = {.lex_state = 77}, - [6621] = {.lex_state = 75}, - [6622] = {.lex_state = 62}, - [6623] = {.lex_state = 87}, - [6624] = {.lex_state = 70}, - [6625] = {.lex_state = 65}, - [6626] = {.lex_state = 88}, - [6627] = {.lex_state = 66}, - [6628] = {.lex_state = 56}, - [6629] = {.lex_state = 89}, - [6630] = {.lex_state = 88}, - [6631] = {.lex_state = 54}, - [6632] = {.lex_state = 4}, - [6633] = {.lex_state = 56}, - [6634] = {.lex_state = 64}, - [6635] = {.lex_state = 0}, - [6636] = {.lex_state = 0}, - [6637] = {.lex_state = 0}, - [6638] = {.lex_state = 85}, - [6639] = {.lex_state = 86}, - [6640] = {.lex_state = 69}, - [6641] = {.lex_state = 60}, - [6642] = {.lex_state = 80}, - [6643] = {.lex_state = 91}, - [6644] = {.lex_state = 91}, - [6645] = {.lex_state = 87}, - [6646] = {.lex_state = 73}, - [6647] = {.lex_state = 60}, - [6648] = {.lex_state = 90}, - [6649] = {.lex_state = 82}, - [6650] = {.lex_state = 66}, - [6651] = {.lex_state = 54}, - [6652] = {.lex_state = 62}, - [6653] = {.lex_state = 43}, - [6654] = {.lex_state = 68}, - [6655] = {.lex_state = 86}, - [6656] = {.lex_state = 76}, - [6657] = {.lex_state = 78}, - [6658] = {.lex_state = 43}, - [6659] = {.lex_state = 4}, - [6660] = {.lex_state = 68}, - [6661] = {.lex_state = 43}, - [6662] = {.lex_state = 80}, - [6663] = {.lex_state = 0}, - [6664] = {.lex_state = 82}, - [6665] = {.lex_state = 0}, - [6666] = {.lex_state = 43}, + [6594] = {.lex_state = 80}, + [6595] = {.lex_state = 72}, + [6596] = {.lex_state = 74}, + [6597] = {.lex_state = 70}, + [6598] = {.lex_state = 75}, + [6599] = {.lex_state = 91}, + [6600] = {.lex_state = 67}, + [6601] = {.lex_state = 59}, + [6602] = {.lex_state = 70}, + [6603] = {.lex_state = 74}, + [6604] = {.lex_state = 73}, + [6605] = {.lex_state = 88}, + [6606] = {.lex_state = 0}, + [6607] = {.lex_state = 0}, + [6608] = {.lex_state = 72}, + [6609] = {.lex_state = 80}, + [6610] = {.lex_state = 84}, + [6611] = {.lex_state = 54}, + [6612] = {.lex_state = 69}, + [6613] = {.lex_state = 82}, + [6614] = {.lex_state = 74}, + [6615] = {.lex_state = 61}, + [6616] = {.lex_state = 76}, + [6617] = {.lex_state = 43}, + [6618] = {.lex_state = 90}, + [6619] = {.lex_state = 92}, + [6620] = {.lex_state = 66}, + [6621] = {.lex_state = 42}, + [6622] = {.lex_state = 78}, + [6623] = {.lex_state = 86}, + [6624] = {.lex_state = 43}, + [6625] = {.lex_state = 89}, + [6626] = {.lex_state = 64}, + [6627] = {.lex_state = 77}, + [6628] = {.lex_state = 88}, + [6629] = {.lex_state = 87}, + [6630] = {.lex_state = 85}, + [6631] = {.lex_state = 79}, + [6632] = {.lex_state = 61}, + [6633] = {.lex_state = 81}, + [6634] = {.lex_state = 83}, + [6635] = {.lex_state = 83}, + [6636] = {.lex_state = 81}, + [6637] = {.lex_state = 61}, + [6638] = {.lex_state = 79}, + [6639] = {.lex_state = 77}, + [6640] = {.lex_state = 64}, + [6641] = {.lex_state = 89}, + [6642] = {.lex_state = 86}, + [6643] = {.lex_state = 78}, + [6644] = {.lex_state = 66}, + [6645] = {.lex_state = 92}, + [6646] = {.lex_state = 90}, + [6647] = {.lex_state = 74}, + [6648] = {.lex_state = 76}, + [6649] = {.lex_state = 74}, + [6650] = {.lex_state = 74}, + [6651] = {.lex_state = 82}, + [6652] = {.lex_state = 85}, + [6653] = {.lex_state = 69}, + [6654] = {.lex_state = 54}, + [6655] = {.lex_state = 84}, + [6656] = {.lex_state = 80}, + [6657] = {.lex_state = 72}, + [6658] = {.lex_state = 74}, + [6659] = {.lex_state = 70}, + [6660] = {.lex_state = 75}, + [6661] = {.lex_state = 91}, + [6662] = {.lex_state = 67}, + [6663] = {.lex_state = 59}, + [6664] = {.lex_state = 73}, + [6665] = {.lex_state = 4}, + [6666] = {.lex_state = 0}, [6667] = {.lex_state = 0}, - [6668] = {.lex_state = 82}, - [6669] = {.lex_state = 80}, - [6670] = {.lex_state = 69}, - [6671] = {.lex_state = 85}, - [6672] = {.lex_state = 68}, - [6673] = {.lex_state = 43}, - [6674] = {.lex_state = 89}, - [6675] = {.lex_state = 78}, - [6676] = {.lex_state = 90}, - [6677] = {.lex_state = 76}, - [6678] = {.lex_state = 62}, - [6679] = {.lex_state = 73}, - [6680] = {.lex_state = 87}, - [6681] = {.lex_state = 91}, - [6682] = {.lex_state = 60}, - [6683] = {.lex_state = 84}, - [6684] = {.lex_state = 86}, - [6685] = {.lex_state = 85}, - [6686] = {.lex_state = 78}, - [6687] = {.lex_state = 64}, - [6688] = {.lex_state = 68}, - [6689] = {.lex_state = 89}, - [6690] = {.lex_state = 90}, - [6691] = {.lex_state = 43}, - [6692] = {.lex_state = 64}, - [6693] = {.lex_state = 75}, - [6694] = {.lex_state = 75}, - [6695] = {.lex_state = 84}, - [6696] = {.lex_state = 0}, - [6697] = {.lex_state = 72}, - [6698] = {.lex_state = 75}, - [6699] = {.lex_state = 83}, - [6700] = {.lex_state = 81}, - [6701] = {.lex_state = 77}, - [6702] = {.lex_state = 75}, - [6703] = {.lex_state = 70}, - [6704] = {.lex_state = 65}, - [6705] = {.lex_state = 88}, - [6706] = {.lex_state = 66}, - [6707] = {.lex_state = 56}, - [6708] = {.lex_state = 75}, - [6709] = {.lex_state = 0}, - [6710] = {.lex_state = 0}, - [6711] = {.lex_state = 54}, - [6712] = {.lex_state = 4}, - [6713] = {.lex_state = 4}, - [6714] = {.lex_state = 0}, - [6715] = {.lex_state = 0}, - [6716] = {.lex_state = 0}, - [6717] = {.lex_state = 54}, - [6718] = {.lex_state = 76}, - [6719] = {.lex_state = 84}, - [6720] = {.lex_state = 84}, - [6721] = {.lex_state = 43}, - [6722] = {.lex_state = 43}, - [6723] = {.lex_state = 56}, - [6724] = {.lex_state = 0}, - [6725] = {.lex_state = 0}, - [6726] = {.lex_state = 0}, - [6727] = {.lex_state = 72}, - [6728] = {.lex_state = 79}, - [6729] = {.lex_state = 89}, - [6730] = {.lex_state = 66}, - [6731] = {.lex_state = 88}, - [6732] = {.lex_state = 65}, - [6733] = {.lex_state = 70}, - [6734] = {.lex_state = 75}, - [6735] = {.lex_state = 43}, - [6736] = {.lex_state = 4}, - [6737] = {.lex_state = 54}, - [6738] = {.lex_state = 56}, - [6739] = {.lex_state = 77}, - [6740] = {.lex_state = 83}, - [6741] = {.lex_state = 66}, - [6742] = {.lex_state = 43}, - [6743] = {.lex_state = 88}, - [6744] = {.lex_state = 81}, - [6745] = {.lex_state = 83}, - [6746] = {.lex_state = 79}, - [6747] = {.lex_state = 65}, - [6748] = {.lex_state = 72}, - [6749] = {.lex_state = 82}, - [6750] = {.lex_state = 80}, - [6751] = {.lex_state = 81}, - [6752] = {.lex_state = 69}, - [6753] = {.lex_state = 70}, - [6754] = {.lex_state = 75}, - [6755] = {.lex_state = 77}, - [6756] = {.lex_state = 81}, - [6757] = {.lex_state = 78}, - [6758] = {.lex_state = 76}, - [6759] = {.lex_state = 62}, - [6760] = {.lex_state = 73}, - [6761] = {.lex_state = 87}, - [6762] = {.lex_state = 42}, - [6763] = {.lex_state = 91}, - [6764] = {.lex_state = 60}, - [6765] = {.lex_state = 83}, - [6766] = {.lex_state = 86}, - [6767] = {.lex_state = 85}, - [6768] = {.lex_state = 68}, - [6769] = {.lex_state = 89}, - [6770] = {.lex_state = 90}, - [6771] = {.lex_state = 69}, - [6772] = {.lex_state = 77}, - [6773] = {.lex_state = 64}, - [6774] = {.lex_state = 75}, - [6775] = {.lex_state = 75}, - [6776] = {.lex_state = 84}, - [6777] = {.lex_state = 79}, - [6778] = {.lex_state = 72}, - [6779] = {.lex_state = 79}, - [6780] = {.lex_state = 83}, - [6781] = {.lex_state = 81}, - [6782] = {.lex_state = 73}, - [6783] = {.lex_state = 75}, - [6784] = {.lex_state = 77}, - [6785] = {.lex_state = 75}, - [6786] = {.lex_state = 70}, - [6787] = {.lex_state = 65}, - [6788] = {.lex_state = 88}, - [6789] = {.lex_state = 66}, - [6790] = {.lex_state = 56}, - [6791] = {.lex_state = 72}, - [6792] = {.lex_state = 84}, - [6793] = {.lex_state = 70}, - [6794] = {.lex_state = 65}, - [6795] = {.lex_state = 87}, - [6796] = {.lex_state = 54}, - [6797] = {.lex_state = 4}, - [6798] = {.lex_state = 0}, - [6799] = {.lex_state = 0}, - [6800] = {.lex_state = 0}, - [6801] = {.lex_state = 75}, - [6802] = {.lex_state = 75}, - [6803] = {.lex_state = 64}, - [6804] = {.lex_state = 88}, - [6805] = {.lex_state = 90}, - [6806] = {.lex_state = 64}, - [6807] = {.lex_state = 86}, - [6808] = {.lex_state = 66}, - [6809] = {.lex_state = 56}, - [6810] = {.lex_state = 60}, - [6811] = {.lex_state = 43}, - [6812] = {.lex_state = 91}, - [6813] = {.lex_state = 87}, - [6814] = {.lex_state = 91}, - [6815] = {.lex_state = 75}, - [6816] = {.lex_state = 73}, - [6817] = {.lex_state = 62}, - [6818] = {.lex_state = 43}, - [6819] = {.lex_state = 76}, - [6820] = {.lex_state = 78}, - [6821] = {.lex_state = 69}, - [6822] = {.lex_state = 82}, - [6823] = {.lex_state = 80}, - [6824] = {.lex_state = 69}, - [6825] = {.lex_state = 60}, - [6826] = {.lex_state = 86}, - [6827] = {.lex_state = 85}, - [6828] = {.lex_state = 80}, - [6829] = {.lex_state = 82}, - [6830] = {.lex_state = 78}, - [6831] = {.lex_state = 76}, - [6832] = {.lex_state = 62}, - [6833] = {.lex_state = 73}, - [6834] = {.lex_state = 87}, - [6835] = {.lex_state = 91}, - [6836] = {.lex_state = 54}, - [6837] = {.lex_state = 60}, - [6838] = {.lex_state = 86}, - [6839] = {.lex_state = 85}, - [6840] = {.lex_state = 68}, - [6841] = {.lex_state = 89}, - [6842] = {.lex_state = 90}, - [6843] = {.lex_state = 64}, - [6844] = {.lex_state = 75}, - [6845] = {.lex_state = 75}, - [6846] = {.lex_state = 68}, - [6847] = {.lex_state = 4}, - [6848] = {.lex_state = 42}, - [6849] = {.lex_state = 42}, - [6850] = {.lex_state = 42}, - [6851] = {.lex_state = 42}, - [6852] = {.lex_state = 42}, - [6853] = {.lex_state = 42}, - [6854] = {.lex_state = 42}, - [6855] = {.lex_state = 42}, - [6856] = {.lex_state = 42}, - [6857] = {.lex_state = 42}, - [6858] = {.lex_state = 42}, - [6859] = {.lex_state = 42}, - [6860] = {.lex_state = 42}, - [6861] = {.lex_state = 42}, - [6862] = {.lex_state = 42}, - [6863] = {.lex_state = 42}, - [6864] = {.lex_state = 42}, - [6865] = {.lex_state = 42}, - [6866] = {.lex_state = 42}, - [6867] = {.lex_state = 42}, - [6868] = {.lex_state = 42}, - [6869] = {.lex_state = 42}, - [6870] = {.lex_state = 42}, - [6871] = {.lex_state = 42}, - [6872] = {.lex_state = 42}, - [6873] = {.lex_state = 42}, - [6874] = {.lex_state = 42}, - [6875] = {.lex_state = 42}, - [6876] = {.lex_state = 42}, - [6877] = {.lex_state = 42}, - [6878] = {.lex_state = 42}, - [6879] = {.lex_state = 42}, - [6880] = {.lex_state = 42}, - [6881] = {.lex_state = 42}, + [6668] = {.lex_state = 43}, + [6669] = {.lex_state = 43}, + [6670] = {.lex_state = 88}, + [6671] = {.lex_state = 87}, + [6672] = {.lex_state = 85}, + [6673] = {.lex_state = 83}, + [6674] = {.lex_state = 81}, + [6675] = {.lex_state = 61}, + [6676] = {.lex_state = 79}, + [6677] = {.lex_state = 77}, + [6678] = {.lex_state = 64}, + [6679] = {.lex_state = 89}, + [6680] = {.lex_state = 86}, + [6681] = {.lex_state = 78}, + [6682] = {.lex_state = 66}, + [6683] = {.lex_state = 92}, + [6684] = {.lex_state = 90}, + [6685] = {.lex_state = 76}, + [6686] = {.lex_state = 74}, + [6687] = {.lex_state = 74}, + [6688] = {.lex_state = 82}, + [6689] = {.lex_state = 69}, + [6690] = {.lex_state = 54}, + [6691] = {.lex_state = 84}, + [6692] = {.lex_state = 80}, + [6693] = {.lex_state = 72}, + [6694] = {.lex_state = 74}, + [6695] = {.lex_state = 70}, + [6696] = {.lex_state = 75}, + [6697] = {.lex_state = 91}, + [6698] = {.lex_state = 67}, + [6699] = {.lex_state = 59}, + [6700] = {.lex_state = 73}, + [6701] = {.lex_state = 4}, + [6702] = {.lex_state = 0}, + [6703] = {.lex_state = 0}, + [6704] = {.lex_state = 43}, + [6705] = {.lex_state = 43}, + [6706] = {.lex_state = 42}, + [6707] = {.lex_state = 42}, + [6708] = {.lex_state = 42}, + [6709] = {.lex_state = 42}, + [6710] = {.lex_state = 42}, + [6711] = {.lex_state = 42}, + [6712] = {.lex_state = 42}, + [6713] = {.lex_state = 42}, + [6714] = {.lex_state = 42}, + [6715] = {.lex_state = 42}, + [6716] = {.lex_state = 42}, + [6717] = {.lex_state = 42}, + [6718] = {.lex_state = 42}, + [6719] = {.lex_state = 42}, + [6720] = {.lex_state = 42}, + [6721] = {.lex_state = 42}, + [6722] = {.lex_state = 42}, + [6723] = {.lex_state = 42}, + [6724] = {.lex_state = 42}, + [6725] = {.lex_state = 42}, + [6726] = {.lex_state = 42}, + [6727] = {.lex_state = 42}, + [6728] = {.lex_state = 42}, + [6729] = {.lex_state = 42}, + [6730] = {.lex_state = 42}, + [6731] = {.lex_state = 42}, + [6732] = {.lex_state = 42}, + [6733] = {.lex_state = 42}, + [6734] = {.lex_state = 42}, + [6735] = {.lex_state = 42}, + [6736] = {.lex_state = 42}, + [6737] = {.lex_state = 42}, + [6738] = {.lex_state = 42}, + [6739] = {.lex_state = 42}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1), - [anon_sym_DASH_DASH_RBRACE_RBRACE] = ACTIONS(1), + [sym_comment] = ACTIONS(1), [aux_sym_keyword_token1] = ACTIONS(1), [anon_sym_LBRACE_LBRACE] = ACTIONS(1), [anon_sym_RBRACE_RBRACE] = ACTIONS(1), @@ -25936,75 +25435,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(1), }, [1] = { - [sym_blade] = STATE(6409), - [sym__definition] = STATE(453), - [sym_comment] = STATE(453), - [sym_keyword] = STATE(453), - [sym_php_statement] = STATE(453), - [sym__escaped] = STATE(3241), - [sym__unescaped] = STATE(3241), - [sym__raw] = STATE(3241), - [sym__inline_raw] = STATE(3241), - [sym__multi_line_raw] = STATE(3241), - [sym_attribute] = STATE(453), - [sym__inline_directive] = STATE(453), - [sym__nested_directive] = STATE(453), - [sym_fragment] = STATE(453), - [sym_section] = STATE(453), - [sym_inlineSection] = STATE(453), - [sym_once] = STATE(453), - [sym_verbatim] = STATE(453), - [sym_stack] = STATE(453), - [sym__push] = STATE(3242), - [sym__pushOnce] = STATE(3242), - [sym__pushIf] = STATE(3242), - [sym__prepend] = STATE(3242), - [sym__prependOnce] = STATE(3242), - [sym_conditional] = STATE(453), - [sym__if] = STATE(3254), - [sym__unless] = STATE(3254), - [sym__isset] = STATE(3254), - [sym__empty] = STATE(3254), - [sym__auth] = STATE(3254), - [sym__guest] = STATE(3254), - [sym__production] = STATE(3254), - [sym__env] = STATE(3254), - [sym__hasSection] = STATE(3254), - [sym__sectionMissing] = STATE(3254), - [sym__error] = STATE(3254), - [sym_authorization] = STATE(3254), - [sym__can] = STATE(3258), - [sym__cannot] = STATE(3258), - [sym__canany] = STATE(3258), - [sym__feature] = STATE(3254), - [sym__custom] = STATE(3254), - [sym_switch] = STATE(453), - [sym_loop] = STATE(453), - [sym_loop_operator] = STATE(453), - [sym__for] = STATE(3259), - [sym__foreach] = STATE(3259), - [sym__forelse] = STATE(3259), - [sym__while] = STATE(3259), - [sym_envoy] = STATE(453), - [sym__setup] = STATE(3241), - [sym__task] = STATE(3280), - [sym__story] = STATE(3280), - [sym__hooks] = STATE(3241), - [sym__before] = STATE(3241), - [sym__after] = STATE(3241), - [sym__envoy_error] = STATE(3241), - [sym__success] = STATE(3241), - [sym__finished] = STATE(3241), - [sym_livewire] = STATE(453), - [sym__persist] = STATE(3262), - [sym__teleport] = STATE(3262), - [sym__volt] = STATE(3262), - [sym_text] = STATE(453), - [sym__text] = STATE(752), - [aux_sym_blade_repeat1] = STATE(453), - [aux_sym_php_only_repeat1] = STATE(752), + [sym_blade] = STATE(6268), + [sym__definition] = STATE(423), + [sym_keyword] = STATE(423), + [sym_php_statement] = STATE(423), + [sym__escaped] = STATE(3168), + [sym__unescaped] = STATE(3168), + [sym__raw] = STATE(3168), + [sym__inline_raw] = STATE(3168), + [sym__multi_line_raw] = STATE(3168), + [sym_attribute] = STATE(423), + [sym__inline_directive] = STATE(423), + [sym__nested_directive] = STATE(423), + [sym_fragment] = STATE(423), + [sym_section] = STATE(423), + [sym_inlineSection] = STATE(423), + [sym_once] = STATE(423), + [sym_verbatim] = STATE(423), + [sym_stack] = STATE(423), + [sym__push] = STATE(3180), + [sym__pushOnce] = STATE(3180), + [sym__pushIf] = STATE(3180), + [sym__prepend] = STATE(3180), + [sym__prependOnce] = STATE(3180), + [sym_conditional] = STATE(423), + [sym__if] = STATE(3183), + [sym__unless] = STATE(3183), + [sym__isset] = STATE(3183), + [sym__empty] = STATE(3183), + [sym__auth] = STATE(3183), + [sym__guest] = STATE(3183), + [sym__production] = STATE(3183), + [sym__env] = STATE(3183), + [sym__hasSection] = STATE(3183), + [sym__sectionMissing] = STATE(3183), + [sym__error] = STATE(3183), + [sym_authorization] = STATE(3183), + [sym__can] = STATE(3184), + [sym__cannot] = STATE(3184), + [sym__canany] = STATE(3184), + [sym__feature] = STATE(3183), + [sym__custom] = STATE(3183), + [sym_switch] = STATE(423), + [sym_loop] = STATE(423), + [sym_loop_operator] = STATE(423), + [sym__for] = STATE(3187), + [sym__foreach] = STATE(3187), + [sym__forelse] = STATE(3187), + [sym__while] = STATE(3187), + [sym_envoy] = STATE(423), + [sym__setup] = STATE(3168), + [sym__task] = STATE(3191), + [sym__story] = STATE(3191), + [sym__hooks] = STATE(3168), + [sym__before] = STATE(3168), + [sym__after] = STATE(3168), + [sym__envoy_error] = STATE(3168), + [sym__success] = STATE(3168), + [sym__finished] = STATE(3168), + [sym_livewire] = STATE(423), + [sym__persist] = STATE(3210), + [sym__teleport] = STATE(3210), + [sym__volt] = STATE(3210), + [sym_text] = STATE(423), + [sym__text] = STATE(934), + [aux_sym_blade_repeat1] = STATE(423), + [aux_sym_php_only_repeat1] = STATE(934), [ts_builtin_sym_end] = ACTIONS(3), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5), + [sym_comment] = ACTIONS(5), [aux_sym_keyword_token1] = ACTIONS(7), [anon_sym_LBRACE_LBRACE] = ACTIONS(9), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(11), @@ -26058,76 +25556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(105), }, [2] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5741), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6612), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -26184,76 +25681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [3] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5705), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5563), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -26310,76 +25806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [4] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5704), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5562), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -26436,76 +25931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [5] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6142), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6064), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -26562,76 +26056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [6] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5632), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5492), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -26688,76 +26181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [7] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5631), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5491), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -26814,76 +26306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [8] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6123), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6044), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -26940,76 +26431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [9] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5563), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5524), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -27066,76 +26556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [10] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5562), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5529), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -27192,202 +26681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [11] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5600), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), - }, - [12] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5599), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5528), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -27443,77 +26805,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(211), [aux_sym__text_token3] = ACTIONS(213), }, + [12] = { + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5526), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), + [aux_sym_keyword_token1] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), + [anon_sym_ATphp] = ACTIONS(223), + [aux_sym_attribute_token1] = ACTIONS(225), + [aux_sym__inline_directive_token1] = ACTIONS(227), + [anon_sym_ATfragment] = ACTIONS(229), + [anon_sym_ATsection] = ACTIONS(231), + [anon_sym_ATonce] = ACTIONS(233), + [anon_sym_ATverbatim] = ACTIONS(235), + [anon_sym_ATpush] = ACTIONS(237), + [anon_sym_ATpushOnce] = ACTIONS(239), + [anon_sym_ATpushIf] = ACTIONS(241), + [anon_sym_ATprepend] = ACTIONS(243), + [anon_sym_ATprependOnce] = ACTIONS(245), + [anon_sym_ATelse] = ACTIONS(247), + [aux_sym_conditional_keyword_token1] = ACTIONS(249), + [anon_sym_ATif] = ACTIONS(251), + [anon_sym_ATunless] = ACTIONS(253), + [anon_sym_ATisset] = ACTIONS(255), + [anon_sym_ATempty] = ACTIONS(257), + [anon_sym_ATauth] = ACTIONS(259), + [anon_sym_ATguest] = ACTIONS(261), + [anon_sym_ATproduction] = ACTIONS(263), + [anon_sym_ATenv] = ACTIONS(265), + [anon_sym_AThasSection] = ACTIONS(267), + [anon_sym_ATsectionMissing] = ACTIONS(269), + [anon_sym_ATerror] = ACTIONS(271), + [anon_sym_ATcan] = ACTIONS(273), + [anon_sym_ATcannot] = ACTIONS(275), + [anon_sym_ATcanany] = ACTIONS(277), + [anon_sym_ATfeature] = ACTIONS(279), + [aux_sym__custom_token1] = ACTIONS(281), + [aux_sym__custom_token2] = ACTIONS(283), + [anon_sym_ATswitch] = ACTIONS(285), + [aux_sym_loop_operator_token1] = ACTIONS(287), + [anon_sym_ATfor] = ACTIONS(289), + [anon_sym_ATforeach] = ACTIONS(291), + [anon_sym_ATforelse] = ACTIONS(293), + [anon_sym_ATwhile] = ACTIONS(295), + [anon_sym_ATsetup] = ACTIONS(297), + [anon_sym_ATtask] = ACTIONS(299), + [anon_sym_ATstory] = ACTIONS(301), + [anon_sym_ATbefore] = ACTIONS(303), + [anon_sym_ATafter] = ACTIONS(305), + [anon_sym_ATsuccess] = ACTIONS(307), + [anon_sym_ATfinished] = ACTIONS(309), + [anon_sym_ATpersist] = ACTIONS(311), + [anon_sym_ATteleport] = ACTIONS(313), + [anon_sym_ATvolt] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(209), + [aux_sym__text_token1] = ACTIONS(317), + [aux_sym__text_token2] = ACTIONS(317), + [aux_sym__text_token3] = ACTIONS(319), + }, [13] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6565), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5609), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -27570,76 +27056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [14] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6143), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5643), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -27696,76 +27181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [15] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6164), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5644), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -27822,76 +27306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [16] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6570), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5610), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -27948,76 +27431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [17] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6727), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5700), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -28074,76 +27556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [18] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6728), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5701), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -28200,76 +27681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [19] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5968), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5727), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -28326,76 +27806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [20] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5827), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5728), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -28452,202 +27931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [21] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5970), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), - }, - [22] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6025), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5915), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -28703,77 +28055,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(317), [aux_sym__text_token3] = ACTIONS(319), }, - [23] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5995), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [22] = { + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5885), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -28829,77 +28180,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(211), [aux_sym__text_token3] = ACTIONS(213), }, - [24] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6095), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [23] = { + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5851), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -28955,77 +28305,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(317), [aux_sym__text_token3] = ACTIONS(319), }, + [24] = { + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5763), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), + [aux_sym_keyword_token1] = ACTIONS(109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(111), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), + [anon_sym_ATphp] = ACTIONS(115), + [aux_sym_attribute_token1] = ACTIONS(117), + [aux_sym__inline_directive_token1] = ACTIONS(119), + [anon_sym_ATfragment] = ACTIONS(121), + [anon_sym_ATsection] = ACTIONS(123), + [anon_sym_ATonce] = ACTIONS(125), + [anon_sym_ATverbatim] = ACTIONS(127), + [anon_sym_ATpush] = ACTIONS(129), + [anon_sym_ATpushOnce] = ACTIONS(131), + [anon_sym_ATpushIf] = ACTIONS(133), + [anon_sym_ATprepend] = ACTIONS(135), + [anon_sym_ATprependOnce] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(139), + [aux_sym_conditional_keyword_token1] = ACTIONS(141), + [anon_sym_ATif] = ACTIONS(143), + [anon_sym_ATunless] = ACTIONS(145), + [anon_sym_ATisset] = ACTIONS(147), + [anon_sym_ATempty] = ACTIONS(149), + [anon_sym_ATauth] = ACTIONS(151), + [anon_sym_ATguest] = ACTIONS(153), + [anon_sym_ATproduction] = ACTIONS(155), + [anon_sym_ATenv] = ACTIONS(157), + [anon_sym_AThasSection] = ACTIONS(159), + [anon_sym_ATsectionMissing] = ACTIONS(161), + [anon_sym_ATerror] = ACTIONS(163), + [anon_sym_ATcan] = ACTIONS(165), + [anon_sym_ATcannot] = ACTIONS(167), + [anon_sym_ATcanany] = ACTIONS(169), + [anon_sym_ATfeature] = ACTIONS(171), + [aux_sym__custom_token1] = ACTIONS(173), + [aux_sym__custom_token2] = ACTIONS(175), + [anon_sym_ATswitch] = ACTIONS(177), + [aux_sym_loop_operator_token1] = ACTIONS(179), + [anon_sym_ATfor] = ACTIONS(181), + [anon_sym_ATforeach] = ACTIONS(183), + [anon_sym_ATforelse] = ACTIONS(185), + [anon_sym_ATwhile] = ACTIONS(187), + [anon_sym_ATsetup] = ACTIONS(189), + [anon_sym_ATtask] = ACTIONS(191), + [anon_sym_ATstory] = ACTIONS(193), + [anon_sym_ATbefore] = ACTIONS(195), + [anon_sym_ATafter] = ACTIONS(197), + [anon_sym_ATsuccess] = ACTIONS(199), + [anon_sym_ATfinished] = ACTIONS(201), + [anon_sym_ATpersist] = ACTIONS(203), + [anon_sym_ATteleport] = ACTIONS(205), + [anon_sym_ATvolt] = ACTIONS(207), + [anon_sym_LPAREN2] = ACTIONS(209), + [aux_sym__text_token1] = ACTIONS(211), + [aux_sym__text_token2] = ACTIONS(211), + [aux_sym__text_token3] = ACTIONS(213), + }, [25] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5828), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5764), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -29082,76 +28556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [26] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6209), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5852), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -29208,76 +28681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [27] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5915), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5822), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -29334,76 +28806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [28] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5916), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5823), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -29460,76 +28931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [29] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6395), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5938), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -29586,76 +29056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [30] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6005), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5887), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -29712,76 +29181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [31] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6006), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5888), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -29838,76 +29306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [32] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6404), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5973), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -29964,76 +29431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [33] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6080), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5944), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -30090,76 +29556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [34] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6096), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(5945), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -30216,76 +29681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [35] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6585), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6095), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -30342,76 +29806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [36] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6183), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6010), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -30468,76 +29931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [37] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6184), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6014), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -30594,76 +30056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [38] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6554), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6097), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -30720,76 +30181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [39] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6274), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6072), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -30846,76 +30306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [40] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6275), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6073), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -30972,76 +30431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [41] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6777), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6210), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -31098,76 +30556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [42] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6363), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6138), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -31224,76 +30681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [43] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6364), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6141), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -31350,76 +30806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [44] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6791), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6211), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -31476,76 +30931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [45] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6450), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6194), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -31602,89 +31056,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [46] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6451), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6199), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), + [aux_sym_keyword_token1] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), + [anon_sym_ATphp] = ACTIONS(223), + [aux_sym_attribute_token1] = ACTIONS(225), + [aux_sym__inline_directive_token1] = ACTIONS(227), + [anon_sym_ATfragment] = ACTIONS(229), + [anon_sym_ATsection] = ACTIONS(231), + [anon_sym_ATonce] = ACTIONS(233), + [anon_sym_ATverbatim] = ACTIONS(235), + [anon_sym_ATpush] = ACTIONS(237), + [anon_sym_ATpushOnce] = ACTIONS(239), + [anon_sym_ATpushIf] = ACTIONS(241), [anon_sym_ATprepend] = ACTIONS(243), [anon_sym_ATprependOnce] = ACTIONS(245), [anon_sym_ATelse] = ACTIONS(247), @@ -31728,76 +31181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [47] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6403), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6291), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -31854,76 +31306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [48] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6534), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6255), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -31980,76 +31431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [49] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6535), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6256), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -32106,76 +31556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [50] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6402), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6292), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -32232,76 +31681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [51] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6616), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6312), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -32358,76 +31806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [52] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6617), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6313), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -32484,76 +31931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [53] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5787), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6397), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -32610,76 +32056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [54] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6697), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6367), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -32736,76 +32181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [55] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6592), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6368), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -32862,76 +32306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [56] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5777), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6398), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -32988,202 +32431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [57] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6778), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), - }, - [58] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6443), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6504), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -33239,77 +32555,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(317), [aux_sym__text_token3] = ACTIONS(319), }, + [58] = { + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6425), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), + [aux_sym_keyword_token1] = ACTIONS(109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(111), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), + [anon_sym_ATphp] = ACTIONS(115), + [aux_sym_attribute_token1] = ACTIONS(117), + [aux_sym__inline_directive_token1] = ACTIONS(119), + [anon_sym_ATfragment] = ACTIONS(121), + [anon_sym_ATsection] = ACTIONS(123), + [anon_sym_ATonce] = ACTIONS(125), + [anon_sym_ATverbatim] = ACTIONS(127), + [anon_sym_ATpush] = ACTIONS(129), + [anon_sym_ATpushOnce] = ACTIONS(131), + [anon_sym_ATpushIf] = ACTIONS(133), + [anon_sym_ATprepend] = ACTIONS(135), + [anon_sym_ATprependOnce] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(139), + [aux_sym_conditional_keyword_token1] = ACTIONS(141), + [anon_sym_ATif] = ACTIONS(143), + [anon_sym_ATunless] = ACTIONS(145), + [anon_sym_ATisset] = ACTIONS(147), + [anon_sym_ATempty] = ACTIONS(149), + [anon_sym_ATauth] = ACTIONS(151), + [anon_sym_ATguest] = ACTIONS(153), + [anon_sym_ATproduction] = ACTIONS(155), + [anon_sym_ATenv] = ACTIONS(157), + [anon_sym_AThasSection] = ACTIONS(159), + [anon_sym_ATsectionMissing] = ACTIONS(161), + [anon_sym_ATerror] = ACTIONS(163), + [anon_sym_ATcan] = ACTIONS(165), + [anon_sym_ATcannot] = ACTIONS(167), + [anon_sym_ATcanany] = ACTIONS(169), + [anon_sym_ATfeature] = ACTIONS(171), + [aux_sym__custom_token1] = ACTIONS(173), + [aux_sym__custom_token2] = ACTIONS(175), + [anon_sym_ATswitch] = ACTIONS(177), + [aux_sym_loop_operator_token1] = ACTIONS(179), + [anon_sym_ATfor] = ACTIONS(181), + [anon_sym_ATforeach] = ACTIONS(183), + [anon_sym_ATforelse] = ACTIONS(185), + [anon_sym_ATwhile] = ACTIONS(187), + [anon_sym_ATsetup] = ACTIONS(189), + [anon_sym_ATtask] = ACTIONS(191), + [anon_sym_ATstory] = ACTIONS(193), + [anon_sym_ATbefore] = ACTIONS(195), + [anon_sym_ATafter] = ACTIONS(197), + [anon_sym_ATsuccess] = ACTIONS(199), + [anon_sym_ATfinished] = ACTIONS(201), + [anon_sym_ATpersist] = ACTIONS(203), + [anon_sym_ATteleport] = ACTIONS(205), + [anon_sym_ATvolt] = ACTIONS(207), + [anon_sym_LPAREN2] = ACTIONS(209), + [aux_sym__text_token1] = ACTIONS(211), + [aux_sym__text_token2] = ACTIONS(211), + [aux_sym__text_token3] = ACTIONS(213), + }, [59] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6779), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6426), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -33366,76 +32806,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [60] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6462), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6505), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -33492,76 +32931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [61] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6748), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6477), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -33618,76 +33056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [62] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6746), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6478), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -33744,76 +33181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [63] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5746), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6611), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -33870,76 +33306,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [64] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6499), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6538), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -33996,76 +33431,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [65] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6496), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6539), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -34122,76 +33556,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [66] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6150), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6591), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -34248,76 +33681,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [67] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(6148), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6592), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -34374,93 +33806,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [68] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5882), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6653), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), + [aux_sym_keyword_token1] = ACTIONS(109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(111), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), + [anon_sym_ATphp] = ACTIONS(115), + [aux_sym_attribute_token1] = ACTIONS(117), + [aux_sym__inline_directive_token1] = ACTIONS(119), + [anon_sym_ATfragment] = ACTIONS(121), + [anon_sym_ATsection] = ACTIONS(123), + [anon_sym_ATonce] = ACTIONS(125), + [anon_sym_ATverbatim] = ACTIONS(127), + [anon_sym_ATpush] = ACTIONS(129), + [anon_sym_ATpushOnce] = ACTIONS(131), + [anon_sym_ATpushIf] = ACTIONS(133), + [anon_sym_ATprepend] = ACTIONS(135), + [anon_sym_ATprependOnce] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(139), + [aux_sym_conditional_keyword_token1] = ACTIONS(141), [anon_sym_ATif] = ACTIONS(143), [anon_sym_ATunless] = ACTIONS(145), [anon_sym_ATisset] = ACTIONS(147), @@ -34500,76 +33931,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [69] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5881), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6654), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -34626,76 +34056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [70] = { - [sym__definition] = STATE(82), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(82), - [sym_php_statement] = STATE(82), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(82), - [sym__inline_directive] = STATE(82), - [sym__nested_directive] = STATE(82), - [sym_fragment] = STATE(82), - [sym_section] = STATE(82), - [sym_inlineSection] = STATE(82), - [sym_once] = STATE(82), - [sym_verbatim] = STATE(82), - [sym_stack] = STATE(82), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(82), - [sym_conditional_keyword] = STATE(82), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(82), - [sym_loop] = STATE(82), - [sym_loop_operator] = STATE(82), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(82), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(82), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5871), - [sym__directive_parameter] = STATE(165), - [sym_text] = STATE(82), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(82), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [sym__definition] = STATE(75), + [sym_keyword] = STATE(75), + [sym_php_statement] = STATE(75), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(75), + [sym__inline_directive] = STATE(75), + [sym__nested_directive] = STATE(75), + [sym_fragment] = STATE(75), + [sym_section] = STATE(75), + [sym_inlineSection] = STATE(75), + [sym_once] = STATE(75), + [sym_verbatim] = STATE(75), + [sym_stack] = STATE(75), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(75), + [sym_conditional_keyword] = STATE(75), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(75), + [sym_loop] = STATE(75), + [sym_loop_operator] = STATE(75), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(75), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(75), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6689), + [sym__directive_parameter] = STATE(179), + [sym_text] = STATE(75), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(107), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -34752,76 +34181,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(213), }, [71] = { - [sym__definition] = STATE(94), - [sym_comment] = STATE(94), - [sym_keyword] = STATE(94), - [sym_php_statement] = STATE(94), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(94), - [sym__inline_directive] = STATE(94), - [sym__nested_directive] = STATE(94), - [sym_fragment] = STATE(94), - [sym_section] = STATE(94), - [sym_inlineSection] = STATE(94), - [sym_once] = STATE(94), - [sym_verbatim] = STATE(94), - [sym_stack] = STATE(94), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(94), - [sym_conditional_keyword] = STATE(94), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(94), - [sym_loop] = STATE(94), - [sym_loop_operator] = STATE(94), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(94), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(94), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(5860), - [sym__directive_parameter] = STATE(169), - [sym_text] = STATE(94), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__definition] = STATE(72), + [sym_keyword] = STATE(72), + [sym_php_statement] = STATE(72), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(72), + [sym__inline_directive] = STATE(72), + [sym__nested_directive] = STATE(72), + [sym_fragment] = STATE(72), + [sym_section] = STATE(72), + [sym_inlineSection] = STATE(72), + [sym_once] = STATE(72), + [sym_verbatim] = STATE(72), + [sym_stack] = STATE(72), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(72), + [sym_conditional_keyword] = STATE(72), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(72), + [sym_loop] = STATE(72), + [sym_loop_operator] = STATE(72), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(72), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(72), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(6690), + [sym__directive_parameter] = STATE(172), + [sym_text] = STATE(72), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(215), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -34878,883 +34306,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token3] = ACTIONS(319), }, [72] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(371), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(105), + [sym_keyword] = STATE(105), + [sym_php_statement] = STATE(105), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(105), + [sym__inline_directive] = STATE(105), + [sym__nested_directive] = STATE(105), + [sym_fragment] = STATE(105), + [sym_section] = STATE(105), + [sym_inlineSection] = STATE(105), + [sym_once] = STATE(105), + [sym_verbatim] = STATE(105), + [sym_stack] = STATE(105), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(105), + [sym_conditional_keyword] = STATE(105), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(105), + [sym_loop] = STATE(105), + [sym_loop_operator] = STATE(105), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(105), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(105), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym_text] = STATE(105), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(105), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(321), + [aux_sym_keyword_token1] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), + [anon_sym_ATphp] = ACTIONS(223), + [aux_sym_attribute_token1] = ACTIONS(225), + [aux_sym__inline_directive_token1] = ACTIONS(227), + [anon_sym_ATfragment] = ACTIONS(229), + [anon_sym_ATsection] = ACTIONS(231), + [anon_sym_ATonce] = ACTIONS(233), + [anon_sym_ATverbatim] = ACTIONS(235), + [anon_sym_ATpush] = ACTIONS(237), + [anon_sym_ATpushOnce] = ACTIONS(239), + [anon_sym_ATpushIf] = ACTIONS(241), + [anon_sym_ATprepend] = ACTIONS(243), + [anon_sym_ATprependOnce] = ACTIONS(245), + [anon_sym_ATelse] = ACTIONS(247), + [aux_sym_conditional_keyword_token1] = ACTIONS(249), + [anon_sym_ATif] = ACTIONS(251), + [anon_sym_ATunless] = ACTIONS(253), + [anon_sym_ATisset] = ACTIONS(255), + [anon_sym_ATempty] = ACTIONS(257), + [anon_sym_ATauth] = ACTIONS(259), + [anon_sym_ATendauth] = ACTIONS(323), + [anon_sym_ATguest] = ACTIONS(261), + [anon_sym_ATproduction] = ACTIONS(263), + [anon_sym_ATenv] = ACTIONS(265), + [anon_sym_AThasSection] = ACTIONS(267), + [anon_sym_ATsectionMissing] = ACTIONS(269), + [anon_sym_ATerror] = ACTIONS(271), + [anon_sym_ATcan] = ACTIONS(273), + [anon_sym_ATcannot] = ACTIONS(275), + [anon_sym_ATcanany] = ACTIONS(277), + [anon_sym_ATfeature] = ACTIONS(279), + [aux_sym__custom_token1] = ACTIONS(281), + [aux_sym__custom_token2] = ACTIONS(283), + [anon_sym_ATswitch] = ACTIONS(285), + [aux_sym_loop_operator_token1] = ACTIONS(287), + [anon_sym_ATfor] = ACTIONS(289), + [anon_sym_ATforeach] = ACTIONS(291), + [anon_sym_ATforelse] = ACTIONS(293), + [anon_sym_ATwhile] = ACTIONS(295), + [anon_sym_ATsetup] = ACTIONS(297), + [anon_sym_ATtask] = ACTIONS(299), + [anon_sym_ATstory] = ACTIONS(301), + [anon_sym_ATbefore] = ACTIONS(303), + [anon_sym_ATafter] = ACTIONS(305), + [anon_sym_ATsuccess] = ACTIONS(307), + [anon_sym_ATfinished] = ACTIONS(309), + [anon_sym_ATpersist] = ACTIONS(311), + [anon_sym_ATteleport] = ACTIONS(313), + [anon_sym_ATvolt] = ACTIONS(315), + [aux_sym__text_token1] = ACTIONS(317), + [aux_sym__text_token2] = ACTIONS(317), + [aux_sym__text_token3] = ACTIONS(319), }, [73] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(429), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(375), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [74] = { - [sym__definition] = STATE(74), - [sym_comment] = STATE(74), - [sym_keyword] = STATE(74), - [sym_php_statement] = STATE(74), - [sym__escaped] = STATE(1715), - [sym__unescaped] = STATE(1715), - [sym__raw] = STATE(1715), - [sym__inline_raw] = STATE(1715), - [sym__multi_line_raw] = STATE(1715), - [sym_attribute] = STATE(74), - [sym__inline_directive] = STATE(74), - [sym__nested_directive] = STATE(74), - [sym_fragment] = STATE(74), - [sym_section] = STATE(74), - [sym_inlineSection] = STATE(74), - [sym_once] = STATE(74), - [sym_verbatim] = STATE(74), - [sym_stack] = STATE(74), - [sym__push] = STATE(1716), - [sym__pushOnce] = STATE(1716), - [sym__pushIf] = STATE(1716), - [sym__prepend] = STATE(1716), - [sym__prependOnce] = STATE(1716), - [sym_conditional] = STATE(74), - [sym_conditional_keyword] = STATE(74), - [sym__if] = STATE(1717), - [sym__unless] = STATE(1717), - [sym__isset] = STATE(1717), - [sym__empty] = STATE(1717), - [sym__auth] = STATE(1717), - [sym__guest] = STATE(1717), - [sym__production] = STATE(1717), - [sym__env] = STATE(1717), - [sym__hasSection] = STATE(1717), - [sym__sectionMissing] = STATE(1717), - [sym__error] = STATE(1717), - [sym_authorization] = STATE(1717), - [sym__can] = STATE(749), - [sym__cannot] = STATE(749), - [sym__canany] = STATE(749), - [sym__feature] = STATE(1717), - [sym__custom] = STATE(1717), - [sym_switch] = STATE(74), - [sym_loop] = STATE(74), - [sym_loop_operator] = STATE(74), - [sym__for] = STATE(1719), - [sym__foreach] = STATE(1719), - [sym__forelse] = STATE(1719), - [sym__while] = STATE(1719), - [sym_envoy] = STATE(74), - [sym__setup] = STATE(1715), - [sym__task] = STATE(1720), - [sym__story] = STATE(1720), - [sym__hooks] = STATE(1715), - [sym__before] = STATE(1715), - [sym__after] = STATE(1715), - [sym__envoy_error] = STATE(1715), - [sym__success] = STATE(1715), - [sym__finished] = STATE(1715), - [sym_livewire] = STATE(74), - [sym__persist] = STATE(1721), - [sym__teleport] = STATE(1721), - [sym__volt] = STATE(1721), - [sym_text] = STATE(74), - [sym__text] = STATE(717), - [aux_sym__if_statement_directive_body_repeat1] = STATE(74), - [aux_sym_php_only_repeat1] = STATE(717), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(431), - [aux_sym_keyword_token1] = ACTIONS(434), - [anon_sym_LBRACE_LBRACE] = ACTIONS(437), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(440), - [anon_sym_ATphp] = ACTIONS(443), - [aux_sym_attribute_token1] = ACTIONS(446), - [aux_sym__inline_directive_token1] = ACTIONS(449), - [anon_sym_ATfragment] = ACTIONS(452), - [anon_sym_ATsection] = ACTIONS(455), - [anon_sym_ATonce] = ACTIONS(458), - [anon_sym_ATverbatim] = ACTIONS(461), - [anon_sym_ATpush] = ACTIONS(464), - [anon_sym_ATpushOnce] = ACTIONS(467), - [anon_sym_ATpushIf] = ACTIONS(470), - [anon_sym_ATprepend] = ACTIONS(473), - [anon_sym_ATprependOnce] = ACTIONS(476), - [anon_sym_ATelse] = ACTIONS(479), - [aux_sym_conditional_keyword_token1] = ACTIONS(482), - [anon_sym_ATif] = ACTIONS(485), - [anon_sym_ATunless] = ACTIONS(488), - [anon_sym_ATisset] = ACTIONS(491), - [anon_sym_ATempty] = ACTIONS(494), - [anon_sym_ATauth] = ACTIONS(497), - [anon_sym_ATguest] = ACTIONS(500), - [anon_sym_ATproduction] = ACTIONS(503), - [anon_sym_ATenv] = ACTIONS(506), - [anon_sym_AThasSection] = ACTIONS(509), - [anon_sym_ATsectionMissing] = ACTIONS(512), - [anon_sym_ATerror] = ACTIONS(515), - [anon_sym_ATenderror] = ACTIONS(518), - [anon_sym_ATcan] = ACTIONS(520), - [anon_sym_ATcannot] = ACTIONS(523), - [anon_sym_ATcanany] = ACTIONS(526), - [anon_sym_ATfeature] = ACTIONS(529), - [aux_sym__custom_token1] = ACTIONS(532), - [aux_sym__custom_token2] = ACTIONS(535), - [anon_sym_ATswitch] = ACTIONS(538), - [aux_sym_loop_operator_token1] = ACTIONS(541), - [anon_sym_ATfor] = ACTIONS(544), - [anon_sym_ATforeach] = ACTIONS(547), - [anon_sym_ATforelse] = ACTIONS(550), - [anon_sym_ATwhile] = ACTIONS(553), - [anon_sym_ATsetup] = ACTIONS(556), - [anon_sym_ATtask] = ACTIONS(559), - [anon_sym_ATstory] = ACTIONS(562), - [anon_sym_ATbefore] = ACTIONS(565), - [anon_sym_ATafter] = ACTIONS(568), - [anon_sym_ATsuccess] = ACTIONS(571), - [anon_sym_ATfinished] = ACTIONS(574), - [anon_sym_ATpersist] = ACTIONS(577), - [anon_sym_ATteleport] = ACTIONS(580), - [anon_sym_ATvolt] = ACTIONS(583), - [aux_sym__text_token1] = ACTIONS(586), - [aux_sym__text_token2] = ACTIONS(586), - [aux_sym__text_token3] = ACTIONS(589), - }, - [75] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(592), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [76] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(594), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [77] = { - [sym__definition] = STATE(79), - [sym_comment] = STATE(79), - [sym_keyword] = STATE(79), - [sym_php_statement] = STATE(79), - [sym__escaped] = STATE(1271), - [sym__unescaped] = STATE(1271), - [sym__raw] = STATE(1271), - [sym__inline_raw] = STATE(1271), - [sym__multi_line_raw] = STATE(1271), - [sym_attribute] = STATE(79), - [sym__inline_directive] = STATE(79), - [sym__nested_directive] = STATE(79), - [sym_fragment] = STATE(79), - [sym_section] = STATE(79), - [sym_inlineSection] = STATE(79), - [sym_once] = STATE(79), - [sym_verbatim] = STATE(79), - [sym_stack] = STATE(79), - [sym__push] = STATE(1270), - [sym__pushOnce] = STATE(1270), - [sym__pushIf] = STATE(1270), - [sym__prepend] = STATE(1270), - [sym__prependOnce] = STATE(1270), - [sym_conditional] = STATE(79), - [sym_conditional_keyword] = STATE(79), - [sym__if] = STATE(1269), - [sym__unless] = STATE(1269), - [sym__isset] = STATE(1269), - [sym__empty] = STATE(1269), - [sym__auth] = STATE(1269), - [sym__guest] = STATE(1269), - [sym__production] = STATE(1269), - [sym__env] = STATE(1269), - [sym__hasSection] = STATE(1269), - [sym__sectionMissing] = STATE(1269), - [sym__error] = STATE(1269), - [sym_authorization] = STATE(1269), - [sym__can] = STATE(1268), - [sym__cannot] = STATE(1268), - [sym__canany] = STATE(1268), - [sym__feature] = STATE(1269), - [sym__custom] = STATE(1269), - [sym_switch] = STATE(79), - [sym_loop] = STATE(79), - [sym_loop_operator] = STATE(79), - [sym__for] = STATE(1267), - [sym__foreach] = STATE(1267), - [sym__forelse] = STATE(1267), - [sym__while] = STATE(1267), - [sym_envoy] = STATE(79), - [sym__setup] = STATE(1271), - [sym__task] = STATE(1266), - [sym__story] = STATE(1266), - [sym__hooks] = STATE(1271), - [sym__before] = STATE(1271), - [sym__after] = STATE(1271), - [sym__envoy_error] = STATE(1271), - [sym__success] = STATE(1271), - [sym__finished] = STATE(1271), - [sym_livewire] = STATE(79), - [sym__persist] = STATE(1265), - [sym__teleport] = STATE(1265), - [sym__volt] = STATE(1265), - [sym_text] = STATE(79), - [sym__text] = STATE(684), - [aux_sym__if_statement_directive_body_repeat1] = STATE(79), - [aux_sym_php_only_repeat1] = STATE(684), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(596), - [aux_sym_keyword_token1] = ACTIONS(598), - [anon_sym_LBRACE_LBRACE] = ACTIONS(600), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(602), - [anon_sym_ATphp] = ACTIONS(604), - [aux_sym_attribute_token1] = ACTIONS(606), - [aux_sym__inline_directive_token1] = ACTIONS(608), - [anon_sym_ATfragment] = ACTIONS(610), - [anon_sym_ATsection] = ACTIONS(612), - [anon_sym_ATonce] = ACTIONS(614), - [anon_sym_ATverbatim] = ACTIONS(616), - [anon_sym_ATpush] = ACTIONS(618), - [anon_sym_ATpushOnce] = ACTIONS(620), - [anon_sym_ATpushIf] = ACTIONS(622), - [anon_sym_ATprepend] = ACTIONS(624), - [anon_sym_ATprependOnce] = ACTIONS(626), - [anon_sym_ATelse] = ACTIONS(628), - [aux_sym_conditional_keyword_token1] = ACTIONS(630), - [anon_sym_ATif] = ACTIONS(632), - [anon_sym_ATunless] = ACTIONS(634), - [anon_sym_ATisset] = ACTIONS(636), - [anon_sym_ATempty] = ACTIONS(638), - [anon_sym_ATauth] = ACTIONS(640), - [anon_sym_ATguest] = ACTIONS(642), - [anon_sym_ATproduction] = ACTIONS(644), - [anon_sym_ATenv] = ACTIONS(646), - [anon_sym_AThasSection] = ACTIONS(648), - [anon_sym_ATsectionMissing] = ACTIONS(650), - [anon_sym_ATerror] = ACTIONS(652), - [anon_sym_ATcan] = ACTIONS(654), - [anon_sym_ATcannot] = ACTIONS(656), - [anon_sym_ATcanany] = ACTIONS(658), - [anon_sym_ATendcanany] = ACTIONS(660), - [anon_sym_ATfeature] = ACTIONS(662), - [aux_sym__custom_token1] = ACTIONS(664), - [aux_sym__custom_token2] = ACTIONS(666), - [anon_sym_ATswitch] = ACTIONS(668), - [aux_sym_loop_operator_token1] = ACTIONS(670), - [anon_sym_ATfor] = ACTIONS(672), - [anon_sym_ATforeach] = ACTIONS(674), - [anon_sym_ATforelse] = ACTIONS(676), - [anon_sym_ATwhile] = ACTIONS(678), - [anon_sym_ATsetup] = ACTIONS(680), - [anon_sym_ATtask] = ACTIONS(682), - [anon_sym_ATstory] = ACTIONS(684), - [anon_sym_ATbefore] = ACTIONS(686), - [anon_sym_ATafter] = ACTIONS(688), - [anon_sym_ATsuccess] = ACTIONS(690), - [anon_sym_ATfinished] = ACTIONS(692), - [anon_sym_ATpersist] = ACTIONS(694), - [anon_sym_ATteleport] = ACTIONS(696), - [anon_sym_ATvolt] = ACTIONS(698), - [aux_sym__text_token1] = ACTIONS(700), - [aux_sym__text_token2] = ACTIONS(700), - [aux_sym__text_token3] = ACTIONS(702), - }, - [78] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(704), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [79] = { [sym__definition] = STATE(124), - [sym_comment] = STATE(124), [sym_keyword] = STATE(124), [sym_php_statement] = STATE(124), - [sym__escaped] = STATE(1271), - [sym__unescaped] = STATE(1271), - [sym__raw] = STATE(1271), - [sym__inline_raw] = STATE(1271), - [sym__multi_line_raw] = STATE(1271), + [sym__escaped] = STATE(1928), + [sym__unescaped] = STATE(1928), + [sym__raw] = STATE(1928), + [sym__inline_raw] = STATE(1928), + [sym__multi_line_raw] = STATE(1928), [sym_attribute] = STATE(124), [sym__inline_directive] = STATE(124), [sym__nested_directive] = STATE(124), @@ -35764,369 +34569,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(124), [sym_verbatim] = STATE(124), [sym_stack] = STATE(124), - [sym__push] = STATE(1270), - [sym__pushOnce] = STATE(1270), - [sym__pushIf] = STATE(1270), - [sym__prepend] = STATE(1270), - [sym__prependOnce] = STATE(1270), + [sym__push] = STATE(1929), + [sym__pushOnce] = STATE(1929), + [sym__pushIf] = STATE(1929), + [sym__prepend] = STATE(1929), + [sym__prependOnce] = STATE(1929), [sym_conditional] = STATE(124), [sym_conditional_keyword] = STATE(124), - [sym__if] = STATE(1269), - [sym__unless] = STATE(1269), - [sym__isset] = STATE(1269), - [sym__empty] = STATE(1269), - [sym__auth] = STATE(1269), - [sym__guest] = STATE(1269), - [sym__production] = STATE(1269), - [sym__env] = STATE(1269), - [sym__hasSection] = STATE(1269), - [sym__sectionMissing] = STATE(1269), - [sym__error] = STATE(1269), - [sym_authorization] = STATE(1269), - [sym__can] = STATE(1268), - [sym__cannot] = STATE(1268), - [sym__canany] = STATE(1268), - [sym__feature] = STATE(1269), - [sym__custom] = STATE(1269), + [sym__if] = STATE(1930), + [sym__unless] = STATE(1930), + [sym__isset] = STATE(1930), + [sym__empty] = STATE(1930), + [sym__auth] = STATE(1930), + [sym__guest] = STATE(1930), + [sym__production] = STATE(1930), + [sym__env] = STATE(1930), + [sym__hasSection] = STATE(1930), + [sym__sectionMissing] = STATE(1930), + [sym__error] = STATE(1930), + [sym_authorization] = STATE(1930), + [sym__can] = STATE(1931), + [sym__cannot] = STATE(1931), + [sym__canany] = STATE(1931), + [sym__feature] = STATE(1930), + [sym__custom] = STATE(1930), [sym_switch] = STATE(124), [sym_loop] = STATE(124), [sym_loop_operator] = STATE(124), - [sym__for] = STATE(1267), - [sym__foreach] = STATE(1267), - [sym__forelse] = STATE(1267), - [sym__while] = STATE(1267), + [sym__for] = STATE(1237), + [sym__foreach] = STATE(1237), + [sym__forelse] = STATE(1237), + [sym__while] = STATE(1237), [sym_envoy] = STATE(124), - [sym__setup] = STATE(1271), - [sym__task] = STATE(1266), - [sym__story] = STATE(1266), - [sym__hooks] = STATE(1271), - [sym__before] = STATE(1271), - [sym__after] = STATE(1271), - [sym__envoy_error] = STATE(1271), - [sym__success] = STATE(1271), - [sym__finished] = STATE(1271), + [sym__setup] = STATE(1928), + [sym__task] = STATE(1196), + [sym__story] = STATE(1196), + [sym__hooks] = STATE(1928), + [sym__before] = STATE(1928), + [sym__after] = STATE(1928), + [sym__envoy_error] = STATE(1928), + [sym__success] = STATE(1928), + [sym__finished] = STATE(1928), [sym_livewire] = STATE(124), - [sym__persist] = STATE(1265), - [sym__teleport] = STATE(1265), - [sym__volt] = STATE(1265), + [sym__persist] = STATE(1342), + [sym__teleport] = STATE(1342), + [sym__volt] = STATE(1342), [sym_text] = STATE(124), - [sym__text] = STATE(684), + [sym__text] = STATE(679), [aux_sym__if_statement_directive_body_repeat1] = STATE(124), - [aux_sym_php_only_repeat1] = STATE(684), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(596), - [aux_sym_keyword_token1] = ACTIONS(598), - [anon_sym_LBRACE_LBRACE] = ACTIONS(600), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(602), - [anon_sym_ATphp] = ACTIONS(604), - [aux_sym_attribute_token1] = ACTIONS(606), - [aux_sym__inline_directive_token1] = ACTIONS(608), - [anon_sym_ATfragment] = ACTIONS(610), - [anon_sym_ATsection] = ACTIONS(612), - [anon_sym_ATonce] = ACTIONS(614), - [anon_sym_ATverbatim] = ACTIONS(616), - [anon_sym_ATpush] = ACTIONS(618), - [anon_sym_ATpushOnce] = ACTIONS(620), - [anon_sym_ATpushIf] = ACTIONS(622), - [anon_sym_ATprepend] = ACTIONS(624), - [anon_sym_ATprependOnce] = ACTIONS(626), - [anon_sym_ATelse] = ACTIONS(628), - [aux_sym_conditional_keyword_token1] = ACTIONS(630), - [anon_sym_ATif] = ACTIONS(632), - [anon_sym_ATunless] = ACTIONS(634), - [anon_sym_ATisset] = ACTIONS(636), - [anon_sym_ATempty] = ACTIONS(638), - [anon_sym_ATauth] = ACTIONS(640), - [anon_sym_ATguest] = ACTIONS(642), - [anon_sym_ATproduction] = ACTIONS(644), - [anon_sym_ATenv] = ACTIONS(646), - [anon_sym_AThasSection] = ACTIONS(648), - [anon_sym_ATsectionMissing] = ACTIONS(650), - [anon_sym_ATerror] = ACTIONS(652), - [anon_sym_ATcan] = ACTIONS(654), - [anon_sym_ATcannot] = ACTIONS(656), - [anon_sym_ATcanany] = ACTIONS(658), - [anon_sym_ATendcanany] = ACTIONS(706), - [anon_sym_ATfeature] = ACTIONS(662), - [aux_sym__custom_token1] = ACTIONS(664), - [aux_sym__custom_token2] = ACTIONS(666), - [anon_sym_ATswitch] = ACTIONS(668), - [aux_sym_loop_operator_token1] = ACTIONS(670), - [anon_sym_ATfor] = ACTIONS(672), - [anon_sym_ATforeach] = ACTIONS(674), - [anon_sym_ATforelse] = ACTIONS(676), - [anon_sym_ATwhile] = ACTIONS(678), - [anon_sym_ATsetup] = ACTIONS(680), - [anon_sym_ATtask] = ACTIONS(682), - [anon_sym_ATstory] = ACTIONS(684), - [anon_sym_ATbefore] = ACTIONS(686), - [anon_sym_ATafter] = ACTIONS(688), - [anon_sym_ATsuccess] = ACTIONS(690), - [anon_sym_ATfinished] = ACTIONS(692), - [anon_sym_ATpersist] = ACTIONS(694), - [anon_sym_ATteleport] = ACTIONS(696), - [anon_sym_ATvolt] = ACTIONS(698), - [aux_sym__text_token1] = ACTIONS(700), - [aux_sym__text_token2] = ACTIONS(700), - [aux_sym__text_token3] = ACTIONS(702), - }, - [80] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(708), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [81] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(710), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [aux_sym_php_only_repeat1] = STATE(679), + [sym_comment] = ACTIONS(433), + [aux_sym_keyword_token1] = ACTIONS(435), + [anon_sym_LBRACE_LBRACE] = ACTIONS(437), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(439), + [anon_sym_ATphp] = ACTIONS(441), + [aux_sym_attribute_token1] = ACTIONS(443), + [aux_sym__inline_directive_token1] = ACTIONS(445), + [anon_sym_ATfragment] = ACTIONS(447), + [anon_sym_ATsection] = ACTIONS(449), + [anon_sym_ATonce] = ACTIONS(451), + [anon_sym_ATverbatim] = ACTIONS(453), + [anon_sym_ATpush] = ACTIONS(455), + [anon_sym_ATpushOnce] = ACTIONS(457), + [anon_sym_ATpushIf] = ACTIONS(459), + [anon_sym_ATprepend] = ACTIONS(461), + [anon_sym_ATprependOnce] = ACTIONS(463), + [anon_sym_ATelse] = ACTIONS(465), + [aux_sym_conditional_keyword_token1] = ACTIONS(467), + [anon_sym_ATif] = ACTIONS(469), + [anon_sym_ATunless] = ACTIONS(471), + [anon_sym_ATisset] = ACTIONS(473), + [anon_sym_ATempty] = ACTIONS(475), + [anon_sym_ATauth] = ACTIONS(477), + [anon_sym_ATguest] = ACTIONS(479), + [anon_sym_ATproduction] = ACTIONS(481), + [anon_sym_ATenv] = ACTIONS(483), + [anon_sym_AThasSection] = ACTIONS(485), + [anon_sym_ATsectionMissing] = ACTIONS(487), + [anon_sym_ATerror] = ACTIONS(489), + [anon_sym_ATcan] = ACTIONS(491), + [anon_sym_ATcannot] = ACTIONS(493), + [anon_sym_ATcanany] = ACTIONS(495), + [anon_sym_ATendcanany] = ACTIONS(497), + [anon_sym_ATfeature] = ACTIONS(499), + [aux_sym__custom_token1] = ACTIONS(501), + [aux_sym__custom_token2] = ACTIONS(503), + [anon_sym_ATswitch] = ACTIONS(505), + [aux_sym_loop_operator_token1] = ACTIONS(507), + [anon_sym_ATfor] = ACTIONS(509), + [anon_sym_ATforeach] = ACTIONS(511), + [anon_sym_ATforelse] = ACTIONS(513), + [anon_sym_ATwhile] = ACTIONS(515), + [anon_sym_ATsetup] = ACTIONS(517), + [anon_sym_ATtask] = ACTIONS(519), + [anon_sym_ATstory] = ACTIONS(521), + [anon_sym_ATbefore] = ACTIONS(523), + [anon_sym_ATafter] = ACTIONS(525), + [anon_sym_ATsuccess] = ACTIONS(527), + [anon_sym_ATfinished] = ACTIONS(529), + [anon_sym_ATpersist] = ACTIONS(531), + [anon_sym_ATteleport] = ACTIONS(533), + [anon_sym_ATvolt] = ACTIONS(535), + [aux_sym__text_token1] = ACTIONS(537), + [aux_sym__text_token2] = ACTIONS(537), + [aux_sym__text_token3] = ACTIONS(539), }, - [82] = { + [75] = { [sym__definition] = STATE(90), - [sym_comment] = STATE(90), [sym_keyword] = STATE(90), [sym_php_statement] = STATE(90), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), [sym_attribute] = STATE(90), [sym__inline_directive] = STATE(90), [sym__nested_directive] = STATE(90), @@ -36136,56 +34692,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(90), [sym_verbatim] = STATE(90), [sym_stack] = STATE(90), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), [sym_conditional] = STATE(90), [sym_conditional_keyword] = STATE(90), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), [sym_switch] = STATE(90), [sym_loop] = STATE(90), [sym_loop_operator] = STATE(90), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), [sym_envoy] = STATE(90), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), [sym_livewire] = STATE(90), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), [sym_text] = STATE(90), - [sym__text] = STATE(704), + [sym__text] = STATE(720), [aux_sym__if_statement_directive_body_repeat1] = STATE(90), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(541), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -36209,7 +34765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATempty] = ACTIONS(149), [anon_sym_ATauth] = ACTIONS(151), [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATendguest] = ACTIONS(712), + [anon_sym_ATendguest] = ACTIONS(323), [anon_sym_ATproduction] = ACTIONS(155), [anon_sym_ATenv] = ACTIONS(157), [anon_sym_AThasSection] = ACTIONS(159), @@ -36241,760 +34797,1614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(211), [aux_sym__text_token3] = ACTIONS(213), }, - [83] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), + [76] = { + [sym__definition] = STATE(76), + [sym_keyword] = STATE(76), + [sym_php_statement] = STATE(76), + [sym__escaped] = STATE(1764), + [sym__unescaped] = STATE(1764), + [sym__raw] = STATE(1764), + [sym__inline_raw] = STATE(1764), + [sym__multi_line_raw] = STATE(1764), + [sym_attribute] = STATE(76), + [sym__inline_directive] = STATE(76), + [sym__nested_directive] = STATE(76), + [sym_fragment] = STATE(76), + [sym_section] = STATE(76), + [sym_inlineSection] = STATE(76), + [sym_once] = STATE(76), + [sym_verbatim] = STATE(76), + [sym_stack] = STATE(76), + [sym__push] = STATE(1765), + [sym__pushOnce] = STATE(1765), + [sym__pushIf] = STATE(1765), + [sym__prepend] = STATE(1765), + [sym__prependOnce] = STATE(1765), + [sym_conditional] = STATE(76), + [sym_conditional_keyword] = STATE(76), + [sym__if] = STATE(1766), + [sym__unless] = STATE(1766), + [sym__isset] = STATE(1766), + [sym__empty] = STATE(1766), + [sym__auth] = STATE(1766), + [sym__guest] = STATE(1766), + [sym__production] = STATE(1766), + [sym__env] = STATE(1766), + [sym__hasSection] = STATE(1766), + [sym__sectionMissing] = STATE(1766), + [sym__error] = STATE(1766), + [sym_authorization] = STATE(1766), + [sym__can] = STATE(1767), + [sym__cannot] = STATE(1767), + [sym__canany] = STATE(1767), + [sym__feature] = STATE(1766), + [sym__custom] = STATE(1766), + [sym_switch] = STATE(76), + [sym_loop] = STATE(76), + [sym_loop_operator] = STATE(76), + [sym__for] = STATE(1768), + [sym__foreach] = STATE(1768), + [sym__forelse] = STATE(1768), + [sym__while] = STATE(1768), + [sym_envoy] = STATE(76), + [sym__setup] = STATE(1764), + [sym__task] = STATE(1769), + [sym__story] = STATE(1769), + [sym__hooks] = STATE(1764), + [sym__before] = STATE(1764), + [sym__after] = STATE(1764), + [sym__envoy_error] = STATE(1764), + [sym__success] = STATE(1764), + [sym__finished] = STATE(1764), + [sym_livewire] = STATE(76), + [sym__persist] = STATE(1770), + [sym__teleport] = STATE(1770), + [sym__volt] = STATE(1770), + [sym_text] = STATE(76), [sym__text] = STATE(725), + [aux_sym__if_statement_directive_body_repeat1] = STATE(76), [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(714), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym_comment] = ACTIONS(543), + [aux_sym_keyword_token1] = ACTIONS(546), + [anon_sym_LBRACE_LBRACE] = ACTIONS(549), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(552), + [anon_sym_ATphp] = ACTIONS(555), + [aux_sym_attribute_token1] = ACTIONS(558), + [aux_sym__inline_directive_token1] = ACTIONS(561), + [anon_sym_ATfragment] = ACTIONS(564), + [anon_sym_ATsection] = ACTIONS(567), + [anon_sym_ATonce] = ACTIONS(570), + [anon_sym_ATverbatim] = ACTIONS(573), + [anon_sym_ATpush] = ACTIONS(576), + [anon_sym_ATpushOnce] = ACTIONS(579), + [anon_sym_ATpushIf] = ACTIONS(582), + [anon_sym_ATprepend] = ACTIONS(585), + [anon_sym_ATprependOnce] = ACTIONS(588), + [anon_sym_ATelse] = ACTIONS(591), + [aux_sym_conditional_keyword_token1] = ACTIONS(594), + [anon_sym_ATif] = ACTIONS(597), + [anon_sym_ATunless] = ACTIONS(600), + [anon_sym_ATisset] = ACTIONS(603), + [anon_sym_ATempty] = ACTIONS(606), + [anon_sym_ATauth] = ACTIONS(609), + [anon_sym_ATguest] = ACTIONS(612), + [anon_sym_ATproduction] = ACTIONS(615), + [anon_sym_ATenv] = ACTIONS(618), + [anon_sym_AThasSection] = ACTIONS(621), + [anon_sym_ATsectionMissing] = ACTIONS(624), + [anon_sym_ATerror] = ACTIONS(627), + [anon_sym_ATcan] = ACTIONS(630), + [anon_sym_ATendcan] = ACTIONS(633), + [anon_sym_ATcannot] = ACTIONS(635), + [anon_sym_ATcanany] = ACTIONS(638), + [anon_sym_ATfeature] = ACTIONS(641), + [aux_sym__custom_token1] = ACTIONS(644), + [aux_sym__custom_token2] = ACTIONS(647), + [anon_sym_ATswitch] = ACTIONS(650), + [aux_sym_loop_operator_token1] = ACTIONS(653), + [anon_sym_ATfor] = ACTIONS(656), + [anon_sym_ATforeach] = ACTIONS(659), + [anon_sym_ATforelse] = ACTIONS(662), + [anon_sym_ATwhile] = ACTIONS(665), + [anon_sym_ATsetup] = ACTIONS(668), + [anon_sym_ATtask] = ACTIONS(671), + [anon_sym_ATstory] = ACTIONS(674), + [anon_sym_ATbefore] = ACTIONS(677), + [anon_sym_ATafter] = ACTIONS(680), + [anon_sym_ATsuccess] = ACTIONS(683), + [anon_sym_ATfinished] = ACTIONS(686), + [anon_sym_ATpersist] = ACTIONS(689), + [anon_sym_ATteleport] = ACTIONS(692), + [anon_sym_ATvolt] = ACTIONS(695), + [aux_sym__text_token1] = ACTIONS(698), + [aux_sym__text_token2] = ACTIONS(698), + [aux_sym__text_token3] = ACTIONS(701), + }, + [77] = { + [sym__definition] = STATE(74), + [sym_keyword] = STATE(74), + [sym_php_statement] = STATE(74), + [sym__escaped] = STATE(1928), + [sym__unescaped] = STATE(1928), + [sym__raw] = STATE(1928), + [sym__inline_raw] = STATE(1928), + [sym__multi_line_raw] = STATE(1928), + [sym_attribute] = STATE(74), + [sym__inline_directive] = STATE(74), + [sym__nested_directive] = STATE(74), + [sym_fragment] = STATE(74), + [sym_section] = STATE(74), + [sym_inlineSection] = STATE(74), + [sym_once] = STATE(74), + [sym_verbatim] = STATE(74), + [sym_stack] = STATE(74), + [sym__push] = STATE(1929), + [sym__pushOnce] = STATE(1929), + [sym__pushIf] = STATE(1929), + [sym__prepend] = STATE(1929), + [sym__prependOnce] = STATE(1929), + [sym_conditional] = STATE(74), + [sym_conditional_keyword] = STATE(74), + [sym__if] = STATE(1930), + [sym__unless] = STATE(1930), + [sym__isset] = STATE(1930), + [sym__empty] = STATE(1930), + [sym__auth] = STATE(1930), + [sym__guest] = STATE(1930), + [sym__production] = STATE(1930), + [sym__env] = STATE(1930), + [sym__hasSection] = STATE(1930), + [sym__sectionMissing] = STATE(1930), + [sym__error] = STATE(1930), + [sym_authorization] = STATE(1930), + [sym__can] = STATE(1931), + [sym__cannot] = STATE(1931), + [sym__canany] = STATE(1931), + [sym__feature] = STATE(1930), + [sym__custom] = STATE(1930), + [sym_switch] = STATE(74), + [sym_loop] = STATE(74), + [sym_loop_operator] = STATE(74), + [sym__for] = STATE(1237), + [sym__foreach] = STATE(1237), + [sym__forelse] = STATE(1237), + [sym__while] = STATE(1237), + [sym_envoy] = STATE(74), + [sym__setup] = STATE(1928), + [sym__task] = STATE(1196), + [sym__story] = STATE(1196), + [sym__hooks] = STATE(1928), + [sym__before] = STATE(1928), + [sym__after] = STATE(1928), + [sym__envoy_error] = STATE(1928), + [sym__success] = STATE(1928), + [sym__finished] = STATE(1928), + [sym_livewire] = STATE(74), + [sym__persist] = STATE(1342), + [sym__teleport] = STATE(1342), + [sym__volt] = STATE(1342), + [sym_text] = STATE(74), + [sym__text] = STATE(679), + [aux_sym__if_statement_directive_body_repeat1] = STATE(74), + [aux_sym_php_only_repeat1] = STATE(679), + [sym_comment] = ACTIONS(704), + [aux_sym_keyword_token1] = ACTIONS(435), + [anon_sym_LBRACE_LBRACE] = ACTIONS(437), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(439), + [anon_sym_ATphp] = ACTIONS(441), + [aux_sym_attribute_token1] = ACTIONS(443), + [aux_sym__inline_directive_token1] = ACTIONS(445), + [anon_sym_ATfragment] = ACTIONS(447), + [anon_sym_ATsection] = ACTIONS(449), + [anon_sym_ATonce] = ACTIONS(451), + [anon_sym_ATverbatim] = ACTIONS(453), + [anon_sym_ATpush] = ACTIONS(455), + [anon_sym_ATpushOnce] = ACTIONS(457), + [anon_sym_ATpushIf] = ACTIONS(459), + [anon_sym_ATprepend] = ACTIONS(461), + [anon_sym_ATprependOnce] = ACTIONS(463), + [anon_sym_ATelse] = ACTIONS(465), + [aux_sym_conditional_keyword_token1] = ACTIONS(467), + [anon_sym_ATif] = ACTIONS(469), + [anon_sym_ATunless] = ACTIONS(471), + [anon_sym_ATisset] = ACTIONS(473), + [anon_sym_ATempty] = ACTIONS(475), + [anon_sym_ATauth] = ACTIONS(477), + [anon_sym_ATguest] = ACTIONS(479), + [anon_sym_ATproduction] = ACTIONS(481), + [anon_sym_ATenv] = ACTIONS(483), + [anon_sym_AThasSection] = ACTIONS(485), + [anon_sym_ATsectionMissing] = ACTIONS(487), + [anon_sym_ATerror] = ACTIONS(489), + [anon_sym_ATcan] = ACTIONS(491), + [anon_sym_ATcannot] = ACTIONS(493), + [anon_sym_ATcanany] = ACTIONS(495), + [anon_sym_ATendcanany] = ACTIONS(706), + [anon_sym_ATfeature] = ACTIONS(499), + [aux_sym__custom_token1] = ACTIONS(501), + [aux_sym__custom_token2] = ACTIONS(503), + [anon_sym_ATswitch] = ACTIONS(505), + [aux_sym_loop_operator_token1] = ACTIONS(507), + [anon_sym_ATfor] = ACTIONS(509), + [anon_sym_ATforeach] = ACTIONS(511), + [anon_sym_ATforelse] = ACTIONS(513), + [anon_sym_ATwhile] = ACTIONS(515), + [anon_sym_ATsetup] = ACTIONS(517), + [anon_sym_ATtask] = ACTIONS(519), + [anon_sym_ATstory] = ACTIONS(521), + [anon_sym_ATbefore] = ACTIONS(523), + [anon_sym_ATafter] = ACTIONS(525), + [anon_sym_ATsuccess] = ACTIONS(527), + [anon_sym_ATfinished] = ACTIONS(529), + [anon_sym_ATpersist] = ACTIONS(531), + [anon_sym_ATteleport] = ACTIONS(533), + [anon_sym_ATvolt] = ACTIONS(535), + [aux_sym__text_token1] = ACTIONS(537), + [aux_sym__text_token2] = ACTIONS(537), + [aux_sym__text_token3] = ACTIONS(539), + }, + [78] = { + [sym__definition] = STATE(85), + [sym_keyword] = STATE(85), + [sym_php_statement] = STATE(85), + [sym__escaped] = STATE(1340), + [sym__unescaped] = STATE(1340), + [sym__raw] = STATE(1340), + [sym__inline_raw] = STATE(1340), + [sym__multi_line_raw] = STATE(1340), + [sym_attribute] = STATE(85), + [sym__inline_directive] = STATE(85), + [sym__nested_directive] = STATE(85), + [sym_fragment] = STATE(85), + [sym_section] = STATE(85), + [sym_inlineSection] = STATE(85), + [sym_once] = STATE(85), + [sym_verbatim] = STATE(85), + [sym_stack] = STATE(85), + [sym__push] = STATE(1341), + [sym__pushOnce] = STATE(1341), + [sym__pushIf] = STATE(1341), + [sym__prepend] = STATE(1341), + [sym__prependOnce] = STATE(1341), + [sym_conditional] = STATE(85), + [sym_conditional_keyword] = STATE(85), + [sym__if] = STATE(750), + [sym__unless] = STATE(750), + [sym__isset] = STATE(750), + [sym__empty] = STATE(750), + [sym__auth] = STATE(750), + [sym__guest] = STATE(750), + [sym__production] = STATE(750), + [sym__env] = STATE(750), + [sym__hasSection] = STATE(750), + [sym__sectionMissing] = STATE(750), + [sym__error] = STATE(750), + [sym_authorization] = STATE(750), + [sym__can] = STATE(1343), + [sym__cannot] = STATE(1343), + [sym__canany] = STATE(1343), + [sym__feature] = STATE(750), + [sym__custom] = STATE(750), + [sym_switch] = STATE(85), + [sym_loop] = STATE(85), + [sym_loop_operator] = STATE(85), + [sym__for] = STATE(1344), + [sym__foreach] = STATE(1344), + [sym__forelse] = STATE(1344), + [sym__while] = STATE(1344), + [sym_envoy] = STATE(85), + [sym__setup] = STATE(1340), + [sym__task] = STATE(1345), + [sym__story] = STATE(1345), + [sym__hooks] = STATE(1340), + [sym__before] = STATE(1340), + [sym__after] = STATE(1340), + [sym__envoy_error] = STATE(1340), + [sym__success] = STATE(1340), + [sym__finished] = STATE(1340), + [sym_livewire] = STATE(85), + [sym__persist] = STATE(1346), + [sym__teleport] = STATE(1346), + [sym__volt] = STATE(1346), + [sym_text] = STATE(85), + [sym__text] = STATE(686), + [aux_sym__if_statement_directive_body_repeat1] = STATE(85), + [aux_sym_php_only_repeat1] = STATE(686), + [sym_comment] = ACTIONS(708), + [aux_sym_keyword_token1] = ACTIONS(710), + [anon_sym_LBRACE_LBRACE] = ACTIONS(712), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(714), + [anon_sym_ATphp] = ACTIONS(716), + [aux_sym_attribute_token1] = ACTIONS(718), + [aux_sym__inline_directive_token1] = ACTIONS(720), + [anon_sym_ATfragment] = ACTIONS(722), + [anon_sym_ATsection] = ACTIONS(724), + [anon_sym_ATonce] = ACTIONS(726), + [anon_sym_ATverbatim] = ACTIONS(728), + [anon_sym_ATpush] = ACTIONS(730), + [anon_sym_ATpushOnce] = ACTIONS(732), + [anon_sym_ATpushIf] = ACTIONS(734), + [anon_sym_ATprepend] = ACTIONS(736), + [anon_sym_ATprependOnce] = ACTIONS(738), + [anon_sym_ATelse] = ACTIONS(740), + [aux_sym_conditional_keyword_token1] = ACTIONS(742), + [anon_sym_ATif] = ACTIONS(744), + [anon_sym_ATunless] = ACTIONS(746), + [anon_sym_ATendunless] = ACTIONS(706), + [anon_sym_ATisset] = ACTIONS(748), + [anon_sym_ATempty] = ACTIONS(750), + [anon_sym_ATauth] = ACTIONS(752), + [anon_sym_ATguest] = ACTIONS(754), + [anon_sym_ATproduction] = ACTIONS(756), + [anon_sym_ATenv] = ACTIONS(758), + [anon_sym_AThasSection] = ACTIONS(760), + [anon_sym_ATsectionMissing] = ACTIONS(762), + [anon_sym_ATerror] = ACTIONS(764), + [anon_sym_ATcan] = ACTIONS(766), + [anon_sym_ATcannot] = ACTIONS(768), + [anon_sym_ATcanany] = ACTIONS(770), + [anon_sym_ATfeature] = ACTIONS(772), + [aux_sym__custom_token1] = ACTIONS(774), + [aux_sym__custom_token2] = ACTIONS(776), + [anon_sym_ATswitch] = ACTIONS(778), + [aux_sym_loop_operator_token1] = ACTIONS(780), + [anon_sym_ATfor] = ACTIONS(782), + [anon_sym_ATforeach] = ACTIONS(784), + [anon_sym_ATforelse] = ACTIONS(786), + [anon_sym_ATwhile] = ACTIONS(788), + [anon_sym_ATsetup] = ACTIONS(790), + [anon_sym_ATtask] = ACTIONS(792), + [anon_sym_ATstory] = ACTIONS(794), + [anon_sym_ATbefore] = ACTIONS(796), + [anon_sym_ATafter] = ACTIONS(798), + [anon_sym_ATsuccess] = ACTIONS(800), + [anon_sym_ATfinished] = ACTIONS(802), + [anon_sym_ATpersist] = ACTIONS(804), + [anon_sym_ATteleport] = ACTIONS(806), + [anon_sym_ATvolt] = ACTIONS(808), + [aux_sym__text_token1] = ACTIONS(810), + [aux_sym__text_token2] = ACTIONS(810), + [aux_sym__text_token3] = ACTIONS(812), + }, + [79] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(814), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [80] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(816), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [81] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(818), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [82] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(820), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [83] = { + [sym__definition] = STATE(112), + [sym_keyword] = STATE(112), + [sym_php_statement] = STATE(112), + [sym__escaped] = STATE(1251), + [sym__unescaped] = STATE(1251), + [sym__raw] = STATE(1251), + [sym__inline_raw] = STATE(1251), + [sym__multi_line_raw] = STATE(1251), + [sym_attribute] = STATE(112), + [sym__inline_directive] = STATE(112), + [sym__nested_directive] = STATE(112), + [sym_fragment] = STATE(112), + [sym_section] = STATE(112), + [sym_inlineSection] = STATE(112), + [sym_once] = STATE(112), + [sym_verbatim] = STATE(112), + [sym_stack] = STATE(112), + [sym__push] = STATE(1252), + [sym__pushOnce] = STATE(1252), + [sym__pushIf] = STATE(1252), + [sym__prepend] = STATE(1252), + [sym__prependOnce] = STATE(1252), + [sym_conditional] = STATE(112), + [sym_conditional_keyword] = STATE(112), + [sym__if] = STATE(1253), + [sym__unless] = STATE(1253), + [sym__isset] = STATE(1253), + [sym__empty] = STATE(1253), + [sym__auth] = STATE(1253), + [sym__guest] = STATE(1253), + [sym__production] = STATE(1253), + [sym__env] = STATE(1253), + [sym__hasSection] = STATE(1253), + [sym__sectionMissing] = STATE(1253), + [sym__error] = STATE(1253), + [sym_authorization] = STATE(1253), + [sym__can] = STATE(1254), + [sym__cannot] = STATE(1254), + [sym__canany] = STATE(1254), + [sym__feature] = STATE(1253), + [sym__custom] = STATE(1253), + [sym_switch] = STATE(112), + [sym_loop] = STATE(112), + [sym_loop_operator] = STATE(112), + [sym__for] = STATE(1255), + [sym__foreach] = STATE(1255), + [sym__forelse] = STATE(1255), + [sym__while] = STATE(1255), + [sym_envoy] = STATE(112), + [sym__setup] = STATE(1251), + [sym__task] = STATE(1256), + [sym__story] = STATE(1256), + [sym__hooks] = STATE(1251), + [sym__before] = STATE(1251), + [sym__after] = STATE(1251), + [sym__envoy_error] = STATE(1251), + [sym__success] = STATE(1251), + [sym__finished] = STATE(1251), + [sym_livewire] = STATE(112), + [sym__persist] = STATE(1257), + [sym__teleport] = STATE(1257), + [sym__volt] = STATE(1257), + [sym_text] = STATE(112), + [sym__text] = STATE(692), + [aux_sym__if_statement_directive_body_repeat1] = STATE(112), + [aux_sym_php_only_repeat1] = STATE(692), + [sym_comment] = ACTIONS(822), + [aux_sym_keyword_token1] = ACTIONS(824), + [anon_sym_LBRACE_LBRACE] = ACTIONS(826), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(828), + [anon_sym_ATphp] = ACTIONS(830), + [aux_sym_attribute_token1] = ACTIONS(832), + [aux_sym__inline_directive_token1] = ACTIONS(834), + [anon_sym_ATfragment] = ACTIONS(836), + [anon_sym_ATsection] = ACTIONS(838), + [anon_sym_ATonce] = ACTIONS(840), + [anon_sym_ATverbatim] = ACTIONS(842), + [anon_sym_ATpush] = ACTIONS(844), + [anon_sym_ATpushOnce] = ACTIONS(846), + [anon_sym_ATpushIf] = ACTIONS(848), + [anon_sym_ATprepend] = ACTIONS(850), + [anon_sym_ATprependOnce] = ACTIONS(852), + [anon_sym_ATelse] = ACTIONS(854), + [aux_sym_conditional_keyword_token1] = ACTIONS(856), + [anon_sym_ATif] = ACTIONS(858), + [anon_sym_ATendif] = ACTIONS(706), + [anon_sym_ATunless] = ACTIONS(860), + [anon_sym_ATisset] = ACTIONS(862), + [anon_sym_ATempty] = ACTIONS(864), + [anon_sym_ATauth] = ACTIONS(866), + [anon_sym_ATguest] = ACTIONS(868), + [anon_sym_ATproduction] = ACTIONS(870), + [anon_sym_ATenv] = ACTIONS(872), + [anon_sym_AThasSection] = ACTIONS(874), + [anon_sym_ATsectionMissing] = ACTIONS(876), + [anon_sym_ATerror] = ACTIONS(878), + [anon_sym_ATcan] = ACTIONS(880), + [anon_sym_ATcannot] = ACTIONS(882), + [anon_sym_ATcanany] = ACTIONS(884), + [anon_sym_ATfeature] = ACTIONS(886), + [aux_sym__custom_token1] = ACTIONS(888), + [aux_sym__custom_token2] = ACTIONS(890), + [anon_sym_ATswitch] = ACTIONS(892), + [aux_sym_loop_operator_token1] = ACTIONS(894), + [anon_sym_ATfor] = ACTIONS(896), + [anon_sym_ATforeach] = ACTIONS(898), + [anon_sym_ATforelse] = ACTIONS(900), + [anon_sym_ATwhile] = ACTIONS(902), + [anon_sym_ATsetup] = ACTIONS(904), + [anon_sym_ATtask] = ACTIONS(906), + [anon_sym_ATstory] = ACTIONS(908), + [anon_sym_ATbefore] = ACTIONS(910), + [anon_sym_ATafter] = ACTIONS(912), + [anon_sym_ATsuccess] = ACTIONS(914), + [anon_sym_ATfinished] = ACTIONS(916), + [anon_sym_ATpersist] = ACTIONS(918), + [anon_sym_ATteleport] = ACTIONS(920), + [anon_sym_ATvolt] = ACTIONS(922), + [aux_sym__text_token1] = ACTIONS(924), + [aux_sym__text_token2] = ACTIONS(924), + [aux_sym__text_token3] = ACTIONS(926), }, [84] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(716), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(928), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [85] = { - [sym__definition] = STATE(121), - [sym_comment] = STATE(121), - [sym_keyword] = STATE(121), - [sym_php_statement] = STATE(121), - [sym__escaped] = STATE(1885), - [sym__unescaped] = STATE(1885), - [sym__raw] = STATE(1885), - [sym__inline_raw] = STATE(1885), - [sym__multi_line_raw] = STATE(1885), - [sym_attribute] = STATE(121), - [sym__inline_directive] = STATE(121), - [sym__nested_directive] = STATE(121), - [sym_fragment] = STATE(121), - [sym_section] = STATE(121), - [sym_inlineSection] = STATE(121), - [sym_once] = STATE(121), - [sym_verbatim] = STATE(121), - [sym_stack] = STATE(121), - [sym__push] = STATE(1886), - [sym__pushOnce] = STATE(1886), - [sym__pushIf] = STATE(1886), - [sym__prepend] = STATE(1886), - [sym__prependOnce] = STATE(1886), - [sym_conditional] = STATE(121), - [sym_conditional_keyword] = STATE(121), - [sym__if] = STATE(1887), - [sym__unless] = STATE(1887), - [sym__isset] = STATE(1887), - [sym__empty] = STATE(1887), - [sym__auth] = STATE(1887), - [sym__guest] = STATE(1887), - [sym__production] = STATE(1887), - [sym__env] = STATE(1887), - [sym__hasSection] = STATE(1887), - [sym__sectionMissing] = STATE(1887), - [sym__error] = STATE(1887), - [sym_authorization] = STATE(1887), - [sym__can] = STATE(1888), - [sym__cannot] = STATE(1888), - [sym__canany] = STATE(1888), - [sym__feature] = STATE(1887), - [sym__custom] = STATE(1887), - [sym_switch] = STATE(121), - [sym_loop] = STATE(121), - [sym_loop_operator] = STATE(121), - [sym__for] = STATE(1889), - [sym__foreach] = STATE(1889), - [sym__forelse] = STATE(1889), - [sym__while] = STATE(1889), - [sym_envoy] = STATE(121), - [sym__setup] = STATE(1885), - [sym__task] = STATE(1890), - [sym__story] = STATE(1890), - [sym__hooks] = STATE(1885), - [sym__before] = STATE(1885), - [sym__after] = STATE(1885), - [sym__envoy_error] = STATE(1885), - [sym__success] = STATE(1885), - [sym__finished] = STATE(1885), - [sym_livewire] = STATE(121), - [sym__persist] = STATE(1891), - [sym__teleport] = STATE(1891), - [sym__volt] = STATE(1891), - [sym_text] = STATE(121), - [sym__text] = STATE(680), - [aux_sym__if_statement_directive_body_repeat1] = STATE(121), - [aux_sym_php_only_repeat1] = STATE(680), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(718), - [aux_sym_keyword_token1] = ACTIONS(720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(722), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(724), - [anon_sym_ATphp] = ACTIONS(726), - [aux_sym_attribute_token1] = ACTIONS(728), - [aux_sym__inline_directive_token1] = ACTIONS(730), - [anon_sym_ATfragment] = ACTIONS(732), - [anon_sym_ATsection] = ACTIONS(734), - [anon_sym_ATonce] = ACTIONS(736), - [anon_sym_ATverbatim] = ACTIONS(738), - [anon_sym_ATpush] = ACTIONS(740), - [anon_sym_ATpushOnce] = ACTIONS(742), - [anon_sym_ATpushIf] = ACTIONS(744), - [anon_sym_ATprepend] = ACTIONS(746), - [anon_sym_ATprependOnce] = ACTIONS(748), - [anon_sym_ATelse] = ACTIONS(750), - [aux_sym_conditional_keyword_token1] = ACTIONS(752), - [anon_sym_ATif] = ACTIONS(754), - [anon_sym_ATunless] = ACTIONS(756), - [anon_sym_ATisset] = ACTIONS(758), - [anon_sym_ATempty] = ACTIONS(760), - [anon_sym_ATauth] = ACTIONS(762), - [anon_sym_ATguest] = ACTIONS(764), - [anon_sym_ATproduction] = ACTIONS(766), - [anon_sym_ATenv] = ACTIONS(768), - [anon_sym_AThasSection] = ACTIONS(770), - [anon_sym_ATsectionMissing] = ACTIONS(772), - [anon_sym_ATerror] = ACTIONS(774), - [anon_sym_ATcan] = ACTIONS(776), - [anon_sym_ATcannot] = ACTIONS(778), - [anon_sym_ATendcannot] = ACTIONS(706), - [anon_sym_ATcanany] = ACTIONS(780), - [anon_sym_ATfeature] = ACTIONS(782), - [aux_sym__custom_token1] = ACTIONS(784), - [aux_sym__custom_token2] = ACTIONS(786), - [anon_sym_ATswitch] = ACTIONS(788), - [aux_sym_loop_operator_token1] = ACTIONS(790), - [anon_sym_ATfor] = ACTIONS(792), - [anon_sym_ATforeach] = ACTIONS(794), - [anon_sym_ATforelse] = ACTIONS(796), - [anon_sym_ATwhile] = ACTIONS(798), - [anon_sym_ATsetup] = ACTIONS(800), - [anon_sym_ATtask] = ACTIONS(802), - [anon_sym_ATstory] = ACTIONS(804), - [anon_sym_ATbefore] = ACTIONS(806), - [anon_sym_ATafter] = ACTIONS(808), - [anon_sym_ATsuccess] = ACTIONS(810), - [anon_sym_ATfinished] = ACTIONS(812), - [anon_sym_ATpersist] = ACTIONS(814), - [anon_sym_ATteleport] = ACTIONS(816), - [anon_sym_ATvolt] = ACTIONS(818), - [aux_sym__text_token1] = ACTIONS(820), - [aux_sym__text_token2] = ACTIONS(820), - [aux_sym__text_token3] = ACTIONS(822), + [sym__definition] = STATE(146), + [sym_keyword] = STATE(146), + [sym_php_statement] = STATE(146), + [sym__escaped] = STATE(1340), + [sym__unescaped] = STATE(1340), + [sym__raw] = STATE(1340), + [sym__inline_raw] = STATE(1340), + [sym__multi_line_raw] = STATE(1340), + [sym_attribute] = STATE(146), + [sym__inline_directive] = STATE(146), + [sym__nested_directive] = STATE(146), + [sym_fragment] = STATE(146), + [sym_section] = STATE(146), + [sym_inlineSection] = STATE(146), + [sym_once] = STATE(146), + [sym_verbatim] = STATE(146), + [sym_stack] = STATE(146), + [sym__push] = STATE(1341), + [sym__pushOnce] = STATE(1341), + [sym__pushIf] = STATE(1341), + [sym__prepend] = STATE(1341), + [sym__prependOnce] = STATE(1341), + [sym_conditional] = STATE(146), + [sym_conditional_keyword] = STATE(146), + [sym__if] = STATE(750), + [sym__unless] = STATE(750), + [sym__isset] = STATE(750), + [sym__empty] = STATE(750), + [sym__auth] = STATE(750), + [sym__guest] = STATE(750), + [sym__production] = STATE(750), + [sym__env] = STATE(750), + [sym__hasSection] = STATE(750), + [sym__sectionMissing] = STATE(750), + [sym__error] = STATE(750), + [sym_authorization] = STATE(750), + [sym__can] = STATE(1343), + [sym__cannot] = STATE(1343), + [sym__canany] = STATE(1343), + [sym__feature] = STATE(750), + [sym__custom] = STATE(750), + [sym_switch] = STATE(146), + [sym_loop] = STATE(146), + [sym_loop_operator] = STATE(146), + [sym__for] = STATE(1344), + [sym__foreach] = STATE(1344), + [sym__forelse] = STATE(1344), + [sym__while] = STATE(1344), + [sym_envoy] = STATE(146), + [sym__setup] = STATE(1340), + [sym__task] = STATE(1345), + [sym__story] = STATE(1345), + [sym__hooks] = STATE(1340), + [sym__before] = STATE(1340), + [sym__after] = STATE(1340), + [sym__envoy_error] = STATE(1340), + [sym__success] = STATE(1340), + [sym__finished] = STATE(1340), + [sym_livewire] = STATE(146), + [sym__persist] = STATE(1346), + [sym__teleport] = STATE(1346), + [sym__volt] = STATE(1346), + [sym_text] = STATE(146), + [sym__text] = STATE(686), + [aux_sym__if_statement_directive_body_repeat1] = STATE(146), + [aux_sym_php_only_repeat1] = STATE(686), + [sym_comment] = ACTIONS(930), + [aux_sym_keyword_token1] = ACTIONS(710), + [anon_sym_LBRACE_LBRACE] = ACTIONS(712), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(714), + [anon_sym_ATphp] = ACTIONS(716), + [aux_sym_attribute_token1] = ACTIONS(718), + [aux_sym__inline_directive_token1] = ACTIONS(720), + [anon_sym_ATfragment] = ACTIONS(722), + [anon_sym_ATsection] = ACTIONS(724), + [anon_sym_ATonce] = ACTIONS(726), + [anon_sym_ATverbatim] = ACTIONS(728), + [anon_sym_ATpush] = ACTIONS(730), + [anon_sym_ATpushOnce] = ACTIONS(732), + [anon_sym_ATpushIf] = ACTIONS(734), + [anon_sym_ATprepend] = ACTIONS(736), + [anon_sym_ATprependOnce] = ACTIONS(738), + [anon_sym_ATelse] = ACTIONS(740), + [aux_sym_conditional_keyword_token1] = ACTIONS(742), + [anon_sym_ATif] = ACTIONS(744), + [anon_sym_ATunless] = ACTIONS(746), + [anon_sym_ATendunless] = ACTIONS(497), + [anon_sym_ATisset] = ACTIONS(748), + [anon_sym_ATempty] = ACTIONS(750), + [anon_sym_ATauth] = ACTIONS(752), + [anon_sym_ATguest] = ACTIONS(754), + [anon_sym_ATproduction] = ACTIONS(756), + [anon_sym_ATenv] = ACTIONS(758), + [anon_sym_AThasSection] = ACTIONS(760), + [anon_sym_ATsectionMissing] = ACTIONS(762), + [anon_sym_ATerror] = ACTIONS(764), + [anon_sym_ATcan] = ACTIONS(766), + [anon_sym_ATcannot] = ACTIONS(768), + [anon_sym_ATcanany] = ACTIONS(770), + [anon_sym_ATfeature] = ACTIONS(772), + [aux_sym__custom_token1] = ACTIONS(774), + [aux_sym__custom_token2] = ACTIONS(776), + [anon_sym_ATswitch] = ACTIONS(778), + [aux_sym_loop_operator_token1] = ACTIONS(780), + [anon_sym_ATfor] = ACTIONS(782), + [anon_sym_ATforeach] = ACTIONS(784), + [anon_sym_ATforelse] = ACTIONS(786), + [anon_sym_ATwhile] = ACTIONS(788), + [anon_sym_ATsetup] = ACTIONS(790), + [anon_sym_ATtask] = ACTIONS(792), + [anon_sym_ATstory] = ACTIONS(794), + [anon_sym_ATbefore] = ACTIONS(796), + [anon_sym_ATafter] = ACTIONS(798), + [anon_sym_ATsuccess] = ACTIONS(800), + [anon_sym_ATfinished] = ACTIONS(802), + [anon_sym_ATpersist] = ACTIONS(804), + [anon_sym_ATteleport] = ACTIONS(806), + [anon_sym_ATvolt] = ACTIONS(808), + [aux_sym__text_token1] = ACTIONS(810), + [aux_sym__text_token2] = ACTIONS(810), + [aux_sym__text_token3] = ACTIONS(812), }, [86] = { - [sym__definition] = STATE(108), - [sym_comment] = STATE(108), - [sym_keyword] = STATE(108), - [sym_php_statement] = STATE(108), - [sym__escaped] = STATE(1275), - [sym__unescaped] = STATE(1275), - [sym__raw] = STATE(1275), - [sym__inline_raw] = STATE(1275), - [sym__multi_line_raw] = STATE(1275), - [sym_attribute] = STATE(108), - [sym__inline_directive] = STATE(108), - [sym__nested_directive] = STATE(108), - [sym_fragment] = STATE(108), - [sym_section] = STATE(108), - [sym_inlineSection] = STATE(108), - [sym_once] = STATE(108), - [sym_verbatim] = STATE(108), - [sym_stack] = STATE(108), - [sym__push] = STATE(1276), - [sym__pushOnce] = STATE(1276), - [sym__pushIf] = STATE(1276), - [sym__prepend] = STATE(1276), - [sym__prependOnce] = STATE(1276), - [sym_conditional] = STATE(108), - [sym_conditional_keyword] = STATE(108), - [sym__if] = STATE(1277), - [sym__unless] = STATE(1277), - [sym__isset] = STATE(1277), - [sym__empty] = STATE(1277), - [sym__auth] = STATE(1277), - [sym__guest] = STATE(1277), - [sym__production] = STATE(1277), - [sym__env] = STATE(1277), - [sym__hasSection] = STATE(1277), - [sym__sectionMissing] = STATE(1277), - [sym__error] = STATE(1277), - [sym_authorization] = STATE(1277), - [sym__can] = STATE(1278), - [sym__cannot] = STATE(1278), - [sym__canany] = STATE(1278), - [sym__feature] = STATE(1277), - [sym__custom] = STATE(1277), - [sym_switch] = STATE(108), - [sym_loop] = STATE(108), - [sym_loop_operator] = STATE(108), - [sym__for] = STATE(1279), - [sym__foreach] = STATE(1279), - [sym__forelse] = STATE(1279), - [sym__while] = STATE(1279), - [sym_envoy] = STATE(108), - [sym__setup] = STATE(1275), - [sym__task] = STATE(1280), - [sym__story] = STATE(1280), - [sym__hooks] = STATE(1275), - [sym__before] = STATE(1275), - [sym__after] = STATE(1275), - [sym__envoy_error] = STATE(1275), - [sym__success] = STATE(1275), - [sym__finished] = STATE(1275), - [sym_livewire] = STATE(108), - [sym__persist] = STATE(1281), - [sym__teleport] = STATE(1281), - [sym__volt] = STATE(1281), - [sym_text] = STATE(108), - [sym__text] = STATE(687), - [aux_sym__if_statement_directive_body_repeat1] = STATE(108), - [aux_sym_php_only_repeat1] = STATE(687), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(824), - [aux_sym_keyword_token1] = ACTIONS(826), - [anon_sym_LBRACE_LBRACE] = ACTIONS(828), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(830), - [anon_sym_ATphp] = ACTIONS(832), - [aux_sym_attribute_token1] = ACTIONS(834), - [aux_sym__inline_directive_token1] = ACTIONS(836), - [anon_sym_ATfragment] = ACTIONS(838), - [anon_sym_ATsection] = ACTIONS(840), - [anon_sym_ATonce] = ACTIONS(842), - [anon_sym_ATverbatim] = ACTIONS(844), - [anon_sym_ATpush] = ACTIONS(846), - [anon_sym_ATpushOnce] = ACTIONS(848), - [anon_sym_ATpushIf] = ACTIONS(850), - [anon_sym_ATprepend] = ACTIONS(852), - [anon_sym_ATprependOnce] = ACTIONS(854), - [anon_sym_ATelse] = ACTIONS(856), - [aux_sym_conditional_keyword_token1] = ACTIONS(858), - [anon_sym_ATif] = ACTIONS(860), - [anon_sym_ATendif] = ACTIONS(660), - [anon_sym_ATunless] = ACTIONS(862), - [anon_sym_ATisset] = ACTIONS(864), - [anon_sym_ATempty] = ACTIONS(866), - [anon_sym_ATauth] = ACTIONS(868), - [anon_sym_ATguest] = ACTIONS(870), - [anon_sym_ATproduction] = ACTIONS(872), - [anon_sym_ATenv] = ACTIONS(874), - [anon_sym_AThasSection] = ACTIONS(876), - [anon_sym_ATsectionMissing] = ACTIONS(878), - [anon_sym_ATerror] = ACTIONS(880), - [anon_sym_ATcan] = ACTIONS(882), - [anon_sym_ATcannot] = ACTIONS(884), - [anon_sym_ATcanany] = ACTIONS(886), - [anon_sym_ATfeature] = ACTIONS(888), - [aux_sym__custom_token1] = ACTIONS(890), - [aux_sym__custom_token2] = ACTIONS(892), - [anon_sym_ATswitch] = ACTIONS(894), - [aux_sym_loop_operator_token1] = ACTIONS(896), - [anon_sym_ATfor] = ACTIONS(898), - [anon_sym_ATforeach] = ACTIONS(900), - [anon_sym_ATforelse] = ACTIONS(902), - [anon_sym_ATwhile] = ACTIONS(904), - [anon_sym_ATsetup] = ACTIONS(906), - [anon_sym_ATtask] = ACTIONS(908), - [anon_sym_ATstory] = ACTIONS(910), - [anon_sym_ATbefore] = ACTIONS(912), - [anon_sym_ATafter] = ACTIONS(914), - [anon_sym_ATsuccess] = ACTIONS(916), - [anon_sym_ATfinished] = ACTIONS(918), - [anon_sym_ATpersist] = ACTIONS(920), - [anon_sym_ATteleport] = ACTIONS(922), - [anon_sym_ATvolt] = ACTIONS(924), - [aux_sym__text_token1] = ACTIONS(926), - [aux_sym__text_token2] = ACTIONS(926), - [aux_sym__text_token3] = ACTIONS(928), + [sym__definition] = STATE(86), + [sym_keyword] = STATE(86), + [sym_php_statement] = STATE(86), + [sym__escaped] = STATE(1681), + [sym__unescaped] = STATE(1681), + [sym__raw] = STATE(1681), + [sym__inline_raw] = STATE(1681), + [sym__multi_line_raw] = STATE(1681), + [sym_attribute] = STATE(86), + [sym__inline_directive] = STATE(86), + [sym__nested_directive] = STATE(86), + [sym_fragment] = STATE(86), + [sym_section] = STATE(86), + [sym_inlineSection] = STATE(86), + [sym_once] = STATE(86), + [sym_verbatim] = STATE(86), + [sym_stack] = STATE(86), + [sym__push] = STATE(1682), + [sym__pushOnce] = STATE(1682), + [sym__pushIf] = STATE(1682), + [sym__prepend] = STATE(1682), + [sym__prependOnce] = STATE(1682), + [sym_conditional] = STATE(86), + [sym_conditional_keyword] = STATE(86), + [sym__if] = STATE(1683), + [sym__unless] = STATE(1683), + [sym__isset] = STATE(1683), + [sym__empty] = STATE(1683), + [sym__auth] = STATE(1683), + [sym__guest] = STATE(1683), + [sym__production] = STATE(1683), + [sym__env] = STATE(1683), + [sym__hasSection] = STATE(1683), + [sym__sectionMissing] = STATE(1683), + [sym__error] = STATE(1683), + [sym_authorization] = STATE(1683), + [sym__can] = STATE(1684), + [sym__cannot] = STATE(1684), + [sym__canany] = STATE(1684), + [sym__feature] = STATE(1683), + [sym__custom] = STATE(1683), + [sym_switch] = STATE(86), + [sym_loop] = STATE(86), + [sym_loop_operator] = STATE(86), + [sym__for] = STATE(749), + [sym__foreach] = STATE(749), + [sym__forelse] = STATE(749), + [sym__while] = STATE(749), + [sym_envoy] = STATE(86), + [sym__setup] = STATE(1681), + [sym__task] = STATE(1686), + [sym__story] = STATE(1686), + [sym__hooks] = STATE(1681), + [sym__before] = STATE(1681), + [sym__after] = STATE(1681), + [sym__envoy_error] = STATE(1681), + [sym__success] = STATE(1681), + [sym__finished] = STATE(1681), + [sym_livewire] = STATE(86), + [sym__persist] = STATE(1687), + [sym__teleport] = STATE(1687), + [sym__volt] = STATE(1687), + [sym_text] = STATE(86), + [sym__text] = STATE(710), + [aux_sym__if_statement_directive_body_repeat1] = STATE(86), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(932), + [aux_sym_keyword_token1] = ACTIONS(935), + [anon_sym_LBRACE_LBRACE] = ACTIONS(938), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(941), + [anon_sym_ATphp] = ACTIONS(944), + [aux_sym_attribute_token1] = ACTIONS(947), + [aux_sym__inline_directive_token1] = ACTIONS(950), + [anon_sym_ATfragment] = ACTIONS(953), + [anon_sym_ATsection] = ACTIONS(956), + [anon_sym_ATonce] = ACTIONS(959), + [anon_sym_ATverbatim] = ACTIONS(962), + [anon_sym_ATpush] = ACTIONS(965), + [anon_sym_ATpushOnce] = ACTIONS(968), + [anon_sym_ATpushIf] = ACTIONS(971), + [anon_sym_ATprepend] = ACTIONS(974), + [anon_sym_ATprependOnce] = ACTIONS(977), + [anon_sym_ATelse] = ACTIONS(980), + [aux_sym_conditional_keyword_token1] = ACTIONS(983), + [anon_sym_ATif] = ACTIONS(986), + [anon_sym_ATunless] = ACTIONS(989), + [anon_sym_ATisset] = ACTIONS(992), + [anon_sym_ATempty] = ACTIONS(995), + [anon_sym_ATauth] = ACTIONS(998), + [anon_sym_ATguest] = ACTIONS(1001), + [anon_sym_ATproduction] = ACTIONS(1004), + [anon_sym_ATenv] = ACTIONS(1007), + [anon_sym_AThasSection] = ACTIONS(1010), + [anon_sym_ATsectionMissing] = ACTIONS(1013), + [anon_sym_ATerror] = ACTIONS(1016), + [anon_sym_ATenderror] = ACTIONS(633), + [anon_sym_ATcan] = ACTIONS(1019), + [anon_sym_ATcannot] = ACTIONS(1022), + [anon_sym_ATcanany] = ACTIONS(1025), + [anon_sym_ATfeature] = ACTIONS(1028), + [aux_sym__custom_token1] = ACTIONS(1031), + [aux_sym__custom_token2] = ACTIONS(1034), + [anon_sym_ATswitch] = ACTIONS(1037), + [aux_sym_loop_operator_token1] = ACTIONS(1040), + [anon_sym_ATfor] = ACTIONS(1043), + [anon_sym_ATforeach] = ACTIONS(1046), + [anon_sym_ATforelse] = ACTIONS(1049), + [anon_sym_ATwhile] = ACTIONS(1052), + [anon_sym_ATsetup] = ACTIONS(1055), + [anon_sym_ATtask] = ACTIONS(1058), + [anon_sym_ATstory] = ACTIONS(1061), + [anon_sym_ATbefore] = ACTIONS(1064), + [anon_sym_ATafter] = ACTIONS(1067), + [anon_sym_ATsuccess] = ACTIONS(1070), + [anon_sym_ATfinished] = ACTIONS(1073), + [anon_sym_ATpersist] = ACTIONS(1076), + [anon_sym_ATteleport] = ACTIONS(1079), + [anon_sym_ATvolt] = ACTIONS(1082), + [aux_sym__text_token1] = ACTIONS(1085), + [aux_sym__text_token2] = ACTIONS(1085), + [aux_sym__text_token3] = ACTIONS(1088), }, [87] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(930), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1091), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [88] = { - [sym__definition] = STATE(145), - [sym_comment] = STATE(145), - [sym_keyword] = STATE(145), - [sym_php_statement] = STATE(145), - [sym__escaped] = STATE(1366), - [sym__unescaped] = STATE(1366), - [sym__raw] = STATE(1366), - [sym__inline_raw] = STATE(1366), - [sym__multi_line_raw] = STATE(1366), - [sym_attribute] = STATE(145), - [sym__inline_directive] = STATE(145), - [sym__nested_directive] = STATE(145), - [sym_fragment] = STATE(145), - [sym_section] = STATE(145), - [sym_inlineSection] = STATE(145), - [sym_once] = STATE(145), - [sym_verbatim] = STATE(145), - [sym_stack] = STATE(145), - [sym__push] = STATE(1367), - [sym__pushOnce] = STATE(1367), - [sym__pushIf] = STATE(1367), - [sym__prepend] = STATE(1367), - [sym__prependOnce] = STATE(1367), - [sym_conditional] = STATE(145), - [sym_conditional_keyword] = STATE(145), - [sym__if] = STATE(1368), - [sym__unless] = STATE(1368), - [sym__isset] = STATE(1368), - [sym__empty] = STATE(1368), - [sym__auth] = STATE(1368), - [sym__guest] = STATE(1368), - [sym__production] = STATE(1368), - [sym__env] = STATE(1368), - [sym__hasSection] = STATE(1368), - [sym__sectionMissing] = STATE(1368), - [sym__error] = STATE(1368), - [sym_authorization] = STATE(1368), - [sym__can] = STATE(1369), - [sym__cannot] = STATE(1369), - [sym__canany] = STATE(1369), - [sym__feature] = STATE(1368), - [sym__custom] = STATE(1368), - [sym_switch] = STATE(145), - [sym_loop] = STATE(145), - [sym_loop_operator] = STATE(145), - [sym__for] = STATE(1370), - [sym__foreach] = STATE(1370), - [sym__forelse] = STATE(1370), - [sym__while] = STATE(1370), - [sym_envoy] = STATE(145), - [sym__setup] = STATE(1366), - [sym__task] = STATE(1371), - [sym__story] = STATE(1371), - [sym__hooks] = STATE(1366), - [sym__before] = STATE(1366), - [sym__after] = STATE(1366), - [sym__envoy_error] = STATE(1366), - [sym__success] = STATE(1366), - [sym__finished] = STATE(1366), - [sym_livewire] = STATE(145), - [sym__persist] = STATE(1372), - [sym__teleport] = STATE(1372), - [sym__volt] = STATE(1372), - [sym_text] = STATE(145), - [sym__text] = STATE(682), - [aux_sym__if_statement_directive_body_repeat1] = STATE(145), - [aux_sym_php_only_repeat1] = STATE(682), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(932), - [aux_sym_keyword_token1] = ACTIONS(934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(936), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(938), - [anon_sym_ATphp] = ACTIONS(940), - [aux_sym_attribute_token1] = ACTIONS(942), - [aux_sym__inline_directive_token1] = ACTIONS(944), - [anon_sym_ATfragment] = ACTIONS(946), - [anon_sym_ATsection] = ACTIONS(948), - [anon_sym_ATonce] = ACTIONS(950), - [anon_sym_ATverbatim] = ACTIONS(952), - [anon_sym_ATpush] = ACTIONS(954), - [anon_sym_ATpushOnce] = ACTIONS(956), - [anon_sym_ATpushIf] = ACTIONS(958), - [anon_sym_ATprepend] = ACTIONS(960), - [anon_sym_ATprependOnce] = ACTIONS(962), - [anon_sym_ATelse] = ACTIONS(964), - [aux_sym_conditional_keyword_token1] = ACTIONS(966), - [anon_sym_ATif] = ACTIONS(968), - [anon_sym_ATunless] = ACTIONS(970), - [anon_sym_ATendunless] = ACTIONS(706), - [anon_sym_ATisset] = ACTIONS(972), - [anon_sym_ATempty] = ACTIONS(974), - [anon_sym_ATauth] = ACTIONS(976), - [anon_sym_ATguest] = ACTIONS(978), - [anon_sym_ATproduction] = ACTIONS(980), - [anon_sym_ATenv] = ACTIONS(982), - [anon_sym_AThasSection] = ACTIONS(984), - [anon_sym_ATsectionMissing] = ACTIONS(986), - [anon_sym_ATerror] = ACTIONS(988), - [anon_sym_ATcan] = ACTIONS(990), - [anon_sym_ATcannot] = ACTIONS(992), - [anon_sym_ATcanany] = ACTIONS(994), - [anon_sym_ATfeature] = ACTIONS(996), - [aux_sym__custom_token1] = ACTIONS(998), - [aux_sym__custom_token2] = ACTIONS(1000), - [anon_sym_ATswitch] = ACTIONS(1002), - [aux_sym_loop_operator_token1] = ACTIONS(1004), - [anon_sym_ATfor] = ACTIONS(1006), - [anon_sym_ATforeach] = ACTIONS(1008), - [anon_sym_ATforelse] = ACTIONS(1010), - [anon_sym_ATwhile] = ACTIONS(1012), - [anon_sym_ATsetup] = ACTIONS(1014), - [anon_sym_ATtask] = ACTIONS(1016), - [anon_sym_ATstory] = ACTIONS(1018), - [anon_sym_ATbefore] = ACTIONS(1020), - [anon_sym_ATafter] = ACTIONS(1022), - [anon_sym_ATsuccess] = ACTIONS(1024), - [anon_sym_ATfinished] = ACTIONS(1026), - [anon_sym_ATpersist] = ACTIONS(1028), - [anon_sym_ATteleport] = ACTIONS(1030), - [anon_sym_ATvolt] = ACTIONS(1032), - [aux_sym__text_token1] = ACTIONS(1034), - [aux_sym__text_token2] = ACTIONS(1034), - [aux_sym__text_token3] = ACTIONS(1036), + [sym__definition] = STATE(120), + [sym_keyword] = STATE(120), + [sym_php_statement] = STATE(120), + [sym__escaped] = STATE(1175), + [sym__unescaped] = STATE(1175), + [sym__raw] = STATE(1175), + [sym__inline_raw] = STATE(1175), + [sym__multi_line_raw] = STATE(1175), + [sym_attribute] = STATE(120), + [sym__inline_directive] = STATE(120), + [sym__nested_directive] = STATE(120), + [sym_fragment] = STATE(120), + [sym_section] = STATE(120), + [sym_inlineSection] = STATE(120), + [sym_once] = STATE(120), + [sym_verbatim] = STATE(120), + [sym_stack] = STATE(120), + [sym__push] = STATE(1174), + [sym__pushOnce] = STATE(1174), + [sym__pushIf] = STATE(1174), + [sym__prepend] = STATE(1174), + [sym__prependOnce] = STATE(1174), + [sym_conditional] = STATE(120), + [sym_conditional_keyword] = STATE(120), + [sym__if] = STATE(1173), + [sym__unless] = STATE(1173), + [sym__isset] = STATE(1173), + [sym__empty] = STATE(1173), + [sym__auth] = STATE(1173), + [sym__guest] = STATE(1173), + [sym__production] = STATE(1173), + [sym__env] = STATE(1173), + [sym__hasSection] = STATE(1173), + [sym__sectionMissing] = STATE(1173), + [sym__error] = STATE(1173), + [sym_authorization] = STATE(1173), + [sym__can] = STATE(1172), + [sym__cannot] = STATE(1172), + [sym__canany] = STATE(1172), + [sym__feature] = STATE(1173), + [sym__custom] = STATE(1173), + [sym_switch] = STATE(120), + [sym_loop] = STATE(120), + [sym_loop_operator] = STATE(120), + [sym__for] = STATE(1171), + [sym__foreach] = STATE(1171), + [sym__forelse] = STATE(1171), + [sym__while] = STATE(1171), + [sym_envoy] = STATE(120), + [sym__setup] = STATE(1175), + [sym__task] = STATE(1170), + [sym__story] = STATE(1170), + [sym__hooks] = STATE(1175), + [sym__before] = STATE(1175), + [sym__after] = STATE(1175), + [sym__envoy_error] = STATE(1175), + [sym__success] = STATE(1175), + [sym__finished] = STATE(1175), + [sym_livewire] = STATE(120), + [sym__persist] = STATE(1168), + [sym__teleport] = STATE(1168), + [sym__volt] = STATE(1168), + [sym_text] = STATE(120), + [sym__text] = STATE(683), + [aux_sym__if_statement_directive_body_repeat1] = STATE(120), + [aux_sym_php_only_repeat1] = STATE(683), + [sym_comment] = ACTIONS(1093), + [aux_sym_keyword_token1] = ACTIONS(1095), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1099), + [anon_sym_ATphp] = ACTIONS(1101), + [aux_sym_attribute_token1] = ACTIONS(1103), + [aux_sym__inline_directive_token1] = ACTIONS(1105), + [anon_sym_ATfragment] = ACTIONS(1107), + [anon_sym_ATsection] = ACTIONS(1109), + [anon_sym_ATonce] = ACTIONS(1111), + [anon_sym_ATverbatim] = ACTIONS(1113), + [anon_sym_ATpush] = ACTIONS(1115), + [anon_sym_ATpushOnce] = ACTIONS(1117), + [anon_sym_ATpushIf] = ACTIONS(1119), + [anon_sym_ATprepend] = ACTIONS(1121), + [anon_sym_ATprependOnce] = ACTIONS(1123), + [anon_sym_ATelse] = ACTIONS(1125), + [aux_sym_conditional_keyword_token1] = ACTIONS(1127), + [anon_sym_ATif] = ACTIONS(1129), + [anon_sym_ATunless] = ACTIONS(1131), + [anon_sym_ATisset] = ACTIONS(1133), + [anon_sym_ATempty] = ACTIONS(1135), + [anon_sym_ATauth] = ACTIONS(1137), + [anon_sym_ATguest] = ACTIONS(1139), + [anon_sym_ATproduction] = ACTIONS(1141), + [anon_sym_ATenv] = ACTIONS(1143), + [anon_sym_AThasSection] = ACTIONS(1145), + [anon_sym_ATsectionMissing] = ACTIONS(1147), + [anon_sym_ATerror] = ACTIONS(1149), + [anon_sym_ATcan] = ACTIONS(1151), + [anon_sym_ATcannot] = ACTIONS(1153), + [anon_sym_ATcanany] = ACTIONS(1155), + [anon_sym_ATfeature] = ACTIONS(1157), + [anon_sym_ATendfeature] = ACTIONS(706), + [aux_sym__custom_token1] = ACTIONS(1159), + [aux_sym__custom_token2] = ACTIONS(1161), + [anon_sym_ATswitch] = ACTIONS(1163), + [aux_sym_loop_operator_token1] = ACTIONS(1165), + [anon_sym_ATfor] = ACTIONS(1167), + [anon_sym_ATforeach] = ACTIONS(1169), + [anon_sym_ATforelse] = ACTIONS(1171), + [anon_sym_ATwhile] = ACTIONS(1173), + [anon_sym_ATsetup] = ACTIONS(1175), + [anon_sym_ATtask] = ACTIONS(1177), + [anon_sym_ATstory] = ACTIONS(1179), + [anon_sym_ATbefore] = ACTIONS(1181), + [anon_sym_ATafter] = ACTIONS(1183), + [anon_sym_ATsuccess] = ACTIONS(1185), + [anon_sym_ATfinished] = ACTIONS(1187), + [anon_sym_ATpersist] = ACTIONS(1189), + [anon_sym_ATteleport] = ACTIONS(1191), + [anon_sym_ATvolt] = ACTIONS(1193), + [aux_sym__text_token1] = ACTIONS(1195), + [aux_sym__text_token2] = ACTIONS(1195), + [aux_sym__text_token3] = ACTIONS(1197), }, [89] = { [sym__definition] = STATE(90), - [sym_comment] = STATE(90), [sym_keyword] = STATE(90), [sym_php_statement] = STATE(90), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), [sym_attribute] = STATE(90), [sym__inline_directive] = STATE(90), [sym__nested_directive] = STATE(90), @@ -37004,56 +36414,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(90), [sym_verbatim] = STATE(90), [sym_stack] = STATE(90), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), [sym_conditional] = STATE(90), [sym_conditional_keyword] = STATE(90), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), [sym_switch] = STATE(90), [sym_loop] = STATE(90), [sym_loop_operator] = STATE(90), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), [sym_envoy] = STATE(90), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), [sym_livewire] = STATE(90), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), [sym_text] = STATE(90), - [sym__text] = STATE(704), + [sym__text] = STATE(720), [aux_sym__if_statement_directive_body_repeat1] = STATE(90), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(541), [aux_sym_keyword_token1] = ACTIONS(109), [anon_sym_LBRACE_LBRACE] = ACTIONS(111), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), @@ -37077,7 +36487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATempty] = ACTIONS(149), [anon_sym_ATauth] = ACTIONS(151), [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATendguest] = ACTIONS(1038), + [anon_sym_ATendguest] = ACTIONS(1199), [anon_sym_ATproduction] = ACTIONS(155), [anon_sym_ATenv] = ACTIONS(157), [anon_sym_AThasSection] = ACTIONS(159), @@ -37111,14 +36521,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [90] = { [sym__definition] = STATE(90), - [sym_comment] = STATE(90), [sym_keyword] = STATE(90), [sym_php_statement] = STATE(90), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), [sym_attribute] = STATE(90), [sym__inline_directive] = STATE(90), [sym__nested_directive] = STATE(90), @@ -37128,493 +36537,1350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(90), [sym_verbatim] = STATE(90), [sym_stack] = STATE(90), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), [sym_conditional] = STATE(90), [sym_conditional_keyword] = STATE(90), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), [sym_switch] = STATE(90), [sym_loop] = STATE(90), [sym_loop_operator] = STATE(90), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), [sym_envoy] = STATE(90), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), [sym_livewire] = STATE(90), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), [sym_text] = STATE(90), - [sym__text] = STATE(704), + [sym__text] = STATE(720), [aux_sym__if_statement_directive_body_repeat1] = STATE(90), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1040), - [aux_sym_keyword_token1] = ACTIONS(1043), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1046), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1049), - [anon_sym_ATphp] = ACTIONS(1052), - [aux_sym_attribute_token1] = ACTIONS(1055), - [aux_sym__inline_directive_token1] = ACTIONS(1058), - [anon_sym_ATfragment] = ACTIONS(1061), - [anon_sym_ATsection] = ACTIONS(1064), - [anon_sym_ATonce] = ACTIONS(1067), - [anon_sym_ATverbatim] = ACTIONS(1070), - [anon_sym_ATpush] = ACTIONS(1073), - [anon_sym_ATpushOnce] = ACTIONS(1076), - [anon_sym_ATpushIf] = ACTIONS(1079), - [anon_sym_ATprepend] = ACTIONS(1082), - [anon_sym_ATprependOnce] = ACTIONS(1085), - [anon_sym_ATelse] = ACTIONS(1088), - [aux_sym_conditional_keyword_token1] = ACTIONS(1091), - [anon_sym_ATif] = ACTIONS(1094), - [anon_sym_ATunless] = ACTIONS(1097), - [anon_sym_ATisset] = ACTIONS(1100), - [anon_sym_ATempty] = ACTIONS(1103), - [anon_sym_ATauth] = ACTIONS(1106), - [anon_sym_ATguest] = ACTIONS(1109), - [anon_sym_ATendguest] = ACTIONS(518), - [anon_sym_ATproduction] = ACTIONS(1112), - [anon_sym_ATenv] = ACTIONS(1115), - [anon_sym_AThasSection] = ACTIONS(1118), - [anon_sym_ATsectionMissing] = ACTIONS(1121), - [anon_sym_ATerror] = ACTIONS(1124), - [anon_sym_ATcan] = ACTIONS(1127), - [anon_sym_ATcannot] = ACTIONS(1130), - [anon_sym_ATcanany] = ACTIONS(1133), - [anon_sym_ATfeature] = ACTIONS(1136), - [aux_sym__custom_token1] = ACTIONS(1139), - [aux_sym__custom_token2] = ACTIONS(1142), - [anon_sym_ATswitch] = ACTIONS(1145), - [aux_sym_loop_operator_token1] = ACTIONS(1148), - [anon_sym_ATfor] = ACTIONS(1151), - [anon_sym_ATforeach] = ACTIONS(1154), - [anon_sym_ATforelse] = ACTIONS(1157), - [anon_sym_ATwhile] = ACTIONS(1160), - [anon_sym_ATsetup] = ACTIONS(1163), - [anon_sym_ATtask] = ACTIONS(1166), - [anon_sym_ATstory] = ACTIONS(1169), - [anon_sym_ATbefore] = ACTIONS(1172), - [anon_sym_ATafter] = ACTIONS(1175), - [anon_sym_ATsuccess] = ACTIONS(1178), - [anon_sym_ATfinished] = ACTIONS(1181), - [anon_sym_ATpersist] = ACTIONS(1184), - [anon_sym_ATteleport] = ACTIONS(1187), - [anon_sym_ATvolt] = ACTIONS(1190), - [aux_sym__text_token1] = ACTIONS(1193), - [aux_sym__text_token2] = ACTIONS(1193), - [aux_sym__text_token3] = ACTIONS(1196), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(1201), + [aux_sym_keyword_token1] = ACTIONS(1204), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1207), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1210), + [anon_sym_ATphp] = ACTIONS(1213), + [aux_sym_attribute_token1] = ACTIONS(1216), + [aux_sym__inline_directive_token1] = ACTIONS(1219), + [anon_sym_ATfragment] = ACTIONS(1222), + [anon_sym_ATsection] = ACTIONS(1225), + [anon_sym_ATonce] = ACTIONS(1228), + [anon_sym_ATverbatim] = ACTIONS(1231), + [anon_sym_ATpush] = ACTIONS(1234), + [anon_sym_ATpushOnce] = ACTIONS(1237), + [anon_sym_ATpushIf] = ACTIONS(1240), + [anon_sym_ATprepend] = ACTIONS(1243), + [anon_sym_ATprependOnce] = ACTIONS(1246), + [anon_sym_ATelse] = ACTIONS(1249), + [aux_sym_conditional_keyword_token1] = ACTIONS(1252), + [anon_sym_ATif] = ACTIONS(1255), + [anon_sym_ATunless] = ACTIONS(1258), + [anon_sym_ATisset] = ACTIONS(1261), + [anon_sym_ATempty] = ACTIONS(1264), + [anon_sym_ATauth] = ACTIONS(1267), + [anon_sym_ATguest] = ACTIONS(1270), + [anon_sym_ATendguest] = ACTIONS(633), + [anon_sym_ATproduction] = ACTIONS(1273), + [anon_sym_ATenv] = ACTIONS(1276), + [anon_sym_AThasSection] = ACTIONS(1279), + [anon_sym_ATsectionMissing] = ACTIONS(1282), + [anon_sym_ATerror] = ACTIONS(1285), + [anon_sym_ATcan] = ACTIONS(1288), + [anon_sym_ATcannot] = ACTIONS(1291), + [anon_sym_ATcanany] = ACTIONS(1294), + [anon_sym_ATfeature] = ACTIONS(1297), + [aux_sym__custom_token1] = ACTIONS(1300), + [aux_sym__custom_token2] = ACTIONS(1303), + [anon_sym_ATswitch] = ACTIONS(1306), + [aux_sym_loop_operator_token1] = ACTIONS(1309), + [anon_sym_ATfor] = ACTIONS(1312), + [anon_sym_ATforeach] = ACTIONS(1315), + [anon_sym_ATforelse] = ACTIONS(1318), + [anon_sym_ATwhile] = ACTIONS(1321), + [anon_sym_ATsetup] = ACTIONS(1324), + [anon_sym_ATtask] = ACTIONS(1327), + [anon_sym_ATstory] = ACTIONS(1330), + [anon_sym_ATbefore] = ACTIONS(1333), + [anon_sym_ATafter] = ACTIONS(1336), + [anon_sym_ATsuccess] = ACTIONS(1339), + [anon_sym_ATfinished] = ACTIONS(1342), + [anon_sym_ATpersist] = ACTIONS(1345), + [anon_sym_ATteleport] = ACTIONS(1348), + [anon_sym_ATvolt] = ACTIONS(1351), + [aux_sym__text_token1] = ACTIONS(1354), + [aux_sym__text_token2] = ACTIONS(1354), + [aux_sym__text_token3] = ACTIONS(1357), }, [91] = { - [sym__definition] = STATE(91), - [sym_comment] = STATE(91), - [sym_keyword] = STATE(91), - [sym_php_statement] = STATE(91), - [sym__escaped] = STATE(1800), - [sym__unescaped] = STATE(1800), - [sym__raw] = STATE(1800), - [sym__inline_raw] = STATE(1800), - [sym__multi_line_raw] = STATE(1800), - [sym_attribute] = STATE(91), - [sym__inline_directive] = STATE(91), - [sym__nested_directive] = STATE(91), - [sym_fragment] = STATE(91), - [sym_section] = STATE(91), - [sym_inlineSection] = STATE(91), - [sym_once] = STATE(91), - [sym_verbatim] = STATE(91), - [sym_stack] = STATE(91), - [sym__push] = STATE(1801), - [sym__pushOnce] = STATE(1801), - [sym__pushIf] = STATE(1801), - [sym__prepend] = STATE(1801), - [sym__prependOnce] = STATE(1801), - [sym_conditional] = STATE(91), - [sym_conditional_keyword] = STATE(91), - [sym__if] = STATE(1802), - [sym__unless] = STATE(1802), - [sym__isset] = STATE(1802), - [sym__empty] = STATE(1802), - [sym__auth] = STATE(1802), - [sym__guest] = STATE(1802), - [sym__production] = STATE(1802), - [sym__env] = STATE(1802), - [sym__hasSection] = STATE(1802), - [sym__sectionMissing] = STATE(1802), - [sym__error] = STATE(1802), - [sym_authorization] = STATE(1802), - [sym__can] = STATE(1803), - [sym__cannot] = STATE(1803), - [sym__canany] = STATE(1803), - [sym__feature] = STATE(1802), - [sym__custom] = STATE(1802), - [sym_switch] = STATE(91), - [sym_loop] = STATE(91), - [sym_loop_operator] = STATE(91), - [sym__for] = STATE(1804), - [sym__foreach] = STATE(1804), - [sym__forelse] = STATE(1804), - [sym__while] = STATE(1804), - [sym_envoy] = STATE(91), - [sym__setup] = STATE(1800), - [sym__task] = STATE(1805), - [sym__story] = STATE(1805), - [sym__hooks] = STATE(1800), - [sym__before] = STATE(1800), - [sym__after] = STATE(1800), - [sym__envoy_error] = STATE(1800), - [sym__success] = STATE(1800), - [sym__finished] = STATE(1800), - [sym_livewire] = STATE(91), - [sym__persist] = STATE(1806), - [sym__teleport] = STATE(1806), - [sym__volt] = STATE(1806), - [sym_text] = STATE(91), - [sym__text] = STATE(676), - [aux_sym__if_statement_directive_body_repeat1] = STATE(91), - [aux_sym_php_only_repeat1] = STATE(676), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1199), - [aux_sym_keyword_token1] = ACTIONS(1202), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1208), - [anon_sym_ATphp] = ACTIONS(1211), - [aux_sym_attribute_token1] = ACTIONS(1214), - [aux_sym__inline_directive_token1] = ACTIONS(1217), - [anon_sym_ATfragment] = ACTIONS(1220), - [anon_sym_ATsection] = ACTIONS(1223), - [anon_sym_ATonce] = ACTIONS(1226), - [anon_sym_ATverbatim] = ACTIONS(1229), - [anon_sym_ATpush] = ACTIONS(1232), - [anon_sym_ATpushOnce] = ACTIONS(1235), - [anon_sym_ATpushIf] = ACTIONS(1238), - [anon_sym_ATprepend] = ACTIONS(1241), - [anon_sym_ATprependOnce] = ACTIONS(1244), - [anon_sym_ATelse] = ACTIONS(1247), - [aux_sym_conditional_keyword_token1] = ACTIONS(1250), - [anon_sym_ATif] = ACTIONS(1253), - [anon_sym_ATunless] = ACTIONS(1256), - [anon_sym_ATisset] = ACTIONS(1259), - [anon_sym_ATempty] = ACTIONS(1262), - [anon_sym_ATauth] = ACTIONS(1265), - [anon_sym_ATguest] = ACTIONS(1268), - [anon_sym_ATproduction] = ACTIONS(1271), - [anon_sym_ATenv] = ACTIONS(1274), - [anon_sym_AThasSection] = ACTIONS(1277), - [anon_sym_ATsectionMissing] = ACTIONS(1280), - [anon_sym_ATerror] = ACTIONS(1283), - [anon_sym_ATcan] = ACTIONS(1286), - [anon_sym_ATendcan] = ACTIONS(518), - [anon_sym_ATcannot] = ACTIONS(1289), - [anon_sym_ATcanany] = ACTIONS(1292), - [anon_sym_ATfeature] = ACTIONS(1295), - [aux_sym__custom_token1] = ACTIONS(1298), - [aux_sym__custom_token2] = ACTIONS(1301), - [anon_sym_ATswitch] = ACTIONS(1304), - [aux_sym_loop_operator_token1] = ACTIONS(1307), - [anon_sym_ATfor] = ACTIONS(1310), - [anon_sym_ATforeach] = ACTIONS(1313), - [anon_sym_ATforelse] = ACTIONS(1316), - [anon_sym_ATwhile] = ACTIONS(1319), - [anon_sym_ATsetup] = ACTIONS(1322), - [anon_sym_ATtask] = ACTIONS(1325), - [anon_sym_ATstory] = ACTIONS(1328), - [anon_sym_ATbefore] = ACTIONS(1331), - [anon_sym_ATafter] = ACTIONS(1334), - [anon_sym_ATsuccess] = ACTIONS(1337), - [anon_sym_ATfinished] = ACTIONS(1340), - [anon_sym_ATpersist] = ACTIONS(1343), - [anon_sym_ATteleport] = ACTIONS(1346), - [anon_sym_ATvolt] = ACTIONS(1349), - [aux_sym__text_token1] = ACTIONS(1352), - [aux_sym__text_token2] = ACTIONS(1352), - [aux_sym__text_token3] = ACTIONS(1355), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1360), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [92] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1358), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1362), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [93] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1360), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1364), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [94] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1366), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [95] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1368), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [96] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1370), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [97] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1372), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [98] = { + [sym__definition] = STATE(103), + [sym_keyword] = STATE(103), + [sym_php_statement] = STATE(103), + [sym__escaped] = STATE(1428), + [sym__unescaped] = STATE(1428), + [sym__raw] = STATE(1428), + [sym__inline_raw] = STATE(1428), + [sym__multi_line_raw] = STATE(1428), + [sym_attribute] = STATE(103), + [sym__inline_directive] = STATE(103), + [sym__nested_directive] = STATE(103), + [sym_fragment] = STATE(103), + [sym_section] = STATE(103), + [sym_inlineSection] = STATE(103), + [sym_once] = STATE(103), + [sym_verbatim] = STATE(103), + [sym_stack] = STATE(103), + [sym__push] = STATE(1429), + [sym__pushOnce] = STATE(1429), + [sym__pushIf] = STATE(1429), + [sym__prepend] = STATE(1429), + [sym__prependOnce] = STATE(1429), + [sym_conditional] = STATE(103), + [sym_conditional_keyword] = STATE(103), + [sym__if] = STATE(1430), + [sym__unless] = STATE(1430), + [sym__isset] = STATE(1430), + [sym__empty] = STATE(1430), + [sym__auth] = STATE(1430), + [sym__guest] = STATE(1430), + [sym__production] = STATE(1430), + [sym__env] = STATE(1430), + [sym__hasSection] = STATE(1430), + [sym__sectionMissing] = STATE(1430), + [sym__error] = STATE(1430), + [sym_authorization] = STATE(1430), + [sym__can] = STATE(1431), + [sym__cannot] = STATE(1431), + [sym__canany] = STATE(1431), + [sym__feature] = STATE(1430), + [sym__custom] = STATE(1430), + [sym_switch] = STATE(103), + [sym_loop] = STATE(103), + [sym_loop_operator] = STATE(103), + [sym__for] = STATE(1432), + [sym__foreach] = STATE(1432), + [sym__forelse] = STATE(1432), + [sym__while] = STATE(1432), + [sym_envoy] = STATE(103), + [sym__setup] = STATE(1428), + [sym__task] = STATE(1433), + [sym__story] = STATE(1433), + [sym__hooks] = STATE(1428), + [sym__before] = STATE(1428), + [sym__after] = STATE(1428), + [sym__envoy_error] = STATE(1428), + [sym__success] = STATE(1428), + [sym__finished] = STATE(1428), + [sym_livewire] = STATE(103), + [sym__persist] = STATE(1434), + [sym__teleport] = STATE(1434), + [sym__volt] = STATE(1434), + [sym_text] = STATE(103), + [sym__text] = STATE(681), + [aux_sym__if_statement_directive_body_repeat1] = STATE(103), + [aux_sym_php_only_repeat1] = STATE(681), + [sym_comment] = ACTIONS(1374), + [aux_sym_keyword_token1] = ACTIONS(1376), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1378), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1380), + [anon_sym_ATphp] = ACTIONS(1382), + [aux_sym_attribute_token1] = ACTIONS(1384), + [aux_sym__inline_directive_token1] = ACTIONS(1386), + [anon_sym_ATfragment] = ACTIONS(1388), + [anon_sym_ATsection] = ACTIONS(1390), + [anon_sym_ATonce] = ACTIONS(1392), + [anon_sym_ATverbatim] = ACTIONS(1394), + [anon_sym_ATpush] = ACTIONS(1396), + [anon_sym_ATpushOnce] = ACTIONS(1398), + [anon_sym_ATpushIf] = ACTIONS(1400), + [anon_sym_ATprepend] = ACTIONS(1402), + [anon_sym_ATprependOnce] = ACTIONS(1404), + [anon_sym_ATelse] = ACTIONS(1406), + [aux_sym_conditional_keyword_token1] = ACTIONS(1408), + [anon_sym_ATif] = ACTIONS(1410), + [anon_sym_ATunless] = ACTIONS(1412), + [anon_sym_ATisset] = ACTIONS(1414), + [anon_sym_ATendisset] = ACTIONS(706), + [anon_sym_ATempty] = ACTIONS(1416), + [anon_sym_ATauth] = ACTIONS(1418), + [anon_sym_ATguest] = ACTIONS(1420), + [anon_sym_ATproduction] = ACTIONS(1422), + [anon_sym_ATenv] = ACTIONS(1424), + [anon_sym_AThasSection] = ACTIONS(1426), + [anon_sym_ATsectionMissing] = ACTIONS(1428), + [anon_sym_ATerror] = ACTIONS(1430), + [anon_sym_ATcan] = ACTIONS(1432), + [anon_sym_ATcannot] = ACTIONS(1434), + [anon_sym_ATcanany] = ACTIONS(1436), + [anon_sym_ATfeature] = ACTIONS(1438), + [aux_sym__custom_token1] = ACTIONS(1440), + [aux_sym__custom_token2] = ACTIONS(1442), + [anon_sym_ATswitch] = ACTIONS(1444), + [aux_sym_loop_operator_token1] = ACTIONS(1446), + [anon_sym_ATfor] = ACTIONS(1448), + [anon_sym_ATforeach] = ACTIONS(1450), + [anon_sym_ATforelse] = ACTIONS(1452), + [anon_sym_ATwhile] = ACTIONS(1454), + [anon_sym_ATsetup] = ACTIONS(1456), + [anon_sym_ATtask] = ACTIONS(1458), + [anon_sym_ATstory] = ACTIONS(1460), + [anon_sym_ATbefore] = ACTIONS(1462), + [anon_sym_ATafter] = ACTIONS(1464), + [anon_sym_ATsuccess] = ACTIONS(1466), + [anon_sym_ATfinished] = ACTIONS(1468), + [anon_sym_ATpersist] = ACTIONS(1470), + [anon_sym_ATteleport] = ACTIONS(1472), + [anon_sym_ATvolt] = ACTIONS(1474), + [aux_sym__text_token1] = ACTIONS(1476), + [aux_sym__text_token2] = ACTIONS(1476), + [aux_sym__text_token3] = ACTIONS(1478), + }, + [99] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1480), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [100] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1482), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [101] = { [sym__definition] = STATE(101), - [sym_comment] = STATE(101), [sym_keyword] = STATE(101), [sym_php_statement] = STATE(101), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), + [sym__escaped] = STATE(1598), + [sym__unescaped] = STATE(1598), + [sym__raw] = STATE(1598), + [sym__inline_raw] = STATE(1598), + [sym__multi_line_raw] = STATE(1598), [sym_attribute] = STATE(101), [sym__inline_directive] = STATE(101), [sym__nested_directive] = STATE(101), @@ -37624,56 +37890,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(101), [sym_verbatim] = STATE(101), [sym_stack] = STATE(101), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), + [sym__push] = STATE(1599), + [sym__pushOnce] = STATE(1599), + [sym__pushIf] = STATE(1599), + [sym__prepend] = STATE(1599), + [sym__prependOnce] = STATE(1599), [sym_conditional] = STATE(101), [sym_conditional_keyword] = STATE(101), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), + [sym__if] = STATE(1600), + [sym__unless] = STATE(1600), + [sym__isset] = STATE(1600), + [sym__empty] = STATE(1600), + [sym__auth] = STATE(1600), + [sym__guest] = STATE(1600), + [sym__production] = STATE(1600), + [sym__env] = STATE(1600), + [sym__hasSection] = STATE(1600), + [sym__sectionMissing] = STATE(1600), + [sym__error] = STATE(1600), + [sym_authorization] = STATE(1600), + [sym__can] = STATE(1601), + [sym__cannot] = STATE(1601), + [sym__canany] = STATE(1601), + [sym__feature] = STATE(1600), + [sym__custom] = STATE(1600), [sym_switch] = STATE(101), [sym_loop] = STATE(101), [sym_loop_operator] = STATE(101), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), + [sym__for] = STATE(1602), + [sym__foreach] = STATE(1602), + [sym__forelse] = STATE(1602), + [sym__while] = STATE(1602), [sym_envoy] = STATE(101), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), + [sym__setup] = STATE(1598), + [sym__task] = STATE(1603), + [sym__story] = STATE(1603), + [sym__hooks] = STATE(1598), + [sym__before] = STATE(1598), + [sym__after] = STATE(1598), + [sym__envoy_error] = STATE(1598), + [sym__success] = STATE(1598), + [sym__finished] = STATE(1598), [sym_livewire] = STATE(101), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), + [sym__persist] = STATE(1604), + [sym__teleport] = STATE(1604), + [sym__volt] = STATE(1604), [sym_text] = STATE(101), - [sym__text] = STATE(716), + [sym__text] = STATE(674), [aux_sym__if_statement_directive_body_repeat1] = STATE(101), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [aux_sym_php_only_repeat1] = STATE(674), + [sym_comment] = ACTIONS(1484), + [aux_sym_keyword_token1] = ACTIONS(1487), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1490), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1493), + [anon_sym_ATphp] = ACTIONS(1496), + [aux_sym_attribute_token1] = ACTIONS(1499), + [aux_sym__inline_directive_token1] = ACTIONS(1502), + [anon_sym_ATfragment] = ACTIONS(1505), + [anon_sym_ATsection] = ACTIONS(1508), + [anon_sym_ATonce] = ACTIONS(1511), + [anon_sym_ATverbatim] = ACTIONS(1514), + [anon_sym_ATpush] = ACTIONS(1517), + [anon_sym_ATpushOnce] = ACTIONS(1520), + [anon_sym_ATpushIf] = ACTIONS(1523), + [anon_sym_ATprepend] = ACTIONS(1526), + [anon_sym_ATprependOnce] = ACTIONS(1529), + [anon_sym_ATelse] = ACTIONS(1532), + [aux_sym_conditional_keyword_token1] = ACTIONS(1535), + [anon_sym_ATif] = ACTIONS(1538), + [anon_sym_ATunless] = ACTIONS(1541), + [anon_sym_ATisset] = ACTIONS(1544), + [anon_sym_ATempty] = ACTIONS(1547), + [anon_sym_ATauth] = ACTIONS(1550), + [anon_sym_ATguest] = ACTIONS(1553), + [anon_sym_ATproduction] = ACTIONS(1556), + [anon_sym_ATenv] = ACTIONS(1559), + [anon_sym_ATendenv] = ACTIONS(633), + [anon_sym_AThasSection] = ACTIONS(1562), + [anon_sym_ATsectionMissing] = ACTIONS(1565), + [anon_sym_ATerror] = ACTIONS(1568), + [anon_sym_ATcan] = ACTIONS(1571), + [anon_sym_ATcannot] = ACTIONS(1574), + [anon_sym_ATcanany] = ACTIONS(1577), + [anon_sym_ATfeature] = ACTIONS(1580), + [aux_sym__custom_token1] = ACTIONS(1583), + [aux_sym__custom_token2] = ACTIONS(1586), + [anon_sym_ATswitch] = ACTIONS(1589), + [aux_sym_loop_operator_token1] = ACTIONS(1592), + [anon_sym_ATfor] = ACTIONS(1595), + [anon_sym_ATforeach] = ACTIONS(1598), + [anon_sym_ATforelse] = ACTIONS(1601), + [anon_sym_ATwhile] = ACTIONS(1604), + [anon_sym_ATsetup] = ACTIONS(1607), + [anon_sym_ATtask] = ACTIONS(1610), + [anon_sym_ATstory] = ACTIONS(1613), + [anon_sym_ATbefore] = ACTIONS(1616), + [anon_sym_ATafter] = ACTIONS(1619), + [anon_sym_ATsuccess] = ACTIONS(1622), + [anon_sym_ATfinished] = ACTIONS(1625), + [anon_sym_ATpersist] = ACTIONS(1628), + [anon_sym_ATteleport] = ACTIONS(1631), + [anon_sym_ATvolt] = ACTIONS(1634), + [aux_sym__text_token1] = ACTIONS(1637), + [aux_sym__text_token2] = ACTIONS(1637), + [aux_sym__text_token3] = ACTIONS(1640), + }, + [102] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(1643), + [aux_sym_keyword_token1] = ACTIONS(1646), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1649), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1652), + [anon_sym_ATphp] = ACTIONS(1655), + [aux_sym_attribute_token1] = ACTIONS(1658), + [aux_sym__inline_directive_token1] = ACTIONS(1661), + [anon_sym_ATfragment] = ACTIONS(1664), + [anon_sym_ATsection] = ACTIONS(1667), + [anon_sym_ATonce] = ACTIONS(1670), + [anon_sym_ATverbatim] = ACTIONS(1673), + [anon_sym_ATpush] = ACTIONS(1676), + [anon_sym_ATpushOnce] = ACTIONS(1679), + [anon_sym_ATpushIf] = ACTIONS(1682), + [anon_sym_ATprepend] = ACTIONS(1685), + [anon_sym_ATprependOnce] = ACTIONS(1688), + [anon_sym_ATelse] = ACTIONS(1691), + [aux_sym_conditional_keyword_token1] = ACTIONS(1694), + [anon_sym_ATif] = ACTIONS(1697), + [anon_sym_ATunless] = ACTIONS(1700), + [anon_sym_ATisset] = ACTIONS(1703), + [anon_sym_ATempty] = ACTIONS(1706), + [anon_sym_ATauth] = ACTIONS(1709), + [anon_sym_ATguest] = ACTIONS(1712), + [anon_sym_ATproduction] = ACTIONS(1715), + [anon_sym_ATendproduction] = ACTIONS(1718), + [anon_sym_ATenv] = ACTIONS(1720), + [anon_sym_AThasSection] = ACTIONS(1723), + [anon_sym_ATsectionMissing] = ACTIONS(1726), + [anon_sym_ATerror] = ACTIONS(1729), + [anon_sym_ATcan] = ACTIONS(1732), + [anon_sym_ATcannot] = ACTIONS(1735), + [anon_sym_ATcanany] = ACTIONS(1738), + [anon_sym_ATfeature] = ACTIONS(1741), + [aux_sym__custom_token1] = ACTIONS(1744), + [aux_sym__custom_token2] = ACTIONS(1747), + [anon_sym_ATswitch] = ACTIONS(1750), + [aux_sym_loop_operator_token1] = ACTIONS(1753), + [anon_sym_ATfor] = ACTIONS(1756), + [anon_sym_ATforeach] = ACTIONS(1759), + [anon_sym_ATforelse] = ACTIONS(1762), + [anon_sym_ATwhile] = ACTIONS(1765), + [anon_sym_ATsetup] = ACTIONS(1768), + [anon_sym_ATtask] = ACTIONS(1771), + [anon_sym_ATstory] = ACTIONS(1774), + [anon_sym_ATbefore] = ACTIONS(1777), + [anon_sym_ATafter] = ACTIONS(1780), + [anon_sym_ATsuccess] = ACTIONS(1783), + [anon_sym_ATfinished] = ACTIONS(1786), + [anon_sym_ATpersist] = ACTIONS(1789), + [anon_sym_ATteleport] = ACTIONS(1792), + [anon_sym_ATvolt] = ACTIONS(1795), + [aux_sym__text_token1] = ACTIONS(1798), + [aux_sym__text_token2] = ACTIONS(1798), + [aux_sym__text_token3] = ACTIONS(1801), + }, + [103] = { + [sym__definition] = STATE(136), + [sym_keyword] = STATE(136), + [sym_php_statement] = STATE(136), + [sym__escaped] = STATE(1428), + [sym__unescaped] = STATE(1428), + [sym__raw] = STATE(1428), + [sym__inline_raw] = STATE(1428), + [sym__multi_line_raw] = STATE(1428), + [sym_attribute] = STATE(136), + [sym__inline_directive] = STATE(136), + [sym__nested_directive] = STATE(136), + [sym_fragment] = STATE(136), + [sym_section] = STATE(136), + [sym_inlineSection] = STATE(136), + [sym_once] = STATE(136), + [sym_verbatim] = STATE(136), + [sym_stack] = STATE(136), + [sym__push] = STATE(1429), + [sym__pushOnce] = STATE(1429), + [sym__pushIf] = STATE(1429), + [sym__prepend] = STATE(1429), + [sym__prependOnce] = STATE(1429), + [sym_conditional] = STATE(136), + [sym_conditional_keyword] = STATE(136), + [sym__if] = STATE(1430), + [sym__unless] = STATE(1430), + [sym__isset] = STATE(1430), + [sym__empty] = STATE(1430), + [sym__auth] = STATE(1430), + [sym__guest] = STATE(1430), + [sym__production] = STATE(1430), + [sym__env] = STATE(1430), + [sym__hasSection] = STATE(1430), + [sym__sectionMissing] = STATE(1430), + [sym__error] = STATE(1430), + [sym_authorization] = STATE(1430), + [sym__can] = STATE(1431), + [sym__cannot] = STATE(1431), + [sym__canany] = STATE(1431), + [sym__feature] = STATE(1430), + [sym__custom] = STATE(1430), + [sym_switch] = STATE(136), + [sym_loop] = STATE(136), + [sym_loop_operator] = STATE(136), + [sym__for] = STATE(1432), + [sym__foreach] = STATE(1432), + [sym__forelse] = STATE(1432), + [sym__while] = STATE(1432), + [sym_envoy] = STATE(136), + [sym__setup] = STATE(1428), + [sym__task] = STATE(1433), + [sym__story] = STATE(1433), + [sym__hooks] = STATE(1428), + [sym__before] = STATE(1428), + [sym__after] = STATE(1428), + [sym__envoy_error] = STATE(1428), + [sym__success] = STATE(1428), + [sym__finished] = STATE(1428), + [sym_livewire] = STATE(136), + [sym__persist] = STATE(1434), + [sym__teleport] = STATE(1434), + [sym__volt] = STATE(1434), + [sym_text] = STATE(136), + [sym__text] = STATE(681), + [aux_sym__if_statement_directive_body_repeat1] = STATE(136), + [aux_sym_php_only_repeat1] = STATE(681), + [sym_comment] = ACTIONS(1804), + [aux_sym_keyword_token1] = ACTIONS(1376), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1378), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1380), + [anon_sym_ATphp] = ACTIONS(1382), + [aux_sym_attribute_token1] = ACTIONS(1384), + [aux_sym__inline_directive_token1] = ACTIONS(1386), + [anon_sym_ATfragment] = ACTIONS(1388), + [anon_sym_ATsection] = ACTIONS(1390), + [anon_sym_ATonce] = ACTIONS(1392), + [anon_sym_ATverbatim] = ACTIONS(1394), + [anon_sym_ATpush] = ACTIONS(1396), + [anon_sym_ATpushOnce] = ACTIONS(1398), + [anon_sym_ATpushIf] = ACTIONS(1400), + [anon_sym_ATprepend] = ACTIONS(1402), + [anon_sym_ATprependOnce] = ACTIONS(1404), + [anon_sym_ATelse] = ACTIONS(1406), + [aux_sym_conditional_keyword_token1] = ACTIONS(1408), + [anon_sym_ATif] = ACTIONS(1410), + [anon_sym_ATunless] = ACTIONS(1412), + [anon_sym_ATisset] = ACTIONS(1414), + [anon_sym_ATendisset] = ACTIONS(497), + [anon_sym_ATempty] = ACTIONS(1416), + [anon_sym_ATauth] = ACTIONS(1418), + [anon_sym_ATguest] = ACTIONS(1420), + [anon_sym_ATproduction] = ACTIONS(1422), + [anon_sym_ATenv] = ACTIONS(1424), + [anon_sym_AThasSection] = ACTIONS(1426), + [anon_sym_ATsectionMissing] = ACTIONS(1428), + [anon_sym_ATerror] = ACTIONS(1430), + [anon_sym_ATcan] = ACTIONS(1432), + [anon_sym_ATcannot] = ACTIONS(1434), + [anon_sym_ATcanany] = ACTIONS(1436), + [anon_sym_ATfeature] = ACTIONS(1438), + [aux_sym__custom_token1] = ACTIONS(1440), + [aux_sym__custom_token2] = ACTIONS(1442), + [anon_sym_ATswitch] = ACTIONS(1444), + [aux_sym_loop_operator_token1] = ACTIONS(1446), + [anon_sym_ATfor] = ACTIONS(1448), + [anon_sym_ATforeach] = ACTIONS(1450), + [anon_sym_ATforelse] = ACTIONS(1452), + [anon_sym_ATwhile] = ACTIONS(1454), + [anon_sym_ATsetup] = ACTIONS(1456), + [anon_sym_ATtask] = ACTIONS(1458), + [anon_sym_ATstory] = ACTIONS(1460), + [anon_sym_ATbefore] = ACTIONS(1462), + [anon_sym_ATafter] = ACTIONS(1464), + [anon_sym_ATsuccess] = ACTIONS(1466), + [anon_sym_ATfinished] = ACTIONS(1468), + [anon_sym_ATpersist] = ACTIONS(1470), + [anon_sym_ATteleport] = ACTIONS(1472), + [anon_sym_ATvolt] = ACTIONS(1474), + [aux_sym__text_token1] = ACTIONS(1476), + [aux_sym__text_token2] = ACTIONS(1476), + [aux_sym__text_token3] = ACTIONS(1478), + }, + [104] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(1806), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [105] = { + [sym__definition] = STATE(105), + [sym_keyword] = STATE(105), + [sym_php_statement] = STATE(105), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(105), + [sym__inline_directive] = STATE(105), + [sym__nested_directive] = STATE(105), + [sym_fragment] = STATE(105), + [sym_section] = STATE(105), + [sym_inlineSection] = STATE(105), + [sym_once] = STATE(105), + [sym_verbatim] = STATE(105), + [sym_stack] = STATE(105), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(105), + [sym_conditional_keyword] = STATE(105), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(105), + [sym_loop] = STATE(105), + [sym_loop_operator] = STATE(105), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(105), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(105), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym_text] = STATE(105), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(105), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(1808), + [aux_sym_keyword_token1] = ACTIONS(1811), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1814), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1817), + [anon_sym_ATphp] = ACTIONS(1820), + [aux_sym_attribute_token1] = ACTIONS(1823), + [aux_sym__inline_directive_token1] = ACTIONS(1826), + [anon_sym_ATfragment] = ACTIONS(1829), + [anon_sym_ATsection] = ACTIONS(1832), + [anon_sym_ATonce] = ACTIONS(1835), + [anon_sym_ATverbatim] = ACTIONS(1838), + [anon_sym_ATpush] = ACTIONS(1841), + [anon_sym_ATpushOnce] = ACTIONS(1844), + [anon_sym_ATpushIf] = ACTIONS(1847), + [anon_sym_ATprepend] = ACTIONS(1850), + [anon_sym_ATprependOnce] = ACTIONS(1853), + [anon_sym_ATelse] = ACTIONS(1856), + [aux_sym_conditional_keyword_token1] = ACTIONS(1859), + [anon_sym_ATif] = ACTIONS(1862), + [anon_sym_ATunless] = ACTIONS(1865), + [anon_sym_ATisset] = ACTIONS(1868), + [anon_sym_ATempty] = ACTIONS(1871), + [anon_sym_ATauth] = ACTIONS(1874), + [anon_sym_ATendauth] = ACTIONS(633), + [anon_sym_ATguest] = ACTIONS(1877), + [anon_sym_ATproduction] = ACTIONS(1880), + [anon_sym_ATenv] = ACTIONS(1883), + [anon_sym_AThasSection] = ACTIONS(1886), + [anon_sym_ATsectionMissing] = ACTIONS(1889), + [anon_sym_ATerror] = ACTIONS(1892), + [anon_sym_ATcan] = ACTIONS(1895), + [anon_sym_ATcannot] = ACTIONS(1898), + [anon_sym_ATcanany] = ACTIONS(1901), + [anon_sym_ATfeature] = ACTIONS(1904), + [aux_sym__custom_token1] = ACTIONS(1907), + [aux_sym__custom_token2] = ACTIONS(1910), + [anon_sym_ATswitch] = ACTIONS(1913), + [aux_sym_loop_operator_token1] = ACTIONS(1916), + [anon_sym_ATfor] = ACTIONS(1919), + [anon_sym_ATforeach] = ACTIONS(1922), + [anon_sym_ATforelse] = ACTIONS(1925), + [anon_sym_ATwhile] = ACTIONS(1928), + [anon_sym_ATsetup] = ACTIONS(1931), + [anon_sym_ATtask] = ACTIONS(1934), + [anon_sym_ATstory] = ACTIONS(1937), + [anon_sym_ATbefore] = ACTIONS(1940), + [anon_sym_ATafter] = ACTIONS(1943), + [anon_sym_ATsuccess] = ACTIONS(1946), + [anon_sym_ATfinished] = ACTIONS(1949), + [anon_sym_ATpersist] = ACTIONS(1952), + [anon_sym_ATteleport] = ACTIONS(1955), + [anon_sym_ATvolt] = ACTIONS(1958), + [aux_sym__text_token1] = ACTIONS(1961), + [aux_sym__text_token2] = ACTIONS(1961), + [aux_sym__text_token3] = ACTIONS(1964), + }, + [106] = { + [sym__definition] = STATE(105), + [sym_keyword] = STATE(105), + [sym_php_statement] = STATE(105), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), + [sym_attribute] = STATE(105), + [sym__inline_directive] = STATE(105), + [sym__nested_directive] = STATE(105), + [sym_fragment] = STATE(105), + [sym_section] = STATE(105), + [sym_inlineSection] = STATE(105), + [sym_once] = STATE(105), + [sym_verbatim] = STATE(105), + [sym_stack] = STATE(105), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), + [sym_conditional] = STATE(105), + [sym_conditional_keyword] = STATE(105), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), + [sym_switch] = STATE(105), + [sym_loop] = STATE(105), + [sym_loop_operator] = STATE(105), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), + [sym_envoy] = STATE(105), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), + [sym_livewire] = STATE(105), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), + [sym_text] = STATE(105), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(105), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(321), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -37696,7 +38577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATisset] = ACTIONS(255), [anon_sym_ATempty] = ACTIONS(257), [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATendauth] = ACTIONS(712), + [anon_sym_ATendauth] = ACTIONS(1199), [anon_sym_ATguest] = ACTIONS(261), [anon_sym_ATproduction] = ACTIONS(263), [anon_sym_ATenv] = ACTIONS(265), @@ -37729,636 +38610,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(317), [aux_sym__text_token3] = ACTIONS(319), }, - [95] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1362), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [96] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1364), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [97] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1366), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [98] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1368), - [aux_sym_keyword_token1] = ACTIONS(1371), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1374), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1377), - [anon_sym_ATphp] = ACTIONS(1380), - [aux_sym_attribute_token1] = ACTIONS(1383), - [aux_sym__inline_directive_token1] = ACTIONS(1386), - [anon_sym_ATfragment] = ACTIONS(1389), - [anon_sym_ATsection] = ACTIONS(1392), - [anon_sym_ATonce] = ACTIONS(1395), - [anon_sym_ATverbatim] = ACTIONS(1398), - [anon_sym_ATpush] = ACTIONS(1401), - [anon_sym_ATpushOnce] = ACTIONS(1404), - [anon_sym_ATpushIf] = ACTIONS(1407), - [anon_sym_ATprepend] = ACTIONS(1410), - [anon_sym_ATprependOnce] = ACTIONS(1413), - [anon_sym_ATelse] = ACTIONS(1416), - [aux_sym_conditional_keyword_token1] = ACTIONS(1419), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATunless] = ACTIONS(1425), - [anon_sym_ATisset] = ACTIONS(1428), - [anon_sym_ATempty] = ACTIONS(1431), - [anon_sym_ATauth] = ACTIONS(1434), - [anon_sym_ATguest] = ACTIONS(1437), - [anon_sym_ATproduction] = ACTIONS(1440), - [anon_sym_ATendproduction] = ACTIONS(1443), - [anon_sym_ATenv] = ACTIONS(1445), - [anon_sym_AThasSection] = ACTIONS(1448), - [anon_sym_ATsectionMissing] = ACTIONS(1451), - [anon_sym_ATerror] = ACTIONS(1454), - [anon_sym_ATcan] = ACTIONS(1457), - [anon_sym_ATcannot] = ACTIONS(1460), - [anon_sym_ATcanany] = ACTIONS(1463), - [anon_sym_ATfeature] = ACTIONS(1466), - [aux_sym__custom_token1] = ACTIONS(1469), - [aux_sym__custom_token2] = ACTIONS(1472), - [anon_sym_ATswitch] = ACTIONS(1475), - [aux_sym_loop_operator_token1] = ACTIONS(1478), - [anon_sym_ATfor] = ACTIONS(1481), - [anon_sym_ATforeach] = ACTIONS(1484), - [anon_sym_ATforelse] = ACTIONS(1487), - [anon_sym_ATwhile] = ACTIONS(1490), - [anon_sym_ATsetup] = ACTIONS(1493), - [anon_sym_ATtask] = ACTIONS(1496), - [anon_sym_ATstory] = ACTIONS(1499), - [anon_sym_ATbefore] = ACTIONS(1502), - [anon_sym_ATafter] = ACTIONS(1505), - [anon_sym_ATsuccess] = ACTIONS(1508), - [anon_sym_ATfinished] = ACTIONS(1511), - [anon_sym_ATpersist] = ACTIONS(1514), - [anon_sym_ATteleport] = ACTIONS(1517), - [anon_sym_ATvolt] = ACTIONS(1520), - [aux_sym__text_token1] = ACTIONS(1523), - [aux_sym__text_token2] = ACTIONS(1523), - [aux_sym__text_token3] = ACTIONS(1526), - }, - [99] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1529), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [100] = { + [107] = { [sym__definition] = STATE(107), - [sym_comment] = STATE(107), [sym_keyword] = STATE(107), [sym_php_statement] = STATE(107), - [sym__escaped] = STATE(1456), - [sym__unescaped] = STATE(1456), - [sym__raw] = STATE(1456), - [sym__inline_raw] = STATE(1456), - [sym__multi_line_raw] = STATE(1456), + [sym__escaped] = STATE(1251), + [sym__unescaped] = STATE(1251), + [sym__raw] = STATE(1251), + [sym__inline_raw] = STATE(1251), + [sym__multi_line_raw] = STATE(1251), [sym_attribute] = STATE(107), [sym__inline_directive] = STATE(107), [sym__nested_directive] = STATE(107), @@ -38368,2105 +38628,1473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(107), [sym_verbatim] = STATE(107), [sym_stack] = STATE(107), - [sym__push] = STATE(1457), - [sym__pushOnce] = STATE(1457), - [sym__pushIf] = STATE(1457), - [sym__prepend] = STATE(1457), - [sym__prependOnce] = STATE(1457), + [sym__push] = STATE(1252), + [sym__pushOnce] = STATE(1252), + [sym__pushIf] = STATE(1252), + [sym__prepend] = STATE(1252), + [sym__prependOnce] = STATE(1252), [sym_conditional] = STATE(107), [sym_conditional_keyword] = STATE(107), - [sym__if] = STATE(1458), - [sym__unless] = STATE(1458), - [sym__isset] = STATE(1458), - [sym__empty] = STATE(1458), - [sym__auth] = STATE(1458), - [sym__guest] = STATE(1458), - [sym__production] = STATE(1458), - [sym__env] = STATE(1458), - [sym__hasSection] = STATE(1458), - [sym__sectionMissing] = STATE(1458), - [sym__error] = STATE(1458), - [sym_authorization] = STATE(1458), - [sym__can] = STATE(1459), - [sym__cannot] = STATE(1459), - [sym__canany] = STATE(1459), - [sym__feature] = STATE(1458), - [sym__custom] = STATE(1458), + [sym__if] = STATE(1253), + [sym__unless] = STATE(1253), + [sym__isset] = STATE(1253), + [sym__empty] = STATE(1253), + [sym__auth] = STATE(1253), + [sym__guest] = STATE(1253), + [sym__production] = STATE(1253), + [sym__env] = STATE(1253), + [sym__hasSection] = STATE(1253), + [sym__sectionMissing] = STATE(1253), + [sym__error] = STATE(1253), + [sym_authorization] = STATE(1253), + [sym__can] = STATE(1254), + [sym__cannot] = STATE(1254), + [sym__canany] = STATE(1254), + [sym__feature] = STATE(1253), + [sym__custom] = STATE(1253), [sym_switch] = STATE(107), [sym_loop] = STATE(107), [sym_loop_operator] = STATE(107), - [sym__for] = STATE(1460), - [sym__foreach] = STATE(1460), - [sym__forelse] = STATE(1460), - [sym__while] = STATE(1460), + [sym__for] = STATE(1255), + [sym__foreach] = STATE(1255), + [sym__forelse] = STATE(1255), + [sym__while] = STATE(1255), [sym_envoy] = STATE(107), - [sym__setup] = STATE(1456), - [sym__task] = STATE(1461), - [sym__story] = STATE(1461), - [sym__hooks] = STATE(1456), - [sym__before] = STATE(1456), - [sym__after] = STATE(1456), - [sym__envoy_error] = STATE(1456), - [sym__success] = STATE(1456), - [sym__finished] = STATE(1456), + [sym__setup] = STATE(1251), + [sym__task] = STATE(1256), + [sym__story] = STATE(1256), + [sym__hooks] = STATE(1251), + [sym__before] = STATE(1251), + [sym__after] = STATE(1251), + [sym__envoy_error] = STATE(1251), + [sym__success] = STATE(1251), + [sym__finished] = STATE(1251), [sym_livewire] = STATE(107), - [sym__persist] = STATE(1462), - [sym__teleport] = STATE(1462), - [sym__volt] = STATE(1462), + [sym__persist] = STATE(1257), + [sym__teleport] = STATE(1257), + [sym__volt] = STATE(1257), [sym_text] = STATE(107), - [sym__text] = STATE(677), + [sym__text] = STATE(692), [aux_sym__if_statement_directive_body_repeat1] = STATE(107), - [aux_sym_php_only_repeat1] = STATE(677), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1531), - [aux_sym_keyword_token1] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1537), - [anon_sym_ATphp] = ACTIONS(1539), - [aux_sym_attribute_token1] = ACTIONS(1541), - [aux_sym__inline_directive_token1] = ACTIONS(1543), - [anon_sym_ATfragment] = ACTIONS(1545), - [anon_sym_ATsection] = ACTIONS(1547), - [anon_sym_ATonce] = ACTIONS(1549), - [anon_sym_ATverbatim] = ACTIONS(1551), - [anon_sym_ATpush] = ACTIONS(1553), - [anon_sym_ATpushOnce] = ACTIONS(1555), - [anon_sym_ATpushIf] = ACTIONS(1557), - [anon_sym_ATprepend] = ACTIONS(1559), - [anon_sym_ATprependOnce] = ACTIONS(1561), - [anon_sym_ATelse] = ACTIONS(1563), - [aux_sym_conditional_keyword_token1] = ACTIONS(1565), - [anon_sym_ATif] = ACTIONS(1567), - [anon_sym_ATunless] = ACTIONS(1569), - [anon_sym_ATisset] = ACTIONS(1571), - [anon_sym_ATendisset] = ACTIONS(660), - [anon_sym_ATempty] = ACTIONS(1573), - [anon_sym_ATauth] = ACTIONS(1575), - [anon_sym_ATguest] = ACTIONS(1577), - [anon_sym_ATproduction] = ACTIONS(1579), - [anon_sym_ATenv] = ACTIONS(1581), - [anon_sym_AThasSection] = ACTIONS(1583), - [anon_sym_ATsectionMissing] = ACTIONS(1585), - [anon_sym_ATerror] = ACTIONS(1587), - [anon_sym_ATcan] = ACTIONS(1589), - [anon_sym_ATcannot] = ACTIONS(1591), - [anon_sym_ATcanany] = ACTIONS(1593), - [anon_sym_ATfeature] = ACTIONS(1595), - [aux_sym__custom_token1] = ACTIONS(1597), - [aux_sym__custom_token2] = ACTIONS(1599), - [anon_sym_ATswitch] = ACTIONS(1601), - [aux_sym_loop_operator_token1] = ACTIONS(1603), - [anon_sym_ATfor] = ACTIONS(1605), - [anon_sym_ATforeach] = ACTIONS(1607), - [anon_sym_ATforelse] = ACTIONS(1609), - [anon_sym_ATwhile] = ACTIONS(1611), - [anon_sym_ATsetup] = ACTIONS(1613), - [anon_sym_ATtask] = ACTIONS(1615), - [anon_sym_ATstory] = ACTIONS(1617), - [anon_sym_ATbefore] = ACTIONS(1619), - [anon_sym_ATafter] = ACTIONS(1621), - [anon_sym_ATsuccess] = ACTIONS(1623), - [anon_sym_ATfinished] = ACTIONS(1625), - [anon_sym_ATpersist] = ACTIONS(1627), - [anon_sym_ATteleport] = ACTIONS(1629), - [anon_sym_ATvolt] = ACTIONS(1631), - [aux_sym__text_token1] = ACTIONS(1633), - [aux_sym__text_token2] = ACTIONS(1633), - [aux_sym__text_token3] = ACTIONS(1635), - }, - [101] = { - [sym__definition] = STATE(101), - [sym_comment] = STATE(101), - [sym_keyword] = STATE(101), - [sym_php_statement] = STATE(101), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(101), - [sym__inline_directive] = STATE(101), - [sym__nested_directive] = STATE(101), - [sym_fragment] = STATE(101), - [sym_section] = STATE(101), - [sym_inlineSection] = STATE(101), - [sym_once] = STATE(101), - [sym_verbatim] = STATE(101), - [sym_stack] = STATE(101), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(101), - [sym_conditional_keyword] = STATE(101), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(101), - [sym_loop] = STATE(101), - [sym_loop_operator] = STATE(101), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(101), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(101), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(101), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(101), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1637), - [aux_sym_keyword_token1] = ACTIONS(1640), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1646), - [anon_sym_ATphp] = ACTIONS(1649), - [aux_sym_attribute_token1] = ACTIONS(1652), - [aux_sym__inline_directive_token1] = ACTIONS(1655), - [anon_sym_ATfragment] = ACTIONS(1658), - [anon_sym_ATsection] = ACTIONS(1661), - [anon_sym_ATonce] = ACTIONS(1664), - [anon_sym_ATverbatim] = ACTIONS(1667), - [anon_sym_ATpush] = ACTIONS(1670), - [anon_sym_ATpushOnce] = ACTIONS(1673), - [anon_sym_ATpushIf] = ACTIONS(1676), - [anon_sym_ATprepend] = ACTIONS(1679), - [anon_sym_ATprependOnce] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1685), - [aux_sym_conditional_keyword_token1] = ACTIONS(1688), - [anon_sym_ATif] = ACTIONS(1691), - [anon_sym_ATunless] = ACTIONS(1694), - [anon_sym_ATisset] = ACTIONS(1697), - [anon_sym_ATempty] = ACTIONS(1700), - [anon_sym_ATauth] = ACTIONS(1703), - [anon_sym_ATendauth] = ACTIONS(518), - [anon_sym_ATguest] = ACTIONS(1706), - [anon_sym_ATproduction] = ACTIONS(1709), - [anon_sym_ATenv] = ACTIONS(1712), - [anon_sym_AThasSection] = ACTIONS(1715), - [anon_sym_ATsectionMissing] = ACTIONS(1718), - [anon_sym_ATerror] = ACTIONS(1721), - [anon_sym_ATcan] = ACTIONS(1724), - [anon_sym_ATcannot] = ACTIONS(1727), - [anon_sym_ATcanany] = ACTIONS(1730), - [anon_sym_ATfeature] = ACTIONS(1733), - [aux_sym__custom_token1] = ACTIONS(1736), - [aux_sym__custom_token2] = ACTIONS(1739), - [anon_sym_ATswitch] = ACTIONS(1742), - [aux_sym_loop_operator_token1] = ACTIONS(1745), - [anon_sym_ATfor] = ACTIONS(1748), - [anon_sym_ATforeach] = ACTIONS(1751), - [anon_sym_ATforelse] = ACTIONS(1754), - [anon_sym_ATwhile] = ACTIONS(1757), - [anon_sym_ATsetup] = ACTIONS(1760), - [anon_sym_ATtask] = ACTIONS(1763), - [anon_sym_ATstory] = ACTIONS(1766), - [anon_sym_ATbefore] = ACTIONS(1769), - [anon_sym_ATafter] = ACTIONS(1772), - [anon_sym_ATsuccess] = ACTIONS(1775), - [anon_sym_ATfinished] = ACTIONS(1778), - [anon_sym_ATpersist] = ACTIONS(1781), - [anon_sym_ATteleport] = ACTIONS(1784), - [anon_sym_ATvolt] = ACTIONS(1787), - [aux_sym__text_token1] = ACTIONS(1790), - [aux_sym__text_token2] = ACTIONS(1790), - [aux_sym__text_token3] = ACTIONS(1793), - }, - [102] = { - [sym__definition] = STATE(101), - [sym_comment] = STATE(101), - [sym_keyword] = STATE(101), - [sym_php_statement] = STATE(101), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(101), - [sym__inline_directive] = STATE(101), - [sym__nested_directive] = STATE(101), - [sym_fragment] = STATE(101), - [sym_section] = STATE(101), - [sym_inlineSection] = STATE(101), - [sym_once] = STATE(101), - [sym_verbatim] = STATE(101), - [sym_stack] = STATE(101), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(101), - [sym_conditional_keyword] = STATE(101), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(101), - [sym_loop] = STATE(101), - [sym_loop_operator] = STATE(101), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(101), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(101), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(101), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(101), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), - [aux_sym_keyword_token1] = ACTIONS(217), - [anon_sym_LBRACE_LBRACE] = ACTIONS(219), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), - [anon_sym_ATphp] = ACTIONS(223), - [aux_sym_attribute_token1] = ACTIONS(225), - [aux_sym__inline_directive_token1] = ACTIONS(227), - [anon_sym_ATfragment] = ACTIONS(229), - [anon_sym_ATsection] = ACTIONS(231), - [anon_sym_ATonce] = ACTIONS(233), - [anon_sym_ATverbatim] = ACTIONS(235), - [anon_sym_ATpush] = ACTIONS(237), - [anon_sym_ATpushOnce] = ACTIONS(239), - [anon_sym_ATpushIf] = ACTIONS(241), - [anon_sym_ATprepend] = ACTIONS(243), - [anon_sym_ATprependOnce] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(247), - [aux_sym_conditional_keyword_token1] = ACTIONS(249), - [anon_sym_ATif] = ACTIONS(251), - [anon_sym_ATunless] = ACTIONS(253), - [anon_sym_ATisset] = ACTIONS(255), - [anon_sym_ATempty] = ACTIONS(257), - [anon_sym_ATauth] = ACTIONS(259), - [anon_sym_ATendauth] = ACTIONS(1038), - [anon_sym_ATguest] = ACTIONS(261), - [anon_sym_ATproduction] = ACTIONS(263), - [anon_sym_ATenv] = ACTIONS(265), - [anon_sym_AThasSection] = ACTIONS(267), - [anon_sym_ATsectionMissing] = ACTIONS(269), - [anon_sym_ATerror] = ACTIONS(271), - [anon_sym_ATcan] = ACTIONS(273), - [anon_sym_ATcannot] = ACTIONS(275), - [anon_sym_ATcanany] = ACTIONS(277), - [anon_sym_ATfeature] = ACTIONS(279), - [aux_sym__custom_token1] = ACTIONS(281), - [aux_sym__custom_token2] = ACTIONS(283), - [anon_sym_ATswitch] = ACTIONS(285), - [aux_sym_loop_operator_token1] = ACTIONS(287), - [anon_sym_ATfor] = ACTIONS(289), - [anon_sym_ATforeach] = ACTIONS(291), - [anon_sym_ATforelse] = ACTIONS(293), - [anon_sym_ATwhile] = ACTIONS(295), - [anon_sym_ATsetup] = ACTIONS(297), - [anon_sym_ATtask] = ACTIONS(299), - [anon_sym_ATstory] = ACTIONS(301), - [anon_sym_ATbefore] = ACTIONS(303), - [anon_sym_ATafter] = ACTIONS(305), - [anon_sym_ATsuccess] = ACTIONS(307), - [anon_sym_ATfinished] = ACTIONS(309), - [anon_sym_ATpersist] = ACTIONS(311), - [anon_sym_ATteleport] = ACTIONS(313), - [anon_sym_ATvolt] = ACTIONS(315), - [aux_sym__text_token1] = ACTIONS(317), - [aux_sym__text_token2] = ACTIONS(317), - [aux_sym__text_token3] = ACTIONS(319), - }, - [103] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1796), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [104] = { - [sym__definition] = STATE(91), - [sym_comment] = STATE(91), - [sym_keyword] = STATE(91), - [sym_php_statement] = STATE(91), - [sym__escaped] = STATE(1800), - [sym__unescaped] = STATE(1800), - [sym__raw] = STATE(1800), - [sym__inline_raw] = STATE(1800), - [sym__multi_line_raw] = STATE(1800), - [sym_attribute] = STATE(91), - [sym__inline_directive] = STATE(91), - [sym__nested_directive] = STATE(91), - [sym_fragment] = STATE(91), - [sym_section] = STATE(91), - [sym_inlineSection] = STATE(91), - [sym_once] = STATE(91), - [sym_verbatim] = STATE(91), - [sym_stack] = STATE(91), - [sym__push] = STATE(1801), - [sym__pushOnce] = STATE(1801), - [sym__pushIf] = STATE(1801), - [sym__prepend] = STATE(1801), - [sym__prependOnce] = STATE(1801), - [sym_conditional] = STATE(91), - [sym_conditional_keyword] = STATE(91), - [sym__if] = STATE(1802), - [sym__unless] = STATE(1802), - [sym__isset] = STATE(1802), - [sym__empty] = STATE(1802), - [sym__auth] = STATE(1802), - [sym__guest] = STATE(1802), - [sym__production] = STATE(1802), - [sym__env] = STATE(1802), - [sym__hasSection] = STATE(1802), - [sym__sectionMissing] = STATE(1802), - [sym__error] = STATE(1802), - [sym_authorization] = STATE(1802), - [sym__can] = STATE(1803), - [sym__cannot] = STATE(1803), - [sym__canany] = STATE(1803), - [sym__feature] = STATE(1802), - [sym__custom] = STATE(1802), - [sym_switch] = STATE(91), - [sym_loop] = STATE(91), - [sym_loop_operator] = STATE(91), - [sym__for] = STATE(1804), - [sym__foreach] = STATE(1804), - [sym__forelse] = STATE(1804), - [sym__while] = STATE(1804), - [sym_envoy] = STATE(91), - [sym__setup] = STATE(1800), - [sym__task] = STATE(1805), - [sym__story] = STATE(1805), - [sym__hooks] = STATE(1800), - [sym__before] = STATE(1800), - [sym__after] = STATE(1800), - [sym__envoy_error] = STATE(1800), - [sym__success] = STATE(1800), - [sym__finished] = STATE(1800), - [sym_livewire] = STATE(91), - [sym__persist] = STATE(1806), - [sym__teleport] = STATE(1806), - [sym__volt] = STATE(1806), - [sym_text] = STATE(91), - [sym__text] = STATE(676), - [aux_sym__if_statement_directive_body_repeat1] = STATE(91), - [aux_sym_php_only_repeat1] = STATE(676), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1798), - [aux_sym_keyword_token1] = ACTIONS(1800), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1802), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1804), - [anon_sym_ATphp] = ACTIONS(1806), - [aux_sym_attribute_token1] = ACTIONS(1808), - [aux_sym__inline_directive_token1] = ACTIONS(1810), - [anon_sym_ATfragment] = ACTIONS(1812), - [anon_sym_ATsection] = ACTIONS(1814), - [anon_sym_ATonce] = ACTIONS(1816), - [anon_sym_ATverbatim] = ACTIONS(1818), - [anon_sym_ATpush] = ACTIONS(1820), - [anon_sym_ATpushOnce] = ACTIONS(1822), - [anon_sym_ATpushIf] = ACTIONS(1824), - [anon_sym_ATprepend] = ACTIONS(1826), - [anon_sym_ATprependOnce] = ACTIONS(1828), - [anon_sym_ATelse] = ACTIONS(1830), - [aux_sym_conditional_keyword_token1] = ACTIONS(1832), - [anon_sym_ATif] = ACTIONS(1834), - [anon_sym_ATunless] = ACTIONS(1836), - [anon_sym_ATisset] = ACTIONS(1838), - [anon_sym_ATempty] = ACTIONS(1840), - [anon_sym_ATauth] = ACTIONS(1842), - [anon_sym_ATguest] = ACTIONS(1844), - [anon_sym_ATproduction] = ACTIONS(1846), - [anon_sym_ATenv] = ACTIONS(1848), - [anon_sym_AThasSection] = ACTIONS(1850), - [anon_sym_ATsectionMissing] = ACTIONS(1852), - [anon_sym_ATerror] = ACTIONS(1854), - [anon_sym_ATcan] = ACTIONS(1856), - [anon_sym_ATendcan] = ACTIONS(706), - [anon_sym_ATcannot] = ACTIONS(1858), - [anon_sym_ATcanany] = ACTIONS(1860), - [anon_sym_ATfeature] = ACTIONS(1862), - [aux_sym__custom_token1] = ACTIONS(1864), - [aux_sym__custom_token2] = ACTIONS(1866), - [anon_sym_ATswitch] = ACTIONS(1868), - [aux_sym_loop_operator_token1] = ACTIONS(1870), - [anon_sym_ATfor] = ACTIONS(1872), - [anon_sym_ATforeach] = ACTIONS(1874), - [anon_sym_ATforelse] = ACTIONS(1876), - [anon_sym_ATwhile] = ACTIONS(1878), - [anon_sym_ATsetup] = ACTIONS(1880), - [anon_sym_ATtask] = ACTIONS(1882), - [anon_sym_ATstory] = ACTIONS(1884), - [anon_sym_ATbefore] = ACTIONS(1886), - [anon_sym_ATafter] = ACTIONS(1888), - [anon_sym_ATsuccess] = ACTIONS(1890), - [anon_sym_ATfinished] = ACTIONS(1892), - [anon_sym_ATpersist] = ACTIONS(1894), - [anon_sym_ATteleport] = ACTIONS(1896), - [anon_sym_ATvolt] = ACTIONS(1898), - [aux_sym__text_token1] = ACTIONS(1900), - [aux_sym__text_token2] = ACTIONS(1900), - [aux_sym__text_token3] = ACTIONS(1902), - }, - [105] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1904), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [106] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(1906), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [107] = { - [sym__definition] = STATE(135), - [sym_comment] = STATE(135), - [sym_keyword] = STATE(135), - [sym_php_statement] = STATE(135), - [sym__escaped] = STATE(1456), - [sym__unescaped] = STATE(1456), - [sym__raw] = STATE(1456), - [sym__inline_raw] = STATE(1456), - [sym__multi_line_raw] = STATE(1456), - [sym_attribute] = STATE(135), - [sym__inline_directive] = STATE(135), - [sym__nested_directive] = STATE(135), - [sym_fragment] = STATE(135), - [sym_section] = STATE(135), - [sym_inlineSection] = STATE(135), - [sym_once] = STATE(135), - [sym_verbatim] = STATE(135), - [sym_stack] = STATE(135), - [sym__push] = STATE(1457), - [sym__pushOnce] = STATE(1457), - [sym__pushIf] = STATE(1457), - [sym__prepend] = STATE(1457), - [sym__prependOnce] = STATE(1457), - [sym_conditional] = STATE(135), - [sym_conditional_keyword] = STATE(135), - [sym__if] = STATE(1458), - [sym__unless] = STATE(1458), - [sym__isset] = STATE(1458), - [sym__empty] = STATE(1458), - [sym__auth] = STATE(1458), - [sym__guest] = STATE(1458), - [sym__production] = STATE(1458), - [sym__env] = STATE(1458), - [sym__hasSection] = STATE(1458), - [sym__sectionMissing] = STATE(1458), - [sym__error] = STATE(1458), - [sym_authorization] = STATE(1458), - [sym__can] = STATE(1459), - [sym__cannot] = STATE(1459), - [sym__canany] = STATE(1459), - [sym__feature] = STATE(1458), - [sym__custom] = STATE(1458), - [sym_switch] = STATE(135), - [sym_loop] = STATE(135), - [sym_loop_operator] = STATE(135), - [sym__for] = STATE(1460), - [sym__foreach] = STATE(1460), - [sym__forelse] = STATE(1460), - [sym__while] = STATE(1460), - [sym_envoy] = STATE(135), - [sym__setup] = STATE(1456), - [sym__task] = STATE(1461), - [sym__story] = STATE(1461), - [sym__hooks] = STATE(1456), - [sym__before] = STATE(1456), - [sym__after] = STATE(1456), - [sym__envoy_error] = STATE(1456), - [sym__success] = STATE(1456), - [sym__finished] = STATE(1456), - [sym_livewire] = STATE(135), - [sym__persist] = STATE(1462), - [sym__teleport] = STATE(1462), - [sym__volt] = STATE(1462), - [sym_text] = STATE(135), - [sym__text] = STATE(677), - [aux_sym__if_statement_directive_body_repeat1] = STATE(135), - [aux_sym_php_only_repeat1] = STATE(677), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1531), - [aux_sym_keyword_token1] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1537), - [anon_sym_ATphp] = ACTIONS(1539), - [aux_sym_attribute_token1] = ACTIONS(1541), - [aux_sym__inline_directive_token1] = ACTIONS(1543), - [anon_sym_ATfragment] = ACTIONS(1545), - [anon_sym_ATsection] = ACTIONS(1547), - [anon_sym_ATonce] = ACTIONS(1549), - [anon_sym_ATverbatim] = ACTIONS(1551), - [anon_sym_ATpush] = ACTIONS(1553), - [anon_sym_ATpushOnce] = ACTIONS(1555), - [anon_sym_ATpushIf] = ACTIONS(1557), - [anon_sym_ATprepend] = ACTIONS(1559), - [anon_sym_ATprependOnce] = ACTIONS(1561), - [anon_sym_ATelse] = ACTIONS(1563), - [aux_sym_conditional_keyword_token1] = ACTIONS(1565), - [anon_sym_ATif] = ACTIONS(1567), - [anon_sym_ATunless] = ACTIONS(1569), - [anon_sym_ATisset] = ACTIONS(1571), - [anon_sym_ATendisset] = ACTIONS(706), - [anon_sym_ATempty] = ACTIONS(1573), - [anon_sym_ATauth] = ACTIONS(1575), - [anon_sym_ATguest] = ACTIONS(1577), - [anon_sym_ATproduction] = ACTIONS(1579), - [anon_sym_ATenv] = ACTIONS(1581), - [anon_sym_AThasSection] = ACTIONS(1583), - [anon_sym_ATsectionMissing] = ACTIONS(1585), - [anon_sym_ATerror] = ACTIONS(1587), - [anon_sym_ATcan] = ACTIONS(1589), - [anon_sym_ATcannot] = ACTIONS(1591), - [anon_sym_ATcanany] = ACTIONS(1593), - [anon_sym_ATfeature] = ACTIONS(1595), - [aux_sym__custom_token1] = ACTIONS(1597), - [aux_sym__custom_token2] = ACTIONS(1599), - [anon_sym_ATswitch] = ACTIONS(1601), - [aux_sym_loop_operator_token1] = ACTIONS(1603), - [anon_sym_ATfor] = ACTIONS(1605), - [anon_sym_ATforeach] = ACTIONS(1607), - [anon_sym_ATforelse] = ACTIONS(1609), - [anon_sym_ATwhile] = ACTIONS(1611), - [anon_sym_ATsetup] = ACTIONS(1613), - [anon_sym_ATtask] = ACTIONS(1615), - [anon_sym_ATstory] = ACTIONS(1617), - [anon_sym_ATbefore] = ACTIONS(1619), - [anon_sym_ATafter] = ACTIONS(1621), - [anon_sym_ATsuccess] = ACTIONS(1623), - [anon_sym_ATfinished] = ACTIONS(1625), - [anon_sym_ATpersist] = ACTIONS(1627), - [anon_sym_ATteleport] = ACTIONS(1629), - [anon_sym_ATvolt] = ACTIONS(1631), - [aux_sym__text_token1] = ACTIONS(1633), - [aux_sym__text_token2] = ACTIONS(1633), - [aux_sym__text_token3] = ACTIONS(1635), + [aux_sym_php_only_repeat1] = STATE(692), + [sym_comment] = ACTIONS(1967), + [aux_sym_keyword_token1] = ACTIONS(1970), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1973), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1976), + [anon_sym_ATphp] = ACTIONS(1979), + [aux_sym_attribute_token1] = ACTIONS(1982), + [aux_sym__inline_directive_token1] = ACTIONS(1985), + [anon_sym_ATfragment] = ACTIONS(1988), + [anon_sym_ATsection] = ACTIONS(1991), + [anon_sym_ATonce] = ACTIONS(1994), + [anon_sym_ATverbatim] = ACTIONS(1997), + [anon_sym_ATpush] = ACTIONS(2000), + [anon_sym_ATpushOnce] = ACTIONS(2003), + [anon_sym_ATpushIf] = ACTIONS(2006), + [anon_sym_ATprepend] = ACTIONS(2009), + [anon_sym_ATprependOnce] = ACTIONS(2012), + [anon_sym_ATelse] = ACTIONS(2015), + [aux_sym_conditional_keyword_token1] = ACTIONS(2018), + [anon_sym_ATif] = ACTIONS(2021), + [anon_sym_ATendif] = ACTIONS(633), + [anon_sym_ATunless] = ACTIONS(2024), + [anon_sym_ATisset] = ACTIONS(2027), + [anon_sym_ATempty] = ACTIONS(2030), + [anon_sym_ATauth] = ACTIONS(2033), + [anon_sym_ATguest] = ACTIONS(2036), + [anon_sym_ATproduction] = ACTIONS(2039), + [anon_sym_ATenv] = ACTIONS(2042), + [anon_sym_AThasSection] = ACTIONS(2045), + [anon_sym_ATsectionMissing] = ACTIONS(2048), + [anon_sym_ATerror] = ACTIONS(2051), + [anon_sym_ATcan] = ACTIONS(2054), + [anon_sym_ATcannot] = ACTIONS(2057), + [anon_sym_ATcanany] = ACTIONS(2060), + [anon_sym_ATfeature] = ACTIONS(2063), + [aux_sym__custom_token1] = ACTIONS(2066), + [aux_sym__custom_token2] = ACTIONS(2069), + [anon_sym_ATswitch] = ACTIONS(2072), + [aux_sym_loop_operator_token1] = ACTIONS(2075), + [anon_sym_ATfor] = ACTIONS(2078), + [anon_sym_ATforeach] = ACTIONS(2081), + [anon_sym_ATforelse] = ACTIONS(2084), + [anon_sym_ATwhile] = ACTIONS(2087), + [anon_sym_ATsetup] = ACTIONS(2090), + [anon_sym_ATtask] = ACTIONS(2093), + [anon_sym_ATstory] = ACTIONS(2096), + [anon_sym_ATbefore] = ACTIONS(2099), + [anon_sym_ATafter] = ACTIONS(2102), + [anon_sym_ATsuccess] = ACTIONS(2105), + [anon_sym_ATfinished] = ACTIONS(2108), + [anon_sym_ATpersist] = ACTIONS(2111), + [anon_sym_ATteleport] = ACTIONS(2114), + [anon_sym_ATvolt] = ACTIONS(2117), + [aux_sym__text_token1] = ACTIONS(2120), + [aux_sym__text_token2] = ACTIONS(2120), + [aux_sym__text_token3] = ACTIONS(2123), }, [108] = { - [sym__definition] = STATE(110), - [sym_comment] = STATE(110), - [sym_keyword] = STATE(110), - [sym_php_statement] = STATE(110), - [sym__escaped] = STATE(1275), - [sym__unescaped] = STATE(1275), - [sym__raw] = STATE(1275), - [sym__inline_raw] = STATE(1275), - [sym__multi_line_raw] = STATE(1275), - [sym_attribute] = STATE(110), - [sym__inline_directive] = STATE(110), - [sym__nested_directive] = STATE(110), - [sym_fragment] = STATE(110), - [sym_section] = STATE(110), - [sym_inlineSection] = STATE(110), - [sym_once] = STATE(110), - [sym_verbatim] = STATE(110), - [sym_stack] = STATE(110), - [sym__push] = STATE(1276), - [sym__pushOnce] = STATE(1276), - [sym__pushIf] = STATE(1276), - [sym__prepend] = STATE(1276), - [sym__prependOnce] = STATE(1276), - [sym_conditional] = STATE(110), - [sym_conditional_keyword] = STATE(110), - [sym__if] = STATE(1277), - [sym__unless] = STATE(1277), - [sym__isset] = STATE(1277), - [sym__empty] = STATE(1277), - [sym__auth] = STATE(1277), - [sym__guest] = STATE(1277), - [sym__production] = STATE(1277), - [sym__env] = STATE(1277), - [sym__hasSection] = STATE(1277), - [sym__sectionMissing] = STATE(1277), - [sym__error] = STATE(1277), - [sym_authorization] = STATE(1277), - [sym__can] = STATE(1278), - [sym__cannot] = STATE(1278), - [sym__canany] = STATE(1278), - [sym__feature] = STATE(1277), - [sym__custom] = STATE(1277), - [sym_switch] = STATE(110), - [sym_loop] = STATE(110), - [sym_loop_operator] = STATE(110), - [sym__for] = STATE(1279), - [sym__foreach] = STATE(1279), - [sym__forelse] = STATE(1279), - [sym__while] = STATE(1279), - [sym_envoy] = STATE(110), - [sym__setup] = STATE(1275), - [sym__task] = STATE(1280), - [sym__story] = STATE(1280), - [sym__hooks] = STATE(1275), - [sym__before] = STATE(1275), - [sym__after] = STATE(1275), - [sym__envoy_error] = STATE(1275), - [sym__success] = STATE(1275), - [sym__finished] = STATE(1275), - [sym_livewire] = STATE(110), - [sym__persist] = STATE(1281), - [sym__teleport] = STATE(1281), - [sym__volt] = STATE(1281), - [sym_text] = STATE(110), - [sym__text] = STATE(687), - [aux_sym__if_statement_directive_body_repeat1] = STATE(110), - [aux_sym_php_only_repeat1] = STATE(687), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(824), - [aux_sym_keyword_token1] = ACTIONS(826), - [anon_sym_LBRACE_LBRACE] = ACTIONS(828), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(830), - [anon_sym_ATphp] = ACTIONS(832), - [aux_sym_attribute_token1] = ACTIONS(834), - [aux_sym__inline_directive_token1] = ACTIONS(836), - [anon_sym_ATfragment] = ACTIONS(838), - [anon_sym_ATsection] = ACTIONS(840), - [anon_sym_ATonce] = ACTIONS(842), - [anon_sym_ATverbatim] = ACTIONS(844), - [anon_sym_ATpush] = ACTIONS(846), - [anon_sym_ATpushOnce] = ACTIONS(848), - [anon_sym_ATpushIf] = ACTIONS(850), - [anon_sym_ATprepend] = ACTIONS(852), - [anon_sym_ATprependOnce] = ACTIONS(854), - [anon_sym_ATelse] = ACTIONS(856), - [aux_sym_conditional_keyword_token1] = ACTIONS(858), - [anon_sym_ATif] = ACTIONS(860), - [anon_sym_ATendif] = ACTIONS(706), - [anon_sym_ATunless] = ACTIONS(862), - [anon_sym_ATisset] = ACTIONS(864), - [anon_sym_ATempty] = ACTIONS(866), - [anon_sym_ATauth] = ACTIONS(868), - [anon_sym_ATguest] = ACTIONS(870), - [anon_sym_ATproduction] = ACTIONS(872), - [anon_sym_ATenv] = ACTIONS(874), - [anon_sym_AThasSection] = ACTIONS(876), - [anon_sym_ATsectionMissing] = ACTIONS(878), - [anon_sym_ATerror] = ACTIONS(880), - [anon_sym_ATcan] = ACTIONS(882), - [anon_sym_ATcannot] = ACTIONS(884), - [anon_sym_ATcanany] = ACTIONS(886), - [anon_sym_ATfeature] = ACTIONS(888), - [aux_sym__custom_token1] = ACTIONS(890), - [aux_sym__custom_token2] = ACTIONS(892), - [anon_sym_ATswitch] = ACTIONS(894), - [aux_sym_loop_operator_token1] = ACTIONS(896), - [anon_sym_ATfor] = ACTIONS(898), - [anon_sym_ATforeach] = ACTIONS(900), - [anon_sym_ATforelse] = ACTIONS(902), - [anon_sym_ATwhile] = ACTIONS(904), - [anon_sym_ATsetup] = ACTIONS(906), - [anon_sym_ATtask] = ACTIONS(908), - [anon_sym_ATstory] = ACTIONS(910), - [anon_sym_ATbefore] = ACTIONS(912), - [anon_sym_ATafter] = ACTIONS(914), - [anon_sym_ATsuccess] = ACTIONS(916), - [anon_sym_ATfinished] = ACTIONS(918), - [anon_sym_ATpersist] = ACTIONS(920), - [anon_sym_ATteleport] = ACTIONS(922), - [anon_sym_ATvolt] = ACTIONS(924), - [aux_sym__text_token1] = ACTIONS(926), - [aux_sym__text_token2] = ACTIONS(926), - [aux_sym__text_token3] = ACTIONS(928), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(2126), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [109] = { - [sym__definition] = STATE(104), - [sym_comment] = STATE(104), - [sym_keyword] = STATE(104), - [sym_php_statement] = STATE(104), - [sym__escaped] = STATE(1800), - [sym__unescaped] = STATE(1800), - [sym__raw] = STATE(1800), - [sym__inline_raw] = STATE(1800), - [sym__multi_line_raw] = STATE(1800), - [sym_attribute] = STATE(104), - [sym__inline_directive] = STATE(104), - [sym__nested_directive] = STATE(104), - [sym_fragment] = STATE(104), - [sym_section] = STATE(104), - [sym_inlineSection] = STATE(104), - [sym_once] = STATE(104), - [sym_verbatim] = STATE(104), - [sym_stack] = STATE(104), - [sym__push] = STATE(1801), - [sym__pushOnce] = STATE(1801), - [sym__pushIf] = STATE(1801), - [sym__prepend] = STATE(1801), - [sym__prependOnce] = STATE(1801), - [sym_conditional] = STATE(104), - [sym_conditional_keyword] = STATE(104), - [sym__if] = STATE(1802), - [sym__unless] = STATE(1802), - [sym__isset] = STATE(1802), - [sym__empty] = STATE(1802), - [sym__auth] = STATE(1802), - [sym__guest] = STATE(1802), - [sym__production] = STATE(1802), - [sym__env] = STATE(1802), - [sym__hasSection] = STATE(1802), - [sym__sectionMissing] = STATE(1802), - [sym__error] = STATE(1802), - [sym_authorization] = STATE(1802), - [sym__can] = STATE(1803), - [sym__cannot] = STATE(1803), - [sym__canany] = STATE(1803), - [sym__feature] = STATE(1802), - [sym__custom] = STATE(1802), - [sym_switch] = STATE(104), - [sym_loop] = STATE(104), - [sym_loop_operator] = STATE(104), - [sym__for] = STATE(1804), - [sym__foreach] = STATE(1804), - [sym__forelse] = STATE(1804), - [sym__while] = STATE(1804), - [sym_envoy] = STATE(104), - [sym__setup] = STATE(1800), - [sym__task] = STATE(1805), - [sym__story] = STATE(1805), - [sym__hooks] = STATE(1800), - [sym__before] = STATE(1800), - [sym__after] = STATE(1800), - [sym__envoy_error] = STATE(1800), - [sym__success] = STATE(1800), - [sym__finished] = STATE(1800), - [sym_livewire] = STATE(104), - [sym__persist] = STATE(1806), - [sym__teleport] = STATE(1806), - [sym__volt] = STATE(1806), - [sym_text] = STATE(104), - [sym__text] = STATE(676), - [aux_sym__if_statement_directive_body_repeat1] = STATE(104), - [aux_sym_php_only_repeat1] = STATE(676), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1798), - [aux_sym_keyword_token1] = ACTIONS(1800), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1802), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1804), - [anon_sym_ATphp] = ACTIONS(1806), - [aux_sym_attribute_token1] = ACTIONS(1808), - [aux_sym__inline_directive_token1] = ACTIONS(1810), - [anon_sym_ATfragment] = ACTIONS(1812), - [anon_sym_ATsection] = ACTIONS(1814), - [anon_sym_ATonce] = ACTIONS(1816), - [anon_sym_ATverbatim] = ACTIONS(1818), - [anon_sym_ATpush] = ACTIONS(1820), - [anon_sym_ATpushOnce] = ACTIONS(1822), - [anon_sym_ATpushIf] = ACTIONS(1824), - [anon_sym_ATprepend] = ACTIONS(1826), - [anon_sym_ATprependOnce] = ACTIONS(1828), - [anon_sym_ATelse] = ACTIONS(1830), - [aux_sym_conditional_keyword_token1] = ACTIONS(1832), - [anon_sym_ATif] = ACTIONS(1834), - [anon_sym_ATunless] = ACTIONS(1836), - [anon_sym_ATisset] = ACTIONS(1838), - [anon_sym_ATempty] = ACTIONS(1840), - [anon_sym_ATauth] = ACTIONS(1842), - [anon_sym_ATguest] = ACTIONS(1844), - [anon_sym_ATproduction] = ACTIONS(1846), - [anon_sym_ATenv] = ACTIONS(1848), - [anon_sym_AThasSection] = ACTIONS(1850), - [anon_sym_ATsectionMissing] = ACTIONS(1852), - [anon_sym_ATerror] = ACTIONS(1854), - [anon_sym_ATcan] = ACTIONS(1856), - [anon_sym_ATendcan] = ACTIONS(660), - [anon_sym_ATcannot] = ACTIONS(1858), - [anon_sym_ATcanany] = ACTIONS(1860), - [anon_sym_ATfeature] = ACTIONS(1862), - [aux_sym__custom_token1] = ACTIONS(1864), - [aux_sym__custom_token2] = ACTIONS(1866), - [anon_sym_ATswitch] = ACTIONS(1868), - [aux_sym_loop_operator_token1] = ACTIONS(1870), - [anon_sym_ATfor] = ACTIONS(1872), - [anon_sym_ATforeach] = ACTIONS(1874), - [anon_sym_ATforelse] = ACTIONS(1876), - [anon_sym_ATwhile] = ACTIONS(1878), - [anon_sym_ATsetup] = ACTIONS(1880), - [anon_sym_ATtask] = ACTIONS(1882), - [anon_sym_ATstory] = ACTIONS(1884), - [anon_sym_ATbefore] = ACTIONS(1886), - [anon_sym_ATafter] = ACTIONS(1888), - [anon_sym_ATsuccess] = ACTIONS(1890), - [anon_sym_ATfinished] = ACTIONS(1892), - [anon_sym_ATpersist] = ACTIONS(1894), - [anon_sym_ATteleport] = ACTIONS(1896), - [anon_sym_ATvolt] = ACTIONS(1898), - [aux_sym__text_token1] = ACTIONS(1900), - [aux_sym__text_token2] = ACTIONS(1900), - [aux_sym__text_token3] = ACTIONS(1902), + [sym__definition] = STATE(121), + [sym_keyword] = STATE(121), + [sym_php_statement] = STATE(121), + [sym__escaped] = STATE(1847), + [sym__unescaped] = STATE(1847), + [sym__raw] = STATE(1847), + [sym__inline_raw] = STATE(1847), + [sym__multi_line_raw] = STATE(1847), + [sym_attribute] = STATE(121), + [sym__inline_directive] = STATE(121), + [sym__nested_directive] = STATE(121), + [sym_fragment] = STATE(121), + [sym_section] = STATE(121), + [sym_inlineSection] = STATE(121), + [sym_once] = STATE(121), + [sym_verbatim] = STATE(121), + [sym_stack] = STATE(121), + [sym__push] = STATE(1848), + [sym__pushOnce] = STATE(1848), + [sym__pushIf] = STATE(1848), + [sym__prepend] = STATE(1848), + [sym__prependOnce] = STATE(1848), + [sym_conditional] = STATE(121), + [sym_conditional_keyword] = STATE(121), + [sym__if] = STATE(1849), + [sym__unless] = STATE(1849), + [sym__isset] = STATE(1849), + [sym__empty] = STATE(1849), + [sym__auth] = STATE(1849), + [sym__guest] = STATE(1849), + [sym__production] = STATE(1849), + [sym__env] = STATE(1849), + [sym__hasSection] = STATE(1849), + [sym__sectionMissing] = STATE(1849), + [sym__error] = STATE(1849), + [sym_authorization] = STATE(1849), + [sym__can] = STATE(1850), + [sym__cannot] = STATE(1850), + [sym__canany] = STATE(1850), + [sym__feature] = STATE(1849), + [sym__custom] = STATE(1849), + [sym_switch] = STATE(121), + [sym_loop] = STATE(121), + [sym_loop_operator] = STATE(121), + [sym__for] = STATE(1851), + [sym__foreach] = STATE(1851), + [sym__forelse] = STATE(1851), + [sym__while] = STATE(1851), + [sym_envoy] = STATE(121), + [sym__setup] = STATE(1847), + [sym__task] = STATE(1852), + [sym__story] = STATE(1852), + [sym__hooks] = STATE(1847), + [sym__before] = STATE(1847), + [sym__after] = STATE(1847), + [sym__envoy_error] = STATE(1847), + [sym__success] = STATE(1847), + [sym__finished] = STATE(1847), + [sym_livewire] = STATE(121), + [sym__persist] = STATE(1853), + [sym__teleport] = STATE(1853), + [sym__volt] = STATE(1853), + [sym_text] = STATE(121), + [sym__text] = STATE(712), + [aux_sym__if_statement_directive_body_repeat1] = STATE(121), + [aux_sym_php_only_repeat1] = STATE(712), + [sym_comment] = ACTIONS(2128), + [aux_sym_keyword_token1] = ACTIONS(2130), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2132), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2134), + [anon_sym_ATphp] = ACTIONS(2136), + [aux_sym_attribute_token1] = ACTIONS(2138), + [aux_sym__inline_directive_token1] = ACTIONS(2140), + [anon_sym_ATfragment] = ACTIONS(2142), + [anon_sym_ATsection] = ACTIONS(2144), + [anon_sym_ATonce] = ACTIONS(2146), + [anon_sym_ATverbatim] = ACTIONS(2148), + [anon_sym_ATpush] = ACTIONS(2150), + [anon_sym_ATpushOnce] = ACTIONS(2152), + [anon_sym_ATpushIf] = ACTIONS(2154), + [anon_sym_ATprepend] = ACTIONS(2156), + [anon_sym_ATprependOnce] = ACTIONS(2158), + [anon_sym_ATelse] = ACTIONS(2160), + [aux_sym_conditional_keyword_token1] = ACTIONS(2162), + [anon_sym_ATif] = ACTIONS(2164), + [anon_sym_ATunless] = ACTIONS(2166), + [anon_sym_ATisset] = ACTIONS(2168), + [anon_sym_ATempty] = ACTIONS(2170), + [anon_sym_ATauth] = ACTIONS(2172), + [anon_sym_ATguest] = ACTIONS(2174), + [anon_sym_ATproduction] = ACTIONS(2176), + [anon_sym_ATenv] = ACTIONS(2178), + [anon_sym_AThasSection] = ACTIONS(2180), + [anon_sym_ATsectionMissing] = ACTIONS(2182), + [anon_sym_ATerror] = ACTIONS(2184), + [anon_sym_ATcan] = ACTIONS(2186), + [anon_sym_ATcannot] = ACTIONS(2188), + [anon_sym_ATendcannot] = ACTIONS(497), + [anon_sym_ATcanany] = ACTIONS(2190), + [anon_sym_ATfeature] = ACTIONS(2192), + [aux_sym__custom_token1] = ACTIONS(2194), + [aux_sym__custom_token2] = ACTIONS(2196), + [anon_sym_ATswitch] = ACTIONS(2198), + [aux_sym_loop_operator_token1] = ACTIONS(2200), + [anon_sym_ATfor] = ACTIONS(2202), + [anon_sym_ATforeach] = ACTIONS(2204), + [anon_sym_ATforelse] = ACTIONS(2206), + [anon_sym_ATwhile] = ACTIONS(2208), + [anon_sym_ATsetup] = ACTIONS(2210), + [anon_sym_ATtask] = ACTIONS(2212), + [anon_sym_ATstory] = ACTIONS(2214), + [anon_sym_ATbefore] = ACTIONS(2216), + [anon_sym_ATafter] = ACTIONS(2218), + [anon_sym_ATsuccess] = ACTIONS(2220), + [anon_sym_ATfinished] = ACTIONS(2222), + [anon_sym_ATpersist] = ACTIONS(2224), + [anon_sym_ATteleport] = ACTIONS(2226), + [anon_sym_ATvolt] = ACTIONS(2228), + [aux_sym__text_token1] = ACTIONS(2230), + [aux_sym__text_token2] = ACTIONS(2230), + [aux_sym__text_token3] = ACTIONS(2232), }, [110] = { - [sym__definition] = STATE(110), - [sym_comment] = STATE(110), - [sym_keyword] = STATE(110), - [sym_php_statement] = STATE(110), - [sym__escaped] = STATE(1275), - [sym__unescaped] = STATE(1275), - [sym__raw] = STATE(1275), - [sym__inline_raw] = STATE(1275), - [sym__multi_line_raw] = STATE(1275), - [sym_attribute] = STATE(110), - [sym__inline_directive] = STATE(110), - [sym__nested_directive] = STATE(110), - [sym_fragment] = STATE(110), - [sym_section] = STATE(110), - [sym_inlineSection] = STATE(110), - [sym_once] = STATE(110), - [sym_verbatim] = STATE(110), - [sym_stack] = STATE(110), - [sym__push] = STATE(1276), - [sym__pushOnce] = STATE(1276), - [sym__pushIf] = STATE(1276), - [sym__prepend] = STATE(1276), - [sym__prependOnce] = STATE(1276), - [sym_conditional] = STATE(110), - [sym_conditional_keyword] = STATE(110), - [sym__if] = STATE(1277), - [sym__unless] = STATE(1277), - [sym__isset] = STATE(1277), - [sym__empty] = STATE(1277), - [sym__auth] = STATE(1277), - [sym__guest] = STATE(1277), - [sym__production] = STATE(1277), - [sym__env] = STATE(1277), - [sym__hasSection] = STATE(1277), - [sym__sectionMissing] = STATE(1277), - [sym__error] = STATE(1277), - [sym_authorization] = STATE(1277), - [sym__can] = STATE(1278), - [sym__cannot] = STATE(1278), - [sym__canany] = STATE(1278), - [sym__feature] = STATE(1277), - [sym__custom] = STATE(1277), - [sym_switch] = STATE(110), - [sym_loop] = STATE(110), - [sym_loop_operator] = STATE(110), - [sym__for] = STATE(1279), - [sym__foreach] = STATE(1279), - [sym__forelse] = STATE(1279), - [sym__while] = STATE(1279), - [sym_envoy] = STATE(110), - [sym__setup] = STATE(1275), - [sym__task] = STATE(1280), - [sym__story] = STATE(1280), - [sym__hooks] = STATE(1275), - [sym__before] = STATE(1275), - [sym__after] = STATE(1275), - [sym__envoy_error] = STATE(1275), - [sym__success] = STATE(1275), - [sym__finished] = STATE(1275), - [sym_livewire] = STATE(110), - [sym__persist] = STATE(1281), - [sym__teleport] = STATE(1281), - [sym__volt] = STATE(1281), - [sym_text] = STATE(110), - [sym__text] = STATE(687), - [aux_sym__if_statement_directive_body_repeat1] = STATE(110), - [aux_sym_php_only_repeat1] = STATE(687), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(1908), - [aux_sym_keyword_token1] = ACTIONS(1911), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1917), - [anon_sym_ATphp] = ACTIONS(1920), - [aux_sym_attribute_token1] = ACTIONS(1923), - [aux_sym__inline_directive_token1] = ACTIONS(1926), - [anon_sym_ATfragment] = ACTIONS(1929), - [anon_sym_ATsection] = ACTIONS(1932), - [anon_sym_ATonce] = ACTIONS(1935), - [anon_sym_ATverbatim] = ACTIONS(1938), - [anon_sym_ATpush] = ACTIONS(1941), - [anon_sym_ATpushOnce] = ACTIONS(1944), - [anon_sym_ATpushIf] = ACTIONS(1947), - [anon_sym_ATprepend] = ACTIONS(1950), - [anon_sym_ATprependOnce] = ACTIONS(1953), - [anon_sym_ATelse] = ACTIONS(1956), - [aux_sym_conditional_keyword_token1] = ACTIONS(1959), - [anon_sym_ATif] = ACTIONS(1962), - [anon_sym_ATendif] = ACTIONS(518), - [anon_sym_ATunless] = ACTIONS(1965), - [anon_sym_ATisset] = ACTIONS(1968), - [anon_sym_ATempty] = ACTIONS(1971), - [anon_sym_ATauth] = ACTIONS(1974), - [anon_sym_ATguest] = ACTIONS(1977), - [anon_sym_ATproduction] = ACTIONS(1980), - [anon_sym_ATenv] = ACTIONS(1983), - [anon_sym_AThasSection] = ACTIONS(1986), - [anon_sym_ATsectionMissing] = ACTIONS(1989), - [anon_sym_ATerror] = ACTIONS(1992), - [anon_sym_ATcan] = ACTIONS(1995), - [anon_sym_ATcannot] = ACTIONS(1998), - [anon_sym_ATcanany] = ACTIONS(2001), - [anon_sym_ATfeature] = ACTIONS(2004), - [aux_sym__custom_token1] = ACTIONS(2007), - [aux_sym__custom_token2] = ACTIONS(2010), - [anon_sym_ATswitch] = ACTIONS(2013), - [aux_sym_loop_operator_token1] = ACTIONS(2016), - [anon_sym_ATfor] = ACTIONS(2019), - [anon_sym_ATforeach] = ACTIONS(2022), - [anon_sym_ATforelse] = ACTIONS(2025), - [anon_sym_ATwhile] = ACTIONS(2028), - [anon_sym_ATsetup] = ACTIONS(2031), - [anon_sym_ATtask] = ACTIONS(2034), - [anon_sym_ATstory] = ACTIONS(2037), - [anon_sym_ATbefore] = ACTIONS(2040), - [anon_sym_ATafter] = ACTIONS(2043), - [anon_sym_ATsuccess] = ACTIONS(2046), - [anon_sym_ATfinished] = ACTIONS(2049), - [anon_sym_ATpersist] = ACTIONS(2052), - [anon_sym_ATteleport] = ACTIONS(2055), - [anon_sym_ATvolt] = ACTIONS(2058), - [aux_sym__text_token1] = ACTIONS(2061), - [aux_sym__text_token2] = ACTIONS(2061), - [aux_sym__text_token3] = ACTIONS(2064), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(2234), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [111] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(2067), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(2236), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [112] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(2069), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(107), + [sym_keyword] = STATE(107), + [sym_php_statement] = STATE(107), + [sym__escaped] = STATE(1251), + [sym__unescaped] = STATE(1251), + [sym__raw] = STATE(1251), + [sym__inline_raw] = STATE(1251), + [sym__multi_line_raw] = STATE(1251), + [sym_attribute] = STATE(107), + [sym__inline_directive] = STATE(107), + [sym__nested_directive] = STATE(107), + [sym_fragment] = STATE(107), + [sym_section] = STATE(107), + [sym_inlineSection] = STATE(107), + [sym_once] = STATE(107), + [sym_verbatim] = STATE(107), + [sym_stack] = STATE(107), + [sym__push] = STATE(1252), + [sym__pushOnce] = STATE(1252), + [sym__pushIf] = STATE(1252), + [sym__prepend] = STATE(1252), + [sym__prependOnce] = STATE(1252), + [sym_conditional] = STATE(107), + [sym_conditional_keyword] = STATE(107), + [sym__if] = STATE(1253), + [sym__unless] = STATE(1253), + [sym__isset] = STATE(1253), + [sym__empty] = STATE(1253), + [sym__auth] = STATE(1253), + [sym__guest] = STATE(1253), + [sym__production] = STATE(1253), + [sym__env] = STATE(1253), + [sym__hasSection] = STATE(1253), + [sym__sectionMissing] = STATE(1253), + [sym__error] = STATE(1253), + [sym_authorization] = STATE(1253), + [sym__can] = STATE(1254), + [sym__cannot] = STATE(1254), + [sym__canany] = STATE(1254), + [sym__feature] = STATE(1253), + [sym__custom] = STATE(1253), + [sym_switch] = STATE(107), + [sym_loop] = STATE(107), + [sym_loop_operator] = STATE(107), + [sym__for] = STATE(1255), + [sym__foreach] = STATE(1255), + [sym__forelse] = STATE(1255), + [sym__while] = STATE(1255), + [sym_envoy] = STATE(107), + [sym__setup] = STATE(1251), + [sym__task] = STATE(1256), + [sym__story] = STATE(1256), + [sym__hooks] = STATE(1251), + [sym__before] = STATE(1251), + [sym__after] = STATE(1251), + [sym__envoy_error] = STATE(1251), + [sym__success] = STATE(1251), + [sym__finished] = STATE(1251), + [sym_livewire] = STATE(107), + [sym__persist] = STATE(1257), + [sym__teleport] = STATE(1257), + [sym__volt] = STATE(1257), + [sym_text] = STATE(107), + [sym__text] = STATE(692), + [aux_sym__if_statement_directive_body_repeat1] = STATE(107), + [aux_sym_php_only_repeat1] = STATE(692), + [sym_comment] = ACTIONS(2238), + [aux_sym_keyword_token1] = ACTIONS(824), + [anon_sym_LBRACE_LBRACE] = ACTIONS(826), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(828), + [anon_sym_ATphp] = ACTIONS(830), + [aux_sym_attribute_token1] = ACTIONS(832), + [aux_sym__inline_directive_token1] = ACTIONS(834), + [anon_sym_ATfragment] = ACTIONS(836), + [anon_sym_ATsection] = ACTIONS(838), + [anon_sym_ATonce] = ACTIONS(840), + [anon_sym_ATverbatim] = ACTIONS(842), + [anon_sym_ATpush] = ACTIONS(844), + [anon_sym_ATpushOnce] = ACTIONS(846), + [anon_sym_ATpushIf] = ACTIONS(848), + [anon_sym_ATprepend] = ACTIONS(850), + [anon_sym_ATprependOnce] = ACTIONS(852), + [anon_sym_ATelse] = ACTIONS(854), + [aux_sym_conditional_keyword_token1] = ACTIONS(856), + [anon_sym_ATif] = ACTIONS(858), + [anon_sym_ATendif] = ACTIONS(497), + [anon_sym_ATunless] = ACTIONS(860), + [anon_sym_ATisset] = ACTIONS(862), + [anon_sym_ATempty] = ACTIONS(864), + [anon_sym_ATauth] = ACTIONS(866), + [anon_sym_ATguest] = ACTIONS(868), + [anon_sym_ATproduction] = ACTIONS(870), + [anon_sym_ATenv] = ACTIONS(872), + [anon_sym_AThasSection] = ACTIONS(874), + [anon_sym_ATsectionMissing] = ACTIONS(876), + [anon_sym_ATerror] = ACTIONS(878), + [anon_sym_ATcan] = ACTIONS(880), + [anon_sym_ATcannot] = ACTIONS(882), + [anon_sym_ATcanany] = ACTIONS(884), + [anon_sym_ATfeature] = ACTIONS(886), + [aux_sym__custom_token1] = ACTIONS(888), + [aux_sym__custom_token2] = ACTIONS(890), + [anon_sym_ATswitch] = ACTIONS(892), + [aux_sym_loop_operator_token1] = ACTIONS(894), + [anon_sym_ATfor] = ACTIONS(896), + [anon_sym_ATforeach] = ACTIONS(898), + [anon_sym_ATforelse] = ACTIONS(900), + [anon_sym_ATwhile] = ACTIONS(902), + [anon_sym_ATsetup] = ACTIONS(904), + [anon_sym_ATtask] = ACTIONS(906), + [anon_sym_ATstory] = ACTIONS(908), + [anon_sym_ATbefore] = ACTIONS(910), + [anon_sym_ATafter] = ACTIONS(912), + [anon_sym_ATsuccess] = ACTIONS(914), + [anon_sym_ATfinished] = ACTIONS(916), + [anon_sym_ATpersist] = ACTIONS(918), + [anon_sym_ATteleport] = ACTIONS(920), + [anon_sym_ATvolt] = ACTIONS(922), + [aux_sym__text_token1] = ACTIONS(924), + [aux_sym__text_token2] = ACTIONS(924), + [aux_sym__text_token3] = ACTIONS(926), }, [113] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(2071), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(2240), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [114] = { - [sym__definition] = STATE(130), - [sym_comment] = STATE(130), - [sym_keyword] = STATE(130), - [sym_php_statement] = STATE(130), - [sym__escaped] = STATE(1543), - [sym__unescaped] = STATE(1543), - [sym__raw] = STATE(1543), - [sym__inline_raw] = STATE(1543), - [sym__multi_line_raw] = STATE(1543), - [sym_attribute] = STATE(130), - [sym__inline_directive] = STATE(130), - [sym__nested_directive] = STATE(130), - [sym_fragment] = STATE(130), - [sym_section] = STATE(130), - [sym_inlineSection] = STATE(130), - [sym_once] = STATE(130), - [sym_verbatim] = STATE(130), - [sym_stack] = STATE(130), - [sym__push] = STATE(1544), - [sym__pushOnce] = STATE(1544), - [sym__pushIf] = STATE(1544), - [sym__prepend] = STATE(1544), - [sym__prependOnce] = STATE(1544), - [sym_conditional] = STATE(130), - [sym_conditional_keyword] = STATE(130), - [sym__if] = STATE(1545), - [sym__unless] = STATE(1545), - [sym__isset] = STATE(1545), - [sym__empty] = STATE(1545), - [sym__auth] = STATE(1545), - [sym__guest] = STATE(1545), - [sym__production] = STATE(1545), - [sym__env] = STATE(1545), - [sym__hasSection] = STATE(1545), - [sym__sectionMissing] = STATE(1545), - [sym__error] = STATE(1545), - [sym_authorization] = STATE(1545), - [sym__can] = STATE(1546), - [sym__cannot] = STATE(1546), - [sym__canany] = STATE(1546), - [sym__feature] = STATE(1545), - [sym__custom] = STATE(1545), - [sym_switch] = STATE(130), - [sym_loop] = STATE(130), - [sym_loop_operator] = STATE(130), - [sym__for] = STATE(1547), - [sym__foreach] = STATE(1547), - [sym__forelse] = STATE(1547), - [sym__while] = STATE(1547), - [sym_envoy] = STATE(130), - [sym__setup] = STATE(1543), - [sym__task] = STATE(1548), - [sym__story] = STATE(1548), - [sym__hooks] = STATE(1543), - [sym__before] = STATE(1543), - [sym__after] = STATE(1543), - [sym__envoy_error] = STATE(1543), - [sym__success] = STATE(1543), - [sym__finished] = STATE(1543), - [sym_livewire] = STATE(130), - [sym__persist] = STATE(1549), - [sym__teleport] = STATE(1549), - [sym__volt] = STATE(1549), - [sym_text] = STATE(130), - [sym__text] = STATE(711), - [aux_sym__if_statement_directive_body_repeat1] = STATE(130), - [aux_sym_php_only_repeat1] = STATE(711), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2073), - [aux_sym_keyword_token1] = ACTIONS(2075), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2079), - [anon_sym_ATphp] = ACTIONS(2081), - [aux_sym_attribute_token1] = ACTIONS(2083), - [aux_sym__inline_directive_token1] = ACTIONS(2085), - [anon_sym_ATfragment] = ACTIONS(2087), - [anon_sym_ATsection] = ACTIONS(2089), - [anon_sym_ATonce] = ACTIONS(2091), - [anon_sym_ATverbatim] = ACTIONS(2093), - [anon_sym_ATpush] = ACTIONS(2095), - [anon_sym_ATpushOnce] = ACTIONS(2097), - [anon_sym_ATpushIf] = ACTIONS(2099), - [anon_sym_ATprepend] = ACTIONS(2101), - [anon_sym_ATprependOnce] = ACTIONS(2103), - [anon_sym_ATelse] = ACTIONS(2105), - [aux_sym_conditional_keyword_token1] = ACTIONS(2107), - [anon_sym_ATif] = ACTIONS(2109), - [anon_sym_ATunless] = ACTIONS(2111), - [anon_sym_ATisset] = ACTIONS(2113), - [anon_sym_ATempty] = ACTIONS(2115), - [anon_sym_ATendempty] = ACTIONS(660), - [anon_sym_ATauth] = ACTIONS(2117), - [anon_sym_ATguest] = ACTIONS(2119), - [anon_sym_ATproduction] = ACTIONS(2121), - [anon_sym_ATenv] = ACTIONS(2123), - [anon_sym_AThasSection] = ACTIONS(2125), - [anon_sym_ATsectionMissing] = ACTIONS(2127), - [anon_sym_ATerror] = ACTIONS(2129), - [anon_sym_ATcan] = ACTIONS(2131), - [anon_sym_ATcannot] = ACTIONS(2133), - [anon_sym_ATcanany] = ACTIONS(2135), - [anon_sym_ATfeature] = ACTIONS(2137), - [aux_sym__custom_token1] = ACTIONS(2139), - [aux_sym__custom_token2] = ACTIONS(2141), - [anon_sym_ATswitch] = ACTIONS(2143), - [aux_sym_loop_operator_token1] = ACTIONS(2145), - [anon_sym_ATfor] = ACTIONS(2147), - [anon_sym_ATforeach] = ACTIONS(2149), - [anon_sym_ATforelse] = ACTIONS(2151), - [anon_sym_ATwhile] = ACTIONS(2153), - [anon_sym_ATsetup] = ACTIONS(2155), - [anon_sym_ATtask] = ACTIONS(2157), - [anon_sym_ATstory] = ACTIONS(2159), - [anon_sym_ATbefore] = ACTIONS(2161), - [anon_sym_ATafter] = ACTIONS(2163), - [anon_sym_ATsuccess] = ACTIONS(2165), - [anon_sym_ATfinished] = ACTIONS(2167), - [anon_sym_ATpersist] = ACTIONS(2169), - [anon_sym_ATteleport] = ACTIONS(2171), - [anon_sym_ATvolt] = ACTIONS(2173), - [aux_sym__text_token1] = ACTIONS(2175), - [aux_sym__text_token2] = ACTIONS(2175), - [aux_sym__text_token3] = ACTIONS(2177), + [sym__definition] = STATE(118), + [sym_keyword] = STATE(118), + [sym_php_statement] = STATE(118), + [sym__escaped] = STATE(1513), + [sym__unescaped] = STATE(1513), + [sym__raw] = STATE(1513), + [sym__inline_raw] = STATE(1513), + [sym__multi_line_raw] = STATE(1513), + [sym_attribute] = STATE(118), + [sym__inline_directive] = STATE(118), + [sym__nested_directive] = STATE(118), + [sym_fragment] = STATE(118), + [sym_section] = STATE(118), + [sym_inlineSection] = STATE(118), + [sym_once] = STATE(118), + [sym_verbatim] = STATE(118), + [sym_stack] = STATE(118), + [sym__push] = STATE(1514), + [sym__pushOnce] = STATE(1514), + [sym__pushIf] = STATE(1514), + [sym__prepend] = STATE(1514), + [sym__prependOnce] = STATE(1514), + [sym_conditional] = STATE(118), + [sym_conditional_keyword] = STATE(118), + [sym__if] = STATE(1515), + [sym__unless] = STATE(1515), + [sym__isset] = STATE(1515), + [sym__empty] = STATE(1515), + [sym__auth] = STATE(1515), + [sym__guest] = STATE(1515), + [sym__production] = STATE(1515), + [sym__env] = STATE(1515), + [sym__hasSection] = STATE(1515), + [sym__sectionMissing] = STATE(1515), + [sym__error] = STATE(1515), + [sym_authorization] = STATE(1515), + [sym__can] = STATE(1516), + [sym__cannot] = STATE(1516), + [sym__canany] = STATE(1516), + [sym__feature] = STATE(1515), + [sym__custom] = STATE(1515), + [sym_switch] = STATE(118), + [sym_loop] = STATE(118), + [sym_loop_operator] = STATE(118), + [sym__for] = STATE(1517), + [sym__foreach] = STATE(1517), + [sym__forelse] = STATE(1517), + [sym__while] = STATE(1517), + [sym_envoy] = STATE(118), + [sym__setup] = STATE(1513), + [sym__task] = STATE(1518), + [sym__story] = STATE(1518), + [sym__hooks] = STATE(1513), + [sym__before] = STATE(1513), + [sym__after] = STATE(1513), + [sym__envoy_error] = STATE(1513), + [sym__success] = STATE(1513), + [sym__finished] = STATE(1513), + [sym_livewire] = STATE(118), + [sym__persist] = STATE(1519), + [sym__teleport] = STATE(1519), + [sym__volt] = STATE(1519), + [sym_text] = STATE(118), + [sym__text] = STATE(677), + [aux_sym__if_statement_directive_body_repeat1] = STATE(118), + [aux_sym_php_only_repeat1] = STATE(677), + [sym_comment] = ACTIONS(2242), + [aux_sym_keyword_token1] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2246), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2248), + [anon_sym_ATphp] = ACTIONS(2250), + [aux_sym_attribute_token1] = ACTIONS(2252), + [aux_sym__inline_directive_token1] = ACTIONS(2254), + [anon_sym_ATfragment] = ACTIONS(2256), + [anon_sym_ATsection] = ACTIONS(2258), + [anon_sym_ATonce] = ACTIONS(2260), + [anon_sym_ATverbatim] = ACTIONS(2262), + [anon_sym_ATpush] = ACTIONS(2264), + [anon_sym_ATpushOnce] = ACTIONS(2266), + [anon_sym_ATpushIf] = ACTIONS(2268), + [anon_sym_ATprepend] = ACTIONS(2270), + [anon_sym_ATprependOnce] = ACTIONS(2272), + [anon_sym_ATelse] = ACTIONS(2274), + [aux_sym_conditional_keyword_token1] = ACTIONS(2276), + [anon_sym_ATif] = ACTIONS(2278), + [anon_sym_ATunless] = ACTIONS(2280), + [anon_sym_ATisset] = ACTIONS(2282), + [anon_sym_ATempty] = ACTIONS(2284), + [anon_sym_ATendempty] = ACTIONS(706), + [anon_sym_ATauth] = ACTIONS(2286), + [anon_sym_ATguest] = ACTIONS(2288), + [anon_sym_ATproduction] = ACTIONS(2290), + [anon_sym_ATenv] = ACTIONS(2292), + [anon_sym_AThasSection] = ACTIONS(2294), + [anon_sym_ATsectionMissing] = ACTIONS(2296), + [anon_sym_ATerror] = ACTIONS(2298), + [anon_sym_ATcan] = ACTIONS(2300), + [anon_sym_ATcannot] = ACTIONS(2302), + [anon_sym_ATcanany] = ACTIONS(2304), + [anon_sym_ATfeature] = ACTIONS(2306), + [aux_sym__custom_token1] = ACTIONS(2308), + [aux_sym__custom_token2] = ACTIONS(2310), + [anon_sym_ATswitch] = ACTIONS(2312), + [aux_sym_loop_operator_token1] = ACTIONS(2314), + [anon_sym_ATfor] = ACTIONS(2316), + [anon_sym_ATforeach] = ACTIONS(2318), + [anon_sym_ATforelse] = ACTIONS(2320), + [anon_sym_ATwhile] = ACTIONS(2322), + [anon_sym_ATsetup] = ACTIONS(2324), + [anon_sym_ATtask] = ACTIONS(2326), + [anon_sym_ATstory] = ACTIONS(2328), + [anon_sym_ATbefore] = ACTIONS(2330), + [anon_sym_ATafter] = ACTIONS(2332), + [anon_sym_ATsuccess] = ACTIONS(2334), + [anon_sym_ATfinished] = ACTIONS(2336), + [anon_sym_ATpersist] = ACTIONS(2338), + [anon_sym_ATteleport] = ACTIONS(2340), + [anon_sym_ATvolt] = ACTIONS(2342), + [aux_sym__text_token1] = ACTIONS(2344), + [aux_sym__text_token2] = ACTIONS(2344), + [aux_sym__text_token3] = ACTIONS(2346), }, [115] = { - [sym__definition] = STATE(85), - [sym_comment] = STATE(85), - [sym_keyword] = STATE(85), - [sym_php_statement] = STATE(85), - [sym__escaped] = STATE(1885), - [sym__unescaped] = STATE(1885), - [sym__raw] = STATE(1885), - [sym__inline_raw] = STATE(1885), - [sym__multi_line_raw] = STATE(1885), - [sym_attribute] = STATE(85), - [sym__inline_directive] = STATE(85), - [sym__nested_directive] = STATE(85), - [sym_fragment] = STATE(85), - [sym_section] = STATE(85), - [sym_inlineSection] = STATE(85), - [sym_once] = STATE(85), - [sym_verbatim] = STATE(85), - [sym_stack] = STATE(85), - [sym__push] = STATE(1886), - [sym__pushOnce] = STATE(1886), - [sym__pushIf] = STATE(1886), - [sym__prepend] = STATE(1886), - [sym__prependOnce] = STATE(1886), - [sym_conditional] = STATE(85), - [sym_conditional_keyword] = STATE(85), - [sym__if] = STATE(1887), - [sym__unless] = STATE(1887), - [sym__isset] = STATE(1887), - [sym__empty] = STATE(1887), - [sym__auth] = STATE(1887), - [sym__guest] = STATE(1887), - [sym__production] = STATE(1887), - [sym__env] = STATE(1887), - [sym__hasSection] = STATE(1887), - [sym__sectionMissing] = STATE(1887), - [sym__error] = STATE(1887), - [sym_authorization] = STATE(1887), - [sym__can] = STATE(1888), - [sym__cannot] = STATE(1888), - [sym__canany] = STATE(1888), - [sym__feature] = STATE(1887), - [sym__custom] = STATE(1887), - [sym_switch] = STATE(85), - [sym_loop] = STATE(85), - [sym_loop_operator] = STATE(85), - [sym__for] = STATE(1889), - [sym__foreach] = STATE(1889), - [sym__forelse] = STATE(1889), - [sym__while] = STATE(1889), - [sym_envoy] = STATE(85), - [sym__setup] = STATE(1885), - [sym__task] = STATE(1890), - [sym__story] = STATE(1890), - [sym__hooks] = STATE(1885), - [sym__before] = STATE(1885), - [sym__after] = STATE(1885), - [sym__envoy_error] = STATE(1885), - [sym__success] = STATE(1885), - [sym__finished] = STATE(1885), - [sym_livewire] = STATE(85), - [sym__persist] = STATE(1891), - [sym__teleport] = STATE(1891), - [sym__volt] = STATE(1891), - [sym_text] = STATE(85), - [sym__text] = STATE(680), - [aux_sym__if_statement_directive_body_repeat1] = STATE(85), - [aux_sym_php_only_repeat1] = STATE(680), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(718), - [aux_sym_keyword_token1] = ACTIONS(720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(722), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(724), - [anon_sym_ATphp] = ACTIONS(726), - [aux_sym_attribute_token1] = ACTIONS(728), - [aux_sym__inline_directive_token1] = ACTIONS(730), - [anon_sym_ATfragment] = ACTIONS(732), - [anon_sym_ATsection] = ACTIONS(734), - [anon_sym_ATonce] = ACTIONS(736), - [anon_sym_ATverbatim] = ACTIONS(738), - [anon_sym_ATpush] = ACTIONS(740), - [anon_sym_ATpushOnce] = ACTIONS(742), - [anon_sym_ATpushIf] = ACTIONS(744), - [anon_sym_ATprepend] = ACTIONS(746), - [anon_sym_ATprependOnce] = ACTIONS(748), - [anon_sym_ATelse] = ACTIONS(750), - [aux_sym_conditional_keyword_token1] = ACTIONS(752), - [anon_sym_ATif] = ACTIONS(754), - [anon_sym_ATunless] = ACTIONS(756), - [anon_sym_ATisset] = ACTIONS(758), - [anon_sym_ATempty] = ACTIONS(760), - [anon_sym_ATauth] = ACTIONS(762), - [anon_sym_ATguest] = ACTIONS(764), - [anon_sym_ATproduction] = ACTIONS(766), - [anon_sym_ATenv] = ACTIONS(768), - [anon_sym_AThasSection] = ACTIONS(770), - [anon_sym_ATsectionMissing] = ACTIONS(772), - [anon_sym_ATerror] = ACTIONS(774), - [anon_sym_ATcan] = ACTIONS(776), - [anon_sym_ATcannot] = ACTIONS(778), - [anon_sym_ATendcannot] = ACTIONS(660), - [anon_sym_ATcanany] = ACTIONS(780), - [anon_sym_ATfeature] = ACTIONS(782), - [aux_sym__custom_token1] = ACTIONS(784), - [aux_sym__custom_token2] = ACTIONS(786), - [anon_sym_ATswitch] = ACTIONS(788), - [aux_sym_loop_operator_token1] = ACTIONS(790), - [anon_sym_ATfor] = ACTIONS(792), - [anon_sym_ATforeach] = ACTIONS(794), - [anon_sym_ATforelse] = ACTIONS(796), - [anon_sym_ATwhile] = ACTIONS(798), - [anon_sym_ATsetup] = ACTIONS(800), - [anon_sym_ATtask] = ACTIONS(802), - [anon_sym_ATstory] = ACTIONS(804), - [anon_sym_ATbefore] = ACTIONS(806), - [anon_sym_ATafter] = ACTIONS(808), - [anon_sym_ATsuccess] = ACTIONS(810), - [anon_sym_ATfinished] = ACTIONS(812), - [anon_sym_ATpersist] = ACTIONS(814), - [anon_sym_ATteleport] = ACTIONS(816), - [anon_sym_ATvolt] = ACTIONS(818), - [aux_sym__text_token1] = ACTIONS(820), - [aux_sym__text_token2] = ACTIONS(820), - [aux_sym__text_token3] = ACTIONS(822), + [sym__definition] = STATE(109), + [sym_keyword] = STATE(109), + [sym_php_statement] = STATE(109), + [sym__escaped] = STATE(1847), + [sym__unescaped] = STATE(1847), + [sym__raw] = STATE(1847), + [sym__inline_raw] = STATE(1847), + [sym__multi_line_raw] = STATE(1847), + [sym_attribute] = STATE(109), + [sym__inline_directive] = STATE(109), + [sym__nested_directive] = STATE(109), + [sym_fragment] = STATE(109), + [sym_section] = STATE(109), + [sym_inlineSection] = STATE(109), + [sym_once] = STATE(109), + [sym_verbatim] = STATE(109), + [sym_stack] = STATE(109), + [sym__push] = STATE(1848), + [sym__pushOnce] = STATE(1848), + [sym__pushIf] = STATE(1848), + [sym__prepend] = STATE(1848), + [sym__prependOnce] = STATE(1848), + [sym_conditional] = STATE(109), + [sym_conditional_keyword] = STATE(109), + [sym__if] = STATE(1849), + [sym__unless] = STATE(1849), + [sym__isset] = STATE(1849), + [sym__empty] = STATE(1849), + [sym__auth] = STATE(1849), + [sym__guest] = STATE(1849), + [sym__production] = STATE(1849), + [sym__env] = STATE(1849), + [sym__hasSection] = STATE(1849), + [sym__sectionMissing] = STATE(1849), + [sym__error] = STATE(1849), + [sym_authorization] = STATE(1849), + [sym__can] = STATE(1850), + [sym__cannot] = STATE(1850), + [sym__canany] = STATE(1850), + [sym__feature] = STATE(1849), + [sym__custom] = STATE(1849), + [sym_switch] = STATE(109), + [sym_loop] = STATE(109), + [sym_loop_operator] = STATE(109), + [sym__for] = STATE(1851), + [sym__foreach] = STATE(1851), + [sym__forelse] = STATE(1851), + [sym__while] = STATE(1851), + [sym_envoy] = STATE(109), + [sym__setup] = STATE(1847), + [sym__task] = STATE(1852), + [sym__story] = STATE(1852), + [sym__hooks] = STATE(1847), + [sym__before] = STATE(1847), + [sym__after] = STATE(1847), + [sym__envoy_error] = STATE(1847), + [sym__success] = STATE(1847), + [sym__finished] = STATE(1847), + [sym_livewire] = STATE(109), + [sym__persist] = STATE(1853), + [sym__teleport] = STATE(1853), + [sym__volt] = STATE(1853), + [sym_text] = STATE(109), + [sym__text] = STATE(712), + [aux_sym__if_statement_directive_body_repeat1] = STATE(109), + [aux_sym_php_only_repeat1] = STATE(712), + [sym_comment] = ACTIONS(2348), + [aux_sym_keyword_token1] = ACTIONS(2130), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2132), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2134), + [anon_sym_ATphp] = ACTIONS(2136), + [aux_sym_attribute_token1] = ACTIONS(2138), + [aux_sym__inline_directive_token1] = ACTIONS(2140), + [anon_sym_ATfragment] = ACTIONS(2142), + [anon_sym_ATsection] = ACTIONS(2144), + [anon_sym_ATonce] = ACTIONS(2146), + [anon_sym_ATverbatim] = ACTIONS(2148), + [anon_sym_ATpush] = ACTIONS(2150), + [anon_sym_ATpushOnce] = ACTIONS(2152), + [anon_sym_ATpushIf] = ACTIONS(2154), + [anon_sym_ATprepend] = ACTIONS(2156), + [anon_sym_ATprependOnce] = ACTIONS(2158), + [anon_sym_ATelse] = ACTIONS(2160), + [aux_sym_conditional_keyword_token1] = ACTIONS(2162), + [anon_sym_ATif] = ACTIONS(2164), + [anon_sym_ATunless] = ACTIONS(2166), + [anon_sym_ATisset] = ACTIONS(2168), + [anon_sym_ATempty] = ACTIONS(2170), + [anon_sym_ATauth] = ACTIONS(2172), + [anon_sym_ATguest] = ACTIONS(2174), + [anon_sym_ATproduction] = ACTIONS(2176), + [anon_sym_ATenv] = ACTIONS(2178), + [anon_sym_AThasSection] = ACTIONS(2180), + [anon_sym_ATsectionMissing] = ACTIONS(2182), + [anon_sym_ATerror] = ACTIONS(2184), + [anon_sym_ATcan] = ACTIONS(2186), + [anon_sym_ATcannot] = ACTIONS(2188), + [anon_sym_ATendcannot] = ACTIONS(706), + [anon_sym_ATcanany] = ACTIONS(2190), + [anon_sym_ATfeature] = ACTIONS(2192), + [aux_sym__custom_token1] = ACTIONS(2194), + [aux_sym__custom_token2] = ACTIONS(2196), + [anon_sym_ATswitch] = ACTIONS(2198), + [aux_sym_loop_operator_token1] = ACTIONS(2200), + [anon_sym_ATfor] = ACTIONS(2202), + [anon_sym_ATforeach] = ACTIONS(2204), + [anon_sym_ATforelse] = ACTIONS(2206), + [anon_sym_ATwhile] = ACTIONS(2208), + [anon_sym_ATsetup] = ACTIONS(2210), + [anon_sym_ATtask] = ACTIONS(2212), + [anon_sym_ATstory] = ACTIONS(2214), + [anon_sym_ATbefore] = ACTIONS(2216), + [anon_sym_ATafter] = ACTIONS(2218), + [anon_sym_ATsuccess] = ACTIONS(2220), + [anon_sym_ATfinished] = ACTIONS(2222), + [anon_sym_ATpersist] = ACTIONS(2224), + [anon_sym_ATteleport] = ACTIONS(2226), + [anon_sym_ATvolt] = ACTIONS(2228), + [aux_sym__text_token1] = ACTIONS(2230), + [aux_sym__text_token2] = ACTIONS(2230), + [aux_sym__text_token3] = ACTIONS(2232), }, [116] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(2350), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [117] = { + [sym__definition] = STATE(76), + [sym_keyword] = STATE(76), + [sym_php_statement] = STATE(76), + [sym__escaped] = STATE(1764), + [sym__unescaped] = STATE(1764), + [sym__raw] = STATE(1764), + [sym__inline_raw] = STATE(1764), + [sym__multi_line_raw] = STATE(1764), + [sym_attribute] = STATE(76), + [sym__inline_directive] = STATE(76), + [sym__nested_directive] = STATE(76), + [sym_fragment] = STATE(76), + [sym_section] = STATE(76), + [sym_inlineSection] = STATE(76), + [sym_once] = STATE(76), + [sym_verbatim] = STATE(76), + [sym_stack] = STATE(76), + [sym__push] = STATE(1765), + [sym__pushOnce] = STATE(1765), + [sym__pushIf] = STATE(1765), + [sym__prepend] = STATE(1765), + [sym__prependOnce] = STATE(1765), + [sym_conditional] = STATE(76), + [sym_conditional_keyword] = STATE(76), + [sym__if] = STATE(1766), + [sym__unless] = STATE(1766), + [sym__isset] = STATE(1766), + [sym__empty] = STATE(1766), + [sym__auth] = STATE(1766), + [sym__guest] = STATE(1766), + [sym__production] = STATE(1766), + [sym__env] = STATE(1766), + [sym__hasSection] = STATE(1766), + [sym__sectionMissing] = STATE(1766), + [sym__error] = STATE(1766), + [sym_authorization] = STATE(1766), + [sym__can] = STATE(1767), + [sym__cannot] = STATE(1767), + [sym__canany] = STATE(1767), + [sym__feature] = STATE(1766), + [sym__custom] = STATE(1766), + [sym_switch] = STATE(76), + [sym_loop] = STATE(76), + [sym_loop_operator] = STATE(76), + [sym__for] = STATE(1768), + [sym__foreach] = STATE(1768), + [sym__forelse] = STATE(1768), + [sym__while] = STATE(1768), + [sym_envoy] = STATE(76), + [sym__setup] = STATE(1764), + [sym__task] = STATE(1769), + [sym__story] = STATE(1769), + [sym__hooks] = STATE(1764), + [sym__before] = STATE(1764), + [sym__after] = STATE(1764), + [sym__envoy_error] = STATE(1764), + [sym__success] = STATE(1764), + [sym__finished] = STATE(1764), + [sym_livewire] = STATE(76), + [sym__persist] = STATE(1770), + [sym__teleport] = STATE(1770), + [sym__volt] = STATE(1770), + [sym_text] = STATE(76), [sym__text] = STATE(725), + [aux_sym__if_statement_directive_body_repeat1] = STATE(76), [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(2179), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym_comment] = ACTIONS(2352), + [aux_sym_keyword_token1] = ACTIONS(2354), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2358), + [anon_sym_ATphp] = ACTIONS(2360), + [aux_sym_attribute_token1] = ACTIONS(2362), + [aux_sym__inline_directive_token1] = ACTIONS(2364), + [anon_sym_ATfragment] = ACTIONS(2366), + [anon_sym_ATsection] = ACTIONS(2368), + [anon_sym_ATonce] = ACTIONS(2370), + [anon_sym_ATverbatim] = ACTIONS(2372), + [anon_sym_ATpush] = ACTIONS(2374), + [anon_sym_ATpushOnce] = ACTIONS(2376), + [anon_sym_ATpushIf] = ACTIONS(2378), + [anon_sym_ATprepend] = ACTIONS(2380), + [anon_sym_ATprependOnce] = ACTIONS(2382), + [anon_sym_ATelse] = ACTIONS(2384), + [aux_sym_conditional_keyword_token1] = ACTIONS(2386), + [anon_sym_ATif] = ACTIONS(2388), + [anon_sym_ATunless] = ACTIONS(2390), + [anon_sym_ATisset] = ACTIONS(2392), + [anon_sym_ATempty] = ACTIONS(2394), + [anon_sym_ATauth] = ACTIONS(2396), + [anon_sym_ATguest] = ACTIONS(2398), + [anon_sym_ATproduction] = ACTIONS(2400), + [anon_sym_ATenv] = ACTIONS(2402), + [anon_sym_AThasSection] = ACTIONS(2404), + [anon_sym_ATsectionMissing] = ACTIONS(2406), + [anon_sym_ATerror] = ACTIONS(2408), + [anon_sym_ATcan] = ACTIONS(2410), + [anon_sym_ATendcan] = ACTIONS(497), + [anon_sym_ATcannot] = ACTIONS(2412), + [anon_sym_ATcanany] = ACTIONS(2414), + [anon_sym_ATfeature] = ACTIONS(2416), + [aux_sym__custom_token1] = ACTIONS(2418), + [aux_sym__custom_token2] = ACTIONS(2420), + [anon_sym_ATswitch] = ACTIONS(2422), + [aux_sym_loop_operator_token1] = ACTIONS(2424), + [anon_sym_ATfor] = ACTIONS(2426), + [anon_sym_ATforeach] = ACTIONS(2428), + [anon_sym_ATforelse] = ACTIONS(2430), + [anon_sym_ATwhile] = ACTIONS(2432), + [anon_sym_ATsetup] = ACTIONS(2434), + [anon_sym_ATtask] = ACTIONS(2436), + [anon_sym_ATstory] = ACTIONS(2438), + [anon_sym_ATbefore] = ACTIONS(2440), + [anon_sym_ATafter] = ACTIONS(2442), + [anon_sym_ATsuccess] = ACTIONS(2444), + [anon_sym_ATfinished] = ACTIONS(2446), + [anon_sym_ATpersist] = ACTIONS(2448), + [anon_sym_ATteleport] = ACTIONS(2450), + [anon_sym_ATvolt] = ACTIONS(2452), + [aux_sym__text_token1] = ACTIONS(2454), + [aux_sym__text_token2] = ACTIONS(2454), + [aux_sym__text_token3] = ACTIONS(2456), }, - [117] = { + [118] = { + [sym__definition] = STATE(129), + [sym_keyword] = STATE(129), + [sym_php_statement] = STATE(129), + [sym__escaped] = STATE(1513), + [sym__unescaped] = STATE(1513), + [sym__raw] = STATE(1513), + [sym__inline_raw] = STATE(1513), + [sym__multi_line_raw] = STATE(1513), + [sym_attribute] = STATE(129), + [sym__inline_directive] = STATE(129), + [sym__nested_directive] = STATE(129), + [sym_fragment] = STATE(129), + [sym_section] = STATE(129), + [sym_inlineSection] = STATE(129), + [sym_once] = STATE(129), + [sym_verbatim] = STATE(129), + [sym_stack] = STATE(129), + [sym__push] = STATE(1514), + [sym__pushOnce] = STATE(1514), + [sym__pushIf] = STATE(1514), + [sym__prepend] = STATE(1514), + [sym__prependOnce] = STATE(1514), + [sym_conditional] = STATE(129), + [sym_conditional_keyword] = STATE(129), + [sym__if] = STATE(1515), + [sym__unless] = STATE(1515), + [sym__isset] = STATE(1515), + [sym__empty] = STATE(1515), + [sym__auth] = STATE(1515), + [sym__guest] = STATE(1515), + [sym__production] = STATE(1515), + [sym__env] = STATE(1515), + [sym__hasSection] = STATE(1515), + [sym__sectionMissing] = STATE(1515), + [sym__error] = STATE(1515), + [sym_authorization] = STATE(1515), + [sym__can] = STATE(1516), + [sym__cannot] = STATE(1516), + [sym__canany] = STATE(1516), + [sym__feature] = STATE(1515), + [sym__custom] = STATE(1515), + [sym_switch] = STATE(129), + [sym_loop] = STATE(129), + [sym_loop_operator] = STATE(129), + [sym__for] = STATE(1517), + [sym__foreach] = STATE(1517), + [sym__forelse] = STATE(1517), + [sym__while] = STATE(1517), + [sym_envoy] = STATE(129), + [sym__setup] = STATE(1513), + [sym__task] = STATE(1518), + [sym__story] = STATE(1518), + [sym__hooks] = STATE(1513), + [sym__before] = STATE(1513), + [sym__after] = STATE(1513), + [sym__envoy_error] = STATE(1513), + [sym__success] = STATE(1513), + [sym__finished] = STATE(1513), + [sym_livewire] = STATE(129), + [sym__persist] = STATE(1519), + [sym__teleport] = STATE(1519), + [sym__volt] = STATE(1519), + [sym_text] = STATE(129), + [sym__text] = STATE(677), + [aux_sym__if_statement_directive_body_repeat1] = STATE(129), + [aux_sym_php_only_repeat1] = STATE(677), + [sym_comment] = ACTIONS(2458), + [aux_sym_keyword_token1] = ACTIONS(2244), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2246), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2248), + [anon_sym_ATphp] = ACTIONS(2250), + [aux_sym_attribute_token1] = ACTIONS(2252), + [aux_sym__inline_directive_token1] = ACTIONS(2254), + [anon_sym_ATfragment] = ACTIONS(2256), + [anon_sym_ATsection] = ACTIONS(2258), + [anon_sym_ATonce] = ACTIONS(2260), + [anon_sym_ATverbatim] = ACTIONS(2262), + [anon_sym_ATpush] = ACTIONS(2264), + [anon_sym_ATpushOnce] = ACTIONS(2266), + [anon_sym_ATpushIf] = ACTIONS(2268), + [anon_sym_ATprepend] = ACTIONS(2270), + [anon_sym_ATprependOnce] = ACTIONS(2272), + [anon_sym_ATelse] = ACTIONS(2274), + [aux_sym_conditional_keyword_token1] = ACTIONS(2276), + [anon_sym_ATif] = ACTIONS(2278), + [anon_sym_ATunless] = ACTIONS(2280), + [anon_sym_ATisset] = ACTIONS(2282), + [anon_sym_ATempty] = ACTIONS(2284), + [anon_sym_ATendempty] = ACTIONS(497), + [anon_sym_ATauth] = ACTIONS(2286), + [anon_sym_ATguest] = ACTIONS(2288), + [anon_sym_ATproduction] = ACTIONS(2290), + [anon_sym_ATenv] = ACTIONS(2292), + [anon_sym_AThasSection] = ACTIONS(2294), + [anon_sym_ATsectionMissing] = ACTIONS(2296), + [anon_sym_ATerror] = ACTIONS(2298), + [anon_sym_ATcan] = ACTIONS(2300), + [anon_sym_ATcannot] = ACTIONS(2302), + [anon_sym_ATcanany] = ACTIONS(2304), + [anon_sym_ATfeature] = ACTIONS(2306), + [aux_sym__custom_token1] = ACTIONS(2308), + [aux_sym__custom_token2] = ACTIONS(2310), + [anon_sym_ATswitch] = ACTIONS(2312), + [aux_sym_loop_operator_token1] = ACTIONS(2314), + [anon_sym_ATfor] = ACTIONS(2316), + [anon_sym_ATforeach] = ACTIONS(2318), + [anon_sym_ATforelse] = ACTIONS(2320), + [anon_sym_ATwhile] = ACTIONS(2322), + [anon_sym_ATsetup] = ACTIONS(2324), + [anon_sym_ATtask] = ACTIONS(2326), + [anon_sym_ATstory] = ACTIONS(2328), + [anon_sym_ATbefore] = ACTIONS(2330), + [anon_sym_ATafter] = ACTIONS(2332), + [anon_sym_ATsuccess] = ACTIONS(2334), + [anon_sym_ATfinished] = ACTIONS(2336), + [anon_sym_ATpersist] = ACTIONS(2338), + [anon_sym_ATteleport] = ACTIONS(2340), + [anon_sym_ATvolt] = ACTIONS(2342), + [aux_sym__text_token1] = ACTIONS(2344), + [aux_sym__text_token2] = ACTIONS(2344), + [aux_sym__text_token3] = ACTIONS(2346), + }, + [119] = { [sym__definition] = STATE(117), - [sym_comment] = STATE(117), [sym_keyword] = STATE(117), [sym_php_statement] = STATE(117), - [sym__escaped] = STATE(1630), - [sym__unescaped] = STATE(1630), - [sym__raw] = STATE(1630), - [sym__inline_raw] = STATE(1630), - [sym__multi_line_raw] = STATE(1630), + [sym__escaped] = STATE(1764), + [sym__unescaped] = STATE(1764), + [sym__raw] = STATE(1764), + [sym__inline_raw] = STATE(1764), + [sym__multi_line_raw] = STATE(1764), [sym_attribute] = STATE(117), [sym__inline_directive] = STATE(117), [sym__nested_directive] = STATE(117), @@ -40476,369 +40104,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(117), [sym_verbatim] = STATE(117), [sym_stack] = STATE(117), - [sym__push] = STATE(1631), - [sym__pushOnce] = STATE(1631), - [sym__pushIf] = STATE(1631), - [sym__prepend] = STATE(1631), - [sym__prependOnce] = STATE(1631), + [sym__push] = STATE(1765), + [sym__pushOnce] = STATE(1765), + [sym__pushIf] = STATE(1765), + [sym__prepend] = STATE(1765), + [sym__prependOnce] = STATE(1765), [sym_conditional] = STATE(117), [sym_conditional_keyword] = STATE(117), - [sym__if] = STATE(1632), - [sym__unless] = STATE(1632), - [sym__isset] = STATE(1632), - [sym__empty] = STATE(1632), - [sym__auth] = STATE(1632), - [sym__guest] = STATE(1632), - [sym__production] = STATE(1632), - [sym__env] = STATE(1632), - [sym__hasSection] = STATE(1632), - [sym__sectionMissing] = STATE(1632), - [sym__error] = STATE(1632), - [sym_authorization] = STATE(1632), - [sym__can] = STATE(1633), - [sym__cannot] = STATE(1633), - [sym__canany] = STATE(1633), - [sym__feature] = STATE(1632), - [sym__custom] = STATE(1632), + [sym__if] = STATE(1766), + [sym__unless] = STATE(1766), + [sym__isset] = STATE(1766), + [sym__empty] = STATE(1766), + [sym__auth] = STATE(1766), + [sym__guest] = STATE(1766), + [sym__production] = STATE(1766), + [sym__env] = STATE(1766), + [sym__hasSection] = STATE(1766), + [sym__sectionMissing] = STATE(1766), + [sym__error] = STATE(1766), + [sym_authorization] = STATE(1766), + [sym__can] = STATE(1767), + [sym__cannot] = STATE(1767), + [sym__canany] = STATE(1767), + [sym__feature] = STATE(1766), + [sym__custom] = STATE(1766), [sym_switch] = STATE(117), [sym_loop] = STATE(117), [sym_loop_operator] = STATE(117), - [sym__for] = STATE(1634), - [sym__foreach] = STATE(1634), - [sym__forelse] = STATE(1634), - [sym__while] = STATE(1634), + [sym__for] = STATE(1768), + [sym__foreach] = STATE(1768), + [sym__forelse] = STATE(1768), + [sym__while] = STATE(1768), [sym_envoy] = STATE(117), - [sym__setup] = STATE(1630), - [sym__task] = STATE(1635), - [sym__story] = STATE(1635), - [sym__hooks] = STATE(1630), - [sym__before] = STATE(1630), - [sym__after] = STATE(1630), - [sym__envoy_error] = STATE(1630), - [sym__success] = STATE(1630), - [sym__finished] = STATE(1630), + [sym__setup] = STATE(1764), + [sym__task] = STATE(1769), + [sym__story] = STATE(1769), + [sym__hooks] = STATE(1764), + [sym__before] = STATE(1764), + [sym__after] = STATE(1764), + [sym__envoy_error] = STATE(1764), + [sym__success] = STATE(1764), + [sym__finished] = STATE(1764), [sym_livewire] = STATE(117), - [sym__persist] = STATE(1636), - [sym__teleport] = STATE(1636), - [sym__volt] = STATE(1636), + [sym__persist] = STATE(1770), + [sym__teleport] = STATE(1770), + [sym__volt] = STATE(1770), [sym_text] = STATE(117), - [sym__text] = STATE(703), - [aux_sym__if_statement_directive_body_repeat1] = STATE(117), - [aux_sym_php_only_repeat1] = STATE(703), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2181), - [aux_sym_keyword_token1] = ACTIONS(2184), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2187), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2190), - [anon_sym_ATphp] = ACTIONS(2193), - [aux_sym_attribute_token1] = ACTIONS(2196), - [aux_sym__inline_directive_token1] = ACTIONS(2199), - [anon_sym_ATfragment] = ACTIONS(2202), - [anon_sym_ATsection] = ACTIONS(2205), - [anon_sym_ATonce] = ACTIONS(2208), - [anon_sym_ATverbatim] = ACTIONS(2211), - [anon_sym_ATpush] = ACTIONS(2214), - [anon_sym_ATpushOnce] = ACTIONS(2217), - [anon_sym_ATpushIf] = ACTIONS(2220), - [anon_sym_ATprepend] = ACTIONS(2223), - [anon_sym_ATprependOnce] = ACTIONS(2226), - [anon_sym_ATelse] = ACTIONS(2229), - [aux_sym_conditional_keyword_token1] = ACTIONS(2232), - [anon_sym_ATif] = ACTIONS(2235), - [anon_sym_ATunless] = ACTIONS(2238), - [anon_sym_ATisset] = ACTIONS(2241), - [anon_sym_ATempty] = ACTIONS(2244), - [anon_sym_ATauth] = ACTIONS(2247), - [anon_sym_ATguest] = ACTIONS(2250), - [anon_sym_ATproduction] = ACTIONS(2253), - [anon_sym_ATenv] = ACTIONS(2256), - [anon_sym_ATendenv] = ACTIONS(518), - [anon_sym_AThasSection] = ACTIONS(2259), - [anon_sym_ATsectionMissing] = ACTIONS(2262), - [anon_sym_ATerror] = ACTIONS(2265), - [anon_sym_ATcan] = ACTIONS(2268), - [anon_sym_ATcannot] = ACTIONS(2271), - [anon_sym_ATcanany] = ACTIONS(2274), - [anon_sym_ATfeature] = ACTIONS(2277), - [aux_sym__custom_token1] = ACTIONS(2280), - [aux_sym__custom_token2] = ACTIONS(2283), - [anon_sym_ATswitch] = ACTIONS(2286), - [aux_sym_loop_operator_token1] = ACTIONS(2289), - [anon_sym_ATfor] = ACTIONS(2292), - [anon_sym_ATforeach] = ACTIONS(2295), - [anon_sym_ATforelse] = ACTIONS(2298), - [anon_sym_ATwhile] = ACTIONS(2301), - [anon_sym_ATsetup] = ACTIONS(2304), - [anon_sym_ATtask] = ACTIONS(2307), - [anon_sym_ATstory] = ACTIONS(2310), - [anon_sym_ATbefore] = ACTIONS(2313), - [anon_sym_ATafter] = ACTIONS(2316), - [anon_sym_ATsuccess] = ACTIONS(2319), - [anon_sym_ATfinished] = ACTIONS(2322), - [anon_sym_ATpersist] = ACTIONS(2325), - [anon_sym_ATteleport] = ACTIONS(2328), - [anon_sym_ATvolt] = ACTIONS(2331), - [aux_sym__text_token1] = ACTIONS(2334), - [aux_sym__text_token2] = ACTIONS(2334), - [aux_sym__text_token3] = ACTIONS(2337), - }, - [118] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), [sym__text] = STATE(725), + [aux_sym__if_statement_directive_body_repeat1] = STATE(117), [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(2340), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [119] = { - [sym__definition] = STATE(120), - [sym_comment] = STATE(120), - [sym_keyword] = STATE(120), - [sym_php_statement] = STATE(120), - [sym__escaped] = STATE(1180), - [sym__unescaped] = STATE(1180), - [sym__raw] = STATE(1180), - [sym__inline_raw] = STATE(1180), - [sym__multi_line_raw] = STATE(1180), - [sym_attribute] = STATE(120), - [sym__inline_directive] = STATE(120), - [sym__nested_directive] = STATE(120), - [sym_fragment] = STATE(120), - [sym_section] = STATE(120), - [sym_inlineSection] = STATE(120), - [sym_once] = STATE(120), - [sym_verbatim] = STATE(120), - [sym_stack] = STATE(120), - [sym__push] = STATE(1179), - [sym__pushOnce] = STATE(1179), - [sym__pushIf] = STATE(1179), - [sym__prepend] = STATE(1179), - [sym__prependOnce] = STATE(1179), - [sym_conditional] = STATE(120), - [sym_conditional_keyword] = STATE(120), - [sym__if] = STATE(1178), - [sym__unless] = STATE(1178), - [sym__isset] = STATE(1178), - [sym__empty] = STATE(1178), - [sym__auth] = STATE(1178), - [sym__guest] = STATE(1178), - [sym__production] = STATE(1178), - [sym__env] = STATE(1178), - [sym__hasSection] = STATE(1178), - [sym__sectionMissing] = STATE(1178), - [sym__error] = STATE(1178), - [sym_authorization] = STATE(1178), - [sym__can] = STATE(1177), - [sym__cannot] = STATE(1177), - [sym__canany] = STATE(1177), - [sym__feature] = STATE(1178), - [sym__custom] = STATE(1178), - [sym_switch] = STATE(120), - [sym_loop] = STATE(120), - [sym_loop_operator] = STATE(120), - [sym__for] = STATE(1176), - [sym__foreach] = STATE(1176), - [sym__forelse] = STATE(1176), - [sym__while] = STATE(1176), - [sym_envoy] = STATE(120), - [sym__setup] = STATE(1180), - [sym__task] = STATE(1175), - [sym__story] = STATE(1175), - [sym__hooks] = STATE(1180), - [sym__before] = STATE(1180), - [sym__after] = STATE(1180), - [sym__envoy_error] = STATE(1180), - [sym__success] = STATE(1180), - [sym__finished] = STATE(1180), - [sym_livewire] = STATE(120), - [sym__persist] = STATE(1174), - [sym__teleport] = STATE(1174), - [sym__volt] = STATE(1174), - [sym_text] = STATE(120), - [sym__text] = STATE(689), - [aux_sym__if_statement_directive_body_repeat1] = STATE(120), - [aux_sym_php_only_repeat1] = STATE(689), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2342), - [aux_sym_keyword_token1] = ACTIONS(2344), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2346), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2348), - [anon_sym_ATphp] = ACTIONS(2350), - [aux_sym_attribute_token1] = ACTIONS(2352), - [aux_sym__inline_directive_token1] = ACTIONS(2354), - [anon_sym_ATfragment] = ACTIONS(2356), - [anon_sym_ATsection] = ACTIONS(2358), - [anon_sym_ATonce] = ACTIONS(2360), - [anon_sym_ATverbatim] = ACTIONS(2362), - [anon_sym_ATpush] = ACTIONS(2364), - [anon_sym_ATpushOnce] = ACTIONS(2366), - [anon_sym_ATpushIf] = ACTIONS(2368), - [anon_sym_ATprepend] = ACTIONS(2370), - [anon_sym_ATprependOnce] = ACTIONS(2372), - [anon_sym_ATelse] = ACTIONS(2374), - [aux_sym_conditional_keyword_token1] = ACTIONS(2376), - [anon_sym_ATif] = ACTIONS(2378), - [anon_sym_ATunless] = ACTIONS(2380), - [anon_sym_ATisset] = ACTIONS(2382), - [anon_sym_ATempty] = ACTIONS(2384), - [anon_sym_ATauth] = ACTIONS(2386), - [anon_sym_ATguest] = ACTIONS(2388), - [anon_sym_ATproduction] = ACTIONS(2390), - [anon_sym_ATenv] = ACTIONS(2392), - [anon_sym_AThasSection] = ACTIONS(2394), - [anon_sym_ATsectionMissing] = ACTIONS(2396), - [anon_sym_ATerror] = ACTIONS(2398), - [anon_sym_ATcan] = ACTIONS(2400), - [anon_sym_ATcannot] = ACTIONS(2402), - [anon_sym_ATcanany] = ACTIONS(2404), - [anon_sym_ATfeature] = ACTIONS(2406), - [anon_sym_ATendfeature] = ACTIONS(660), - [aux_sym__custom_token1] = ACTIONS(2408), - [aux_sym__custom_token2] = ACTIONS(2410), - [anon_sym_ATswitch] = ACTIONS(2412), - [aux_sym_loop_operator_token1] = ACTIONS(2414), - [anon_sym_ATfor] = ACTIONS(2416), - [anon_sym_ATforeach] = ACTIONS(2418), - [anon_sym_ATforelse] = ACTIONS(2420), - [anon_sym_ATwhile] = ACTIONS(2422), - [anon_sym_ATsetup] = ACTIONS(2424), - [anon_sym_ATtask] = ACTIONS(2426), - [anon_sym_ATstory] = ACTIONS(2428), - [anon_sym_ATbefore] = ACTIONS(2430), - [anon_sym_ATafter] = ACTIONS(2432), - [anon_sym_ATsuccess] = ACTIONS(2434), - [anon_sym_ATfinished] = ACTIONS(2436), - [anon_sym_ATpersist] = ACTIONS(2438), - [anon_sym_ATteleport] = ACTIONS(2440), - [anon_sym_ATvolt] = ACTIONS(2442), - [aux_sym__text_token1] = ACTIONS(2444), - [aux_sym__text_token2] = ACTIONS(2444), - [aux_sym__text_token3] = ACTIONS(2446), + [sym_comment] = ACTIONS(2460), + [aux_sym_keyword_token1] = ACTIONS(2354), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2356), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2358), + [anon_sym_ATphp] = ACTIONS(2360), + [aux_sym_attribute_token1] = ACTIONS(2362), + [aux_sym__inline_directive_token1] = ACTIONS(2364), + [anon_sym_ATfragment] = ACTIONS(2366), + [anon_sym_ATsection] = ACTIONS(2368), + [anon_sym_ATonce] = ACTIONS(2370), + [anon_sym_ATverbatim] = ACTIONS(2372), + [anon_sym_ATpush] = ACTIONS(2374), + [anon_sym_ATpushOnce] = ACTIONS(2376), + [anon_sym_ATpushIf] = ACTIONS(2378), + [anon_sym_ATprepend] = ACTIONS(2380), + [anon_sym_ATprependOnce] = ACTIONS(2382), + [anon_sym_ATelse] = ACTIONS(2384), + [aux_sym_conditional_keyword_token1] = ACTIONS(2386), + [anon_sym_ATif] = ACTIONS(2388), + [anon_sym_ATunless] = ACTIONS(2390), + [anon_sym_ATisset] = ACTIONS(2392), + [anon_sym_ATempty] = ACTIONS(2394), + [anon_sym_ATauth] = ACTIONS(2396), + [anon_sym_ATguest] = ACTIONS(2398), + [anon_sym_ATproduction] = ACTIONS(2400), + [anon_sym_ATenv] = ACTIONS(2402), + [anon_sym_AThasSection] = ACTIONS(2404), + [anon_sym_ATsectionMissing] = ACTIONS(2406), + [anon_sym_ATerror] = ACTIONS(2408), + [anon_sym_ATcan] = ACTIONS(2410), + [anon_sym_ATendcan] = ACTIONS(706), + [anon_sym_ATcannot] = ACTIONS(2412), + [anon_sym_ATcanany] = ACTIONS(2414), + [anon_sym_ATfeature] = ACTIONS(2416), + [aux_sym__custom_token1] = ACTIONS(2418), + [aux_sym__custom_token2] = ACTIONS(2420), + [anon_sym_ATswitch] = ACTIONS(2422), + [aux_sym_loop_operator_token1] = ACTIONS(2424), + [anon_sym_ATfor] = ACTIONS(2426), + [anon_sym_ATforeach] = ACTIONS(2428), + [anon_sym_ATforelse] = ACTIONS(2430), + [anon_sym_ATwhile] = ACTIONS(2432), + [anon_sym_ATsetup] = ACTIONS(2434), + [anon_sym_ATtask] = ACTIONS(2436), + [anon_sym_ATstory] = ACTIONS(2438), + [anon_sym_ATbefore] = ACTIONS(2440), + [anon_sym_ATafter] = ACTIONS(2442), + [anon_sym_ATsuccess] = ACTIONS(2444), + [anon_sym_ATfinished] = ACTIONS(2446), + [anon_sym_ATpersist] = ACTIONS(2448), + [anon_sym_ATteleport] = ACTIONS(2450), + [anon_sym_ATvolt] = ACTIONS(2452), + [aux_sym__text_token1] = ACTIONS(2454), + [aux_sym__text_token2] = ACTIONS(2454), + [aux_sym__text_token3] = ACTIONS(2456), }, [120] = { [sym__definition] = STATE(125), - [sym_comment] = STATE(125), [sym_keyword] = STATE(125), [sym_php_statement] = STATE(125), - [sym__escaped] = STATE(1180), - [sym__unescaped] = STATE(1180), - [sym__raw] = STATE(1180), - [sym__inline_raw] = STATE(1180), - [sym__multi_line_raw] = STATE(1180), + [sym__escaped] = STATE(1175), + [sym__unescaped] = STATE(1175), + [sym__raw] = STATE(1175), + [sym__inline_raw] = STATE(1175), + [sym__multi_line_raw] = STATE(1175), [sym_attribute] = STATE(125), [sym__inline_directive] = STATE(125), [sym__nested_directive] = STATE(125), @@ -40848,121 +40227,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(125), [sym_verbatim] = STATE(125), [sym_stack] = STATE(125), - [sym__push] = STATE(1179), - [sym__pushOnce] = STATE(1179), - [sym__pushIf] = STATE(1179), - [sym__prepend] = STATE(1179), - [sym__prependOnce] = STATE(1179), + [sym__push] = STATE(1174), + [sym__pushOnce] = STATE(1174), + [sym__pushIf] = STATE(1174), + [sym__prepend] = STATE(1174), + [sym__prependOnce] = STATE(1174), [sym_conditional] = STATE(125), [sym_conditional_keyword] = STATE(125), - [sym__if] = STATE(1178), - [sym__unless] = STATE(1178), - [sym__isset] = STATE(1178), - [sym__empty] = STATE(1178), - [sym__auth] = STATE(1178), - [sym__guest] = STATE(1178), - [sym__production] = STATE(1178), - [sym__env] = STATE(1178), - [sym__hasSection] = STATE(1178), - [sym__sectionMissing] = STATE(1178), - [sym__error] = STATE(1178), - [sym_authorization] = STATE(1178), - [sym__can] = STATE(1177), - [sym__cannot] = STATE(1177), - [sym__canany] = STATE(1177), - [sym__feature] = STATE(1178), - [sym__custom] = STATE(1178), + [sym__if] = STATE(1173), + [sym__unless] = STATE(1173), + [sym__isset] = STATE(1173), + [sym__empty] = STATE(1173), + [sym__auth] = STATE(1173), + [sym__guest] = STATE(1173), + [sym__production] = STATE(1173), + [sym__env] = STATE(1173), + [sym__hasSection] = STATE(1173), + [sym__sectionMissing] = STATE(1173), + [sym__error] = STATE(1173), + [sym_authorization] = STATE(1173), + [sym__can] = STATE(1172), + [sym__cannot] = STATE(1172), + [sym__canany] = STATE(1172), + [sym__feature] = STATE(1173), + [sym__custom] = STATE(1173), [sym_switch] = STATE(125), [sym_loop] = STATE(125), [sym_loop_operator] = STATE(125), - [sym__for] = STATE(1176), - [sym__foreach] = STATE(1176), - [sym__forelse] = STATE(1176), - [sym__while] = STATE(1176), + [sym__for] = STATE(1171), + [sym__foreach] = STATE(1171), + [sym__forelse] = STATE(1171), + [sym__while] = STATE(1171), [sym_envoy] = STATE(125), - [sym__setup] = STATE(1180), - [sym__task] = STATE(1175), - [sym__story] = STATE(1175), - [sym__hooks] = STATE(1180), - [sym__before] = STATE(1180), - [sym__after] = STATE(1180), - [sym__envoy_error] = STATE(1180), - [sym__success] = STATE(1180), - [sym__finished] = STATE(1180), + [sym__setup] = STATE(1175), + [sym__task] = STATE(1170), + [sym__story] = STATE(1170), + [sym__hooks] = STATE(1175), + [sym__before] = STATE(1175), + [sym__after] = STATE(1175), + [sym__envoy_error] = STATE(1175), + [sym__success] = STATE(1175), + [sym__finished] = STATE(1175), [sym_livewire] = STATE(125), - [sym__persist] = STATE(1174), - [sym__teleport] = STATE(1174), - [sym__volt] = STATE(1174), + [sym__persist] = STATE(1168), + [sym__teleport] = STATE(1168), + [sym__volt] = STATE(1168), [sym_text] = STATE(125), - [sym__text] = STATE(689), + [sym__text] = STATE(683), [aux_sym__if_statement_directive_body_repeat1] = STATE(125), - [aux_sym_php_only_repeat1] = STATE(689), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2342), - [aux_sym_keyword_token1] = ACTIONS(2344), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2346), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2348), - [anon_sym_ATphp] = ACTIONS(2350), - [aux_sym_attribute_token1] = ACTIONS(2352), - [aux_sym__inline_directive_token1] = ACTIONS(2354), - [anon_sym_ATfragment] = ACTIONS(2356), - [anon_sym_ATsection] = ACTIONS(2358), - [anon_sym_ATonce] = ACTIONS(2360), - [anon_sym_ATverbatim] = ACTIONS(2362), - [anon_sym_ATpush] = ACTIONS(2364), - [anon_sym_ATpushOnce] = ACTIONS(2366), - [anon_sym_ATpushIf] = ACTIONS(2368), - [anon_sym_ATprepend] = ACTIONS(2370), - [anon_sym_ATprependOnce] = ACTIONS(2372), - [anon_sym_ATelse] = ACTIONS(2374), - [aux_sym_conditional_keyword_token1] = ACTIONS(2376), - [anon_sym_ATif] = ACTIONS(2378), - [anon_sym_ATunless] = ACTIONS(2380), - [anon_sym_ATisset] = ACTIONS(2382), - [anon_sym_ATempty] = ACTIONS(2384), - [anon_sym_ATauth] = ACTIONS(2386), - [anon_sym_ATguest] = ACTIONS(2388), - [anon_sym_ATproduction] = ACTIONS(2390), - [anon_sym_ATenv] = ACTIONS(2392), - [anon_sym_AThasSection] = ACTIONS(2394), - [anon_sym_ATsectionMissing] = ACTIONS(2396), - [anon_sym_ATerror] = ACTIONS(2398), - [anon_sym_ATcan] = ACTIONS(2400), - [anon_sym_ATcannot] = ACTIONS(2402), - [anon_sym_ATcanany] = ACTIONS(2404), - [anon_sym_ATfeature] = ACTIONS(2406), - [anon_sym_ATendfeature] = ACTIONS(706), - [aux_sym__custom_token1] = ACTIONS(2408), - [aux_sym__custom_token2] = ACTIONS(2410), - [anon_sym_ATswitch] = ACTIONS(2412), - [aux_sym_loop_operator_token1] = ACTIONS(2414), - [anon_sym_ATfor] = ACTIONS(2416), - [anon_sym_ATforeach] = ACTIONS(2418), - [anon_sym_ATforelse] = ACTIONS(2420), - [anon_sym_ATwhile] = ACTIONS(2422), - [anon_sym_ATsetup] = ACTIONS(2424), - [anon_sym_ATtask] = ACTIONS(2426), - [anon_sym_ATstory] = ACTIONS(2428), - [anon_sym_ATbefore] = ACTIONS(2430), - [anon_sym_ATafter] = ACTIONS(2432), - [anon_sym_ATsuccess] = ACTIONS(2434), - [anon_sym_ATfinished] = ACTIONS(2436), - [anon_sym_ATpersist] = ACTIONS(2438), - [anon_sym_ATteleport] = ACTIONS(2440), - [anon_sym_ATvolt] = ACTIONS(2442), - [aux_sym__text_token1] = ACTIONS(2444), - [aux_sym__text_token2] = ACTIONS(2444), - [aux_sym__text_token3] = ACTIONS(2446), + [aux_sym_php_only_repeat1] = STATE(683), + [sym_comment] = ACTIONS(2462), + [aux_sym_keyword_token1] = ACTIONS(1095), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1099), + [anon_sym_ATphp] = ACTIONS(1101), + [aux_sym_attribute_token1] = ACTIONS(1103), + [aux_sym__inline_directive_token1] = ACTIONS(1105), + [anon_sym_ATfragment] = ACTIONS(1107), + [anon_sym_ATsection] = ACTIONS(1109), + [anon_sym_ATonce] = ACTIONS(1111), + [anon_sym_ATverbatim] = ACTIONS(1113), + [anon_sym_ATpush] = ACTIONS(1115), + [anon_sym_ATpushOnce] = ACTIONS(1117), + [anon_sym_ATpushIf] = ACTIONS(1119), + [anon_sym_ATprepend] = ACTIONS(1121), + [anon_sym_ATprependOnce] = ACTIONS(1123), + [anon_sym_ATelse] = ACTIONS(1125), + [aux_sym_conditional_keyword_token1] = ACTIONS(1127), + [anon_sym_ATif] = ACTIONS(1129), + [anon_sym_ATunless] = ACTIONS(1131), + [anon_sym_ATisset] = ACTIONS(1133), + [anon_sym_ATempty] = ACTIONS(1135), + [anon_sym_ATauth] = ACTIONS(1137), + [anon_sym_ATguest] = ACTIONS(1139), + [anon_sym_ATproduction] = ACTIONS(1141), + [anon_sym_ATenv] = ACTIONS(1143), + [anon_sym_AThasSection] = ACTIONS(1145), + [anon_sym_ATsectionMissing] = ACTIONS(1147), + [anon_sym_ATerror] = ACTIONS(1149), + [anon_sym_ATcan] = ACTIONS(1151), + [anon_sym_ATcannot] = ACTIONS(1153), + [anon_sym_ATcanany] = ACTIONS(1155), + [anon_sym_ATfeature] = ACTIONS(1157), + [anon_sym_ATendfeature] = ACTIONS(497), + [aux_sym__custom_token1] = ACTIONS(1159), + [aux_sym__custom_token2] = ACTIONS(1161), + [anon_sym_ATswitch] = ACTIONS(1163), + [aux_sym_loop_operator_token1] = ACTIONS(1165), + [anon_sym_ATfor] = ACTIONS(1167), + [anon_sym_ATforeach] = ACTIONS(1169), + [anon_sym_ATforelse] = ACTIONS(1171), + [anon_sym_ATwhile] = ACTIONS(1173), + [anon_sym_ATsetup] = ACTIONS(1175), + [anon_sym_ATtask] = ACTIONS(1177), + [anon_sym_ATstory] = ACTIONS(1179), + [anon_sym_ATbefore] = ACTIONS(1181), + [anon_sym_ATafter] = ACTIONS(1183), + [anon_sym_ATsuccess] = ACTIONS(1185), + [anon_sym_ATfinished] = ACTIONS(1187), + [anon_sym_ATpersist] = ACTIONS(1189), + [anon_sym_ATteleport] = ACTIONS(1191), + [anon_sym_ATvolt] = ACTIONS(1193), + [aux_sym__text_token1] = ACTIONS(1195), + [aux_sym__text_token2] = ACTIONS(1195), + [aux_sym__text_token3] = ACTIONS(1197), }, [121] = { [sym__definition] = STATE(121), - [sym_comment] = STATE(121), [sym_keyword] = STATE(121), [sym_php_statement] = STATE(121), - [sym__escaped] = STATE(1885), - [sym__unescaped] = STATE(1885), - [sym__raw] = STATE(1885), - [sym__inline_raw] = STATE(1885), - [sym__multi_line_raw] = STATE(1885), + [sym__escaped] = STATE(1847), + [sym__unescaped] = STATE(1847), + [sym__raw] = STATE(1847), + [sym__inline_raw] = STATE(1847), + [sym__multi_line_raw] = STATE(1847), [sym_attribute] = STATE(121), [sym__inline_directive] = STATE(121), [sym__nested_directive] = STATE(121), @@ -40972,121 +40350,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(121), [sym_verbatim] = STATE(121), [sym_stack] = STATE(121), - [sym__push] = STATE(1886), - [sym__pushOnce] = STATE(1886), - [sym__pushIf] = STATE(1886), - [sym__prepend] = STATE(1886), - [sym__prependOnce] = STATE(1886), + [sym__push] = STATE(1848), + [sym__pushOnce] = STATE(1848), + [sym__pushIf] = STATE(1848), + [sym__prepend] = STATE(1848), + [sym__prependOnce] = STATE(1848), [sym_conditional] = STATE(121), [sym_conditional_keyword] = STATE(121), - [sym__if] = STATE(1887), - [sym__unless] = STATE(1887), - [sym__isset] = STATE(1887), - [sym__empty] = STATE(1887), - [sym__auth] = STATE(1887), - [sym__guest] = STATE(1887), - [sym__production] = STATE(1887), - [sym__env] = STATE(1887), - [sym__hasSection] = STATE(1887), - [sym__sectionMissing] = STATE(1887), - [sym__error] = STATE(1887), - [sym_authorization] = STATE(1887), - [sym__can] = STATE(1888), - [sym__cannot] = STATE(1888), - [sym__canany] = STATE(1888), - [sym__feature] = STATE(1887), - [sym__custom] = STATE(1887), + [sym__if] = STATE(1849), + [sym__unless] = STATE(1849), + [sym__isset] = STATE(1849), + [sym__empty] = STATE(1849), + [sym__auth] = STATE(1849), + [sym__guest] = STATE(1849), + [sym__production] = STATE(1849), + [sym__env] = STATE(1849), + [sym__hasSection] = STATE(1849), + [sym__sectionMissing] = STATE(1849), + [sym__error] = STATE(1849), + [sym_authorization] = STATE(1849), + [sym__can] = STATE(1850), + [sym__cannot] = STATE(1850), + [sym__canany] = STATE(1850), + [sym__feature] = STATE(1849), + [sym__custom] = STATE(1849), [sym_switch] = STATE(121), [sym_loop] = STATE(121), [sym_loop_operator] = STATE(121), - [sym__for] = STATE(1889), - [sym__foreach] = STATE(1889), - [sym__forelse] = STATE(1889), - [sym__while] = STATE(1889), + [sym__for] = STATE(1851), + [sym__foreach] = STATE(1851), + [sym__forelse] = STATE(1851), + [sym__while] = STATE(1851), [sym_envoy] = STATE(121), - [sym__setup] = STATE(1885), - [sym__task] = STATE(1890), - [sym__story] = STATE(1890), - [sym__hooks] = STATE(1885), - [sym__before] = STATE(1885), - [sym__after] = STATE(1885), - [sym__envoy_error] = STATE(1885), - [sym__success] = STATE(1885), - [sym__finished] = STATE(1885), + [sym__setup] = STATE(1847), + [sym__task] = STATE(1852), + [sym__story] = STATE(1852), + [sym__hooks] = STATE(1847), + [sym__before] = STATE(1847), + [sym__after] = STATE(1847), + [sym__envoy_error] = STATE(1847), + [sym__success] = STATE(1847), + [sym__finished] = STATE(1847), [sym_livewire] = STATE(121), - [sym__persist] = STATE(1891), - [sym__teleport] = STATE(1891), - [sym__volt] = STATE(1891), + [sym__persist] = STATE(1853), + [sym__teleport] = STATE(1853), + [sym__volt] = STATE(1853), [sym_text] = STATE(121), - [sym__text] = STATE(680), + [sym__text] = STATE(712), [aux_sym__if_statement_directive_body_repeat1] = STATE(121), - [aux_sym_php_only_repeat1] = STATE(680), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2448), - [aux_sym_keyword_token1] = ACTIONS(2451), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2454), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2457), - [anon_sym_ATphp] = ACTIONS(2460), - [aux_sym_attribute_token1] = ACTIONS(2463), - [aux_sym__inline_directive_token1] = ACTIONS(2466), - [anon_sym_ATfragment] = ACTIONS(2469), - [anon_sym_ATsection] = ACTIONS(2472), - [anon_sym_ATonce] = ACTIONS(2475), - [anon_sym_ATverbatim] = ACTIONS(2478), - [anon_sym_ATpush] = ACTIONS(2481), - [anon_sym_ATpushOnce] = ACTIONS(2484), - [anon_sym_ATpushIf] = ACTIONS(2487), - [anon_sym_ATprepend] = ACTIONS(2490), - [anon_sym_ATprependOnce] = ACTIONS(2493), - [anon_sym_ATelse] = ACTIONS(2496), - [aux_sym_conditional_keyword_token1] = ACTIONS(2499), - [anon_sym_ATif] = ACTIONS(2502), - [anon_sym_ATunless] = ACTIONS(2505), - [anon_sym_ATisset] = ACTIONS(2508), - [anon_sym_ATempty] = ACTIONS(2511), - [anon_sym_ATauth] = ACTIONS(2514), - [anon_sym_ATguest] = ACTIONS(2517), - [anon_sym_ATproduction] = ACTIONS(2520), - [anon_sym_ATenv] = ACTIONS(2523), - [anon_sym_AThasSection] = ACTIONS(2526), - [anon_sym_ATsectionMissing] = ACTIONS(2529), - [anon_sym_ATerror] = ACTIONS(2532), - [anon_sym_ATcan] = ACTIONS(2535), - [anon_sym_ATcannot] = ACTIONS(2538), - [anon_sym_ATendcannot] = ACTIONS(518), - [anon_sym_ATcanany] = ACTIONS(2541), - [anon_sym_ATfeature] = ACTIONS(2544), - [aux_sym__custom_token1] = ACTIONS(2547), - [aux_sym__custom_token2] = ACTIONS(2550), - [anon_sym_ATswitch] = ACTIONS(2553), - [aux_sym_loop_operator_token1] = ACTIONS(2556), - [anon_sym_ATfor] = ACTIONS(2559), - [anon_sym_ATforeach] = ACTIONS(2562), - [anon_sym_ATforelse] = ACTIONS(2565), - [anon_sym_ATwhile] = ACTIONS(2568), - [anon_sym_ATsetup] = ACTIONS(2571), - [anon_sym_ATtask] = ACTIONS(2574), - [anon_sym_ATstory] = ACTIONS(2577), - [anon_sym_ATbefore] = ACTIONS(2580), - [anon_sym_ATafter] = ACTIONS(2583), - [anon_sym_ATsuccess] = ACTIONS(2586), - [anon_sym_ATfinished] = ACTIONS(2589), - [anon_sym_ATpersist] = ACTIONS(2592), - [anon_sym_ATteleport] = ACTIONS(2595), - [anon_sym_ATvolt] = ACTIONS(2598), - [aux_sym__text_token1] = ACTIONS(2601), - [aux_sym__text_token2] = ACTIONS(2601), - [aux_sym__text_token3] = ACTIONS(2604), + [aux_sym_php_only_repeat1] = STATE(712), + [sym_comment] = ACTIONS(2464), + [aux_sym_keyword_token1] = ACTIONS(2467), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2470), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2473), + [anon_sym_ATphp] = ACTIONS(2476), + [aux_sym_attribute_token1] = ACTIONS(2479), + [aux_sym__inline_directive_token1] = ACTIONS(2482), + [anon_sym_ATfragment] = ACTIONS(2485), + [anon_sym_ATsection] = ACTIONS(2488), + [anon_sym_ATonce] = ACTIONS(2491), + [anon_sym_ATverbatim] = ACTIONS(2494), + [anon_sym_ATpush] = ACTIONS(2497), + [anon_sym_ATpushOnce] = ACTIONS(2500), + [anon_sym_ATpushIf] = ACTIONS(2503), + [anon_sym_ATprepend] = ACTIONS(2506), + [anon_sym_ATprependOnce] = ACTIONS(2509), + [anon_sym_ATelse] = ACTIONS(2512), + [aux_sym_conditional_keyword_token1] = ACTIONS(2515), + [anon_sym_ATif] = ACTIONS(2518), + [anon_sym_ATunless] = ACTIONS(2521), + [anon_sym_ATisset] = ACTIONS(2524), + [anon_sym_ATempty] = ACTIONS(2527), + [anon_sym_ATauth] = ACTIONS(2530), + [anon_sym_ATguest] = ACTIONS(2533), + [anon_sym_ATproduction] = ACTIONS(2536), + [anon_sym_ATenv] = ACTIONS(2539), + [anon_sym_AThasSection] = ACTIONS(2542), + [anon_sym_ATsectionMissing] = ACTIONS(2545), + [anon_sym_ATerror] = ACTIONS(2548), + [anon_sym_ATcan] = ACTIONS(2551), + [anon_sym_ATcannot] = ACTIONS(2554), + [anon_sym_ATendcannot] = ACTIONS(633), + [anon_sym_ATcanany] = ACTIONS(2557), + [anon_sym_ATfeature] = ACTIONS(2560), + [aux_sym__custom_token1] = ACTIONS(2563), + [aux_sym__custom_token2] = ACTIONS(2566), + [anon_sym_ATswitch] = ACTIONS(2569), + [aux_sym_loop_operator_token1] = ACTIONS(2572), + [anon_sym_ATfor] = ACTIONS(2575), + [anon_sym_ATforeach] = ACTIONS(2578), + [anon_sym_ATforelse] = ACTIONS(2581), + [anon_sym_ATwhile] = ACTIONS(2584), + [anon_sym_ATsetup] = ACTIONS(2587), + [anon_sym_ATtask] = ACTIONS(2590), + [anon_sym_ATstory] = ACTIONS(2593), + [anon_sym_ATbefore] = ACTIONS(2596), + [anon_sym_ATafter] = ACTIONS(2599), + [anon_sym_ATsuccess] = ACTIONS(2602), + [anon_sym_ATfinished] = ACTIONS(2605), + [anon_sym_ATpersist] = ACTIONS(2608), + [anon_sym_ATteleport] = ACTIONS(2611), + [anon_sym_ATvolt] = ACTIONS(2614), + [aux_sym__text_token1] = ACTIONS(2617), + [aux_sym__text_token2] = ACTIONS(2617), + [aux_sym__text_token3] = ACTIONS(2620), }, [122] = { [sym__definition] = STATE(123), - [sym_comment] = STATE(123), [sym_keyword] = STATE(123), [sym_php_statement] = STATE(123), - [sym__escaped] = STATE(1084), - [sym__unescaped] = STATE(1084), - [sym__raw] = STATE(1084), - [sym__inline_raw] = STATE(1084), - [sym__multi_line_raw] = STATE(1084), + [sym__escaped] = STATE(1088), + [sym__unescaped] = STATE(1088), + [sym__raw] = STATE(1088), + [sym__inline_raw] = STATE(1088), + [sym__multi_line_raw] = STATE(1088), [sym_attribute] = STATE(123), [sym__inline_directive] = STATE(123), [sym__nested_directive] = STATE(123), @@ -41096,121 +40473,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(123), [sym_verbatim] = STATE(123), [sym_stack] = STATE(123), - [sym__push] = STATE(1083), - [sym__pushOnce] = STATE(1083), - [sym__pushIf] = STATE(1083), - [sym__prepend] = STATE(1083), - [sym__prependOnce] = STATE(1083), + [sym__push] = STATE(1087), + [sym__pushOnce] = STATE(1087), + [sym__pushIf] = STATE(1087), + [sym__prepend] = STATE(1087), + [sym__prependOnce] = STATE(1087), [sym_conditional] = STATE(123), [sym_conditional_keyword] = STATE(123), - [sym__if] = STATE(1082), - [sym__unless] = STATE(1082), - [sym__isset] = STATE(1082), - [sym__empty] = STATE(1082), - [sym__auth] = STATE(1082), - [sym__guest] = STATE(1082), - [sym__production] = STATE(1082), - [sym__env] = STATE(1082), - [sym__hasSection] = STATE(1082), - [sym__sectionMissing] = STATE(1082), - [sym__error] = STATE(1082), - [sym_authorization] = STATE(1082), - [sym__can] = STATE(1081), - [sym__cannot] = STATE(1081), - [sym__canany] = STATE(1081), - [sym__feature] = STATE(1082), - [sym__custom] = STATE(1082), + [sym__if] = STATE(1086), + [sym__unless] = STATE(1086), + [sym__isset] = STATE(1086), + [sym__empty] = STATE(1086), + [sym__auth] = STATE(1086), + [sym__guest] = STATE(1086), + [sym__production] = STATE(1086), + [sym__env] = STATE(1086), + [sym__hasSection] = STATE(1086), + [sym__sectionMissing] = STATE(1086), + [sym__error] = STATE(1086), + [sym_authorization] = STATE(1086), + [sym__can] = STATE(1085), + [sym__cannot] = STATE(1085), + [sym__canany] = STATE(1085), + [sym__feature] = STATE(1086), + [sym__custom] = STATE(1086), [sym_switch] = STATE(123), [sym_loop] = STATE(123), [sym_loop_operator] = STATE(123), - [sym__for] = STATE(1080), - [sym__foreach] = STATE(1080), - [sym__forelse] = STATE(1080), - [sym__while] = STATE(1080), + [sym__for] = STATE(1084), + [sym__foreach] = STATE(1084), + [sym__forelse] = STATE(1084), + [sym__while] = STATE(1084), [sym_envoy] = STATE(123), - [sym__setup] = STATE(1084), - [sym__task] = STATE(1078), - [sym__story] = STATE(1078), - [sym__hooks] = STATE(1084), - [sym__before] = STATE(1084), - [sym__after] = STATE(1084), - [sym__envoy_error] = STATE(1084), - [sym__success] = STATE(1084), - [sym__finished] = STATE(1084), + [sym__setup] = STATE(1088), + [sym__task] = STATE(1083), + [sym__story] = STATE(1083), + [sym__hooks] = STATE(1088), + [sym__before] = STATE(1088), + [sym__after] = STATE(1088), + [sym__envoy_error] = STATE(1088), + [sym__success] = STATE(1088), + [sym__finished] = STATE(1088), [sym_livewire] = STATE(123), - [sym__persist] = STATE(1077), - [sym__teleport] = STATE(1077), - [sym__volt] = STATE(1077), + [sym__persist] = STATE(1082), + [sym__teleport] = STATE(1082), + [sym__volt] = STATE(1082), [sym_text] = STATE(123), - [sym__text] = STATE(694), + [sym__text] = STATE(688), [aux_sym__if_statement_directive_body_repeat1] = STATE(123), - [aux_sym_php_only_repeat1] = STATE(694), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2607), - [aux_sym_keyword_token1] = ACTIONS(2609), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2613), - [anon_sym_ATphp] = ACTIONS(2615), - [aux_sym_attribute_token1] = ACTIONS(2617), - [aux_sym__inline_directive_token1] = ACTIONS(2619), - [anon_sym_ATfragment] = ACTIONS(2621), - [anon_sym_ATsection] = ACTIONS(2623), - [anon_sym_ATonce] = ACTIONS(2625), - [anon_sym_ATverbatim] = ACTIONS(2627), - [anon_sym_ATpush] = ACTIONS(2629), - [anon_sym_ATpushOnce] = ACTIONS(2631), - [anon_sym_ATpushIf] = ACTIONS(2633), - [anon_sym_ATprepend] = ACTIONS(2635), - [anon_sym_ATprependOnce] = ACTIONS(2637), - [anon_sym_ATelse] = ACTIONS(2639), - [aux_sym_conditional_keyword_token1] = ACTIONS(2641), - [anon_sym_ATif] = ACTIONS(2643), - [anon_sym_ATunless] = ACTIONS(2645), - [anon_sym_ATisset] = ACTIONS(2647), - [anon_sym_ATempty] = ACTIONS(2649), - [anon_sym_ATauth] = ACTIONS(2651), - [anon_sym_ATguest] = ACTIONS(2653), - [anon_sym_ATproduction] = ACTIONS(2655), - [anon_sym_ATenv] = ACTIONS(2657), - [anon_sym_AThasSection] = ACTIONS(2659), - [anon_sym_ATsectionMissing] = ACTIONS(2661), - [anon_sym_ATerror] = ACTIONS(2663), - [anon_sym_ATcan] = ACTIONS(2665), - [anon_sym_ATcannot] = ACTIONS(2667), - [anon_sym_ATcanany] = ACTIONS(2669), - [anon_sym_ATfeature] = ACTIONS(2671), - [aux_sym__custom_token1] = ACTIONS(2673), - [aux_sym__custom_token2] = ACTIONS(2675), - [aux_sym__custom_token3] = ACTIONS(660), - [anon_sym_ATswitch] = ACTIONS(2677), - [aux_sym_loop_operator_token1] = ACTIONS(2679), - [anon_sym_ATfor] = ACTIONS(2681), - [anon_sym_ATforeach] = ACTIONS(2683), - [anon_sym_ATforelse] = ACTIONS(2685), - [anon_sym_ATwhile] = ACTIONS(2687), - [anon_sym_ATsetup] = ACTIONS(2689), - [anon_sym_ATtask] = ACTIONS(2691), - [anon_sym_ATstory] = ACTIONS(2693), - [anon_sym_ATbefore] = ACTIONS(2695), - [anon_sym_ATafter] = ACTIONS(2697), - [anon_sym_ATsuccess] = ACTIONS(2699), - [anon_sym_ATfinished] = ACTIONS(2701), - [anon_sym_ATpersist] = ACTIONS(2703), - [anon_sym_ATteleport] = ACTIONS(2705), - [anon_sym_ATvolt] = ACTIONS(2707), - [aux_sym__text_token1] = ACTIONS(2709), - [aux_sym__text_token2] = ACTIONS(2709), - [aux_sym__text_token3] = ACTIONS(2711), + [aux_sym_php_only_repeat1] = STATE(688), + [sym_comment] = ACTIONS(2623), + [aux_sym_keyword_token1] = ACTIONS(2625), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2629), + [anon_sym_ATphp] = ACTIONS(2631), + [aux_sym_attribute_token1] = ACTIONS(2633), + [aux_sym__inline_directive_token1] = ACTIONS(2635), + [anon_sym_ATfragment] = ACTIONS(2637), + [anon_sym_ATsection] = ACTIONS(2639), + [anon_sym_ATonce] = ACTIONS(2641), + [anon_sym_ATverbatim] = ACTIONS(2643), + [anon_sym_ATpush] = ACTIONS(2645), + [anon_sym_ATpushOnce] = ACTIONS(2647), + [anon_sym_ATpushIf] = ACTIONS(2649), + [anon_sym_ATprepend] = ACTIONS(2651), + [anon_sym_ATprependOnce] = ACTIONS(2653), + [anon_sym_ATelse] = ACTIONS(2655), + [aux_sym_conditional_keyword_token1] = ACTIONS(2657), + [anon_sym_ATif] = ACTIONS(2659), + [anon_sym_ATunless] = ACTIONS(2661), + [anon_sym_ATisset] = ACTIONS(2663), + [anon_sym_ATempty] = ACTIONS(2665), + [anon_sym_ATauth] = ACTIONS(2667), + [anon_sym_ATguest] = ACTIONS(2669), + [anon_sym_ATproduction] = ACTIONS(2671), + [anon_sym_ATenv] = ACTIONS(2673), + [anon_sym_AThasSection] = ACTIONS(2675), + [anon_sym_ATsectionMissing] = ACTIONS(2677), + [anon_sym_ATerror] = ACTIONS(2679), + [anon_sym_ATcan] = ACTIONS(2681), + [anon_sym_ATcannot] = ACTIONS(2683), + [anon_sym_ATcanany] = ACTIONS(2685), + [anon_sym_ATfeature] = ACTIONS(2687), + [aux_sym__custom_token1] = ACTIONS(2689), + [aux_sym__custom_token2] = ACTIONS(2691), + [aux_sym__custom_token3] = ACTIONS(706), + [anon_sym_ATswitch] = ACTIONS(2693), + [aux_sym_loop_operator_token1] = ACTIONS(2695), + [anon_sym_ATfor] = ACTIONS(2697), + [anon_sym_ATforeach] = ACTIONS(2699), + [anon_sym_ATforelse] = ACTIONS(2701), + [anon_sym_ATwhile] = ACTIONS(2703), + [anon_sym_ATsetup] = ACTIONS(2705), + [anon_sym_ATtask] = ACTIONS(2707), + [anon_sym_ATstory] = ACTIONS(2709), + [anon_sym_ATbefore] = ACTIONS(2711), + [anon_sym_ATafter] = ACTIONS(2713), + [anon_sym_ATsuccess] = ACTIONS(2715), + [anon_sym_ATfinished] = ACTIONS(2717), + [anon_sym_ATpersist] = ACTIONS(2719), + [anon_sym_ATteleport] = ACTIONS(2721), + [anon_sym_ATvolt] = ACTIONS(2723), + [aux_sym__text_token1] = ACTIONS(2725), + [aux_sym__text_token2] = ACTIONS(2725), + [aux_sym__text_token3] = ACTIONS(2727), }, [123] = { [sym__definition] = STATE(126), - [sym_comment] = STATE(126), [sym_keyword] = STATE(126), [sym_php_statement] = STATE(126), - [sym__escaped] = STATE(1084), - [sym__unescaped] = STATE(1084), - [sym__raw] = STATE(1084), - [sym__inline_raw] = STATE(1084), - [sym__multi_line_raw] = STATE(1084), + [sym__escaped] = STATE(1088), + [sym__unescaped] = STATE(1088), + [sym__raw] = STATE(1088), + [sym__inline_raw] = STATE(1088), + [sym__multi_line_raw] = STATE(1088), [sym_attribute] = STATE(126), [sym__inline_directive] = STATE(126), [sym__nested_directive] = STATE(126), @@ -41220,121 +40596,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(126), [sym_verbatim] = STATE(126), [sym_stack] = STATE(126), - [sym__push] = STATE(1083), - [sym__pushOnce] = STATE(1083), - [sym__pushIf] = STATE(1083), - [sym__prepend] = STATE(1083), - [sym__prependOnce] = STATE(1083), + [sym__push] = STATE(1087), + [sym__pushOnce] = STATE(1087), + [sym__pushIf] = STATE(1087), + [sym__prepend] = STATE(1087), + [sym__prependOnce] = STATE(1087), [sym_conditional] = STATE(126), [sym_conditional_keyword] = STATE(126), - [sym__if] = STATE(1082), - [sym__unless] = STATE(1082), - [sym__isset] = STATE(1082), - [sym__empty] = STATE(1082), - [sym__auth] = STATE(1082), - [sym__guest] = STATE(1082), - [sym__production] = STATE(1082), - [sym__env] = STATE(1082), - [sym__hasSection] = STATE(1082), - [sym__sectionMissing] = STATE(1082), - [sym__error] = STATE(1082), - [sym_authorization] = STATE(1082), - [sym__can] = STATE(1081), - [sym__cannot] = STATE(1081), - [sym__canany] = STATE(1081), - [sym__feature] = STATE(1082), - [sym__custom] = STATE(1082), + [sym__if] = STATE(1086), + [sym__unless] = STATE(1086), + [sym__isset] = STATE(1086), + [sym__empty] = STATE(1086), + [sym__auth] = STATE(1086), + [sym__guest] = STATE(1086), + [sym__production] = STATE(1086), + [sym__env] = STATE(1086), + [sym__hasSection] = STATE(1086), + [sym__sectionMissing] = STATE(1086), + [sym__error] = STATE(1086), + [sym_authorization] = STATE(1086), + [sym__can] = STATE(1085), + [sym__cannot] = STATE(1085), + [sym__canany] = STATE(1085), + [sym__feature] = STATE(1086), + [sym__custom] = STATE(1086), [sym_switch] = STATE(126), [sym_loop] = STATE(126), [sym_loop_operator] = STATE(126), - [sym__for] = STATE(1080), - [sym__foreach] = STATE(1080), - [sym__forelse] = STATE(1080), - [sym__while] = STATE(1080), + [sym__for] = STATE(1084), + [sym__foreach] = STATE(1084), + [sym__forelse] = STATE(1084), + [sym__while] = STATE(1084), [sym_envoy] = STATE(126), - [sym__setup] = STATE(1084), - [sym__task] = STATE(1078), - [sym__story] = STATE(1078), - [sym__hooks] = STATE(1084), - [sym__before] = STATE(1084), - [sym__after] = STATE(1084), - [sym__envoy_error] = STATE(1084), - [sym__success] = STATE(1084), - [sym__finished] = STATE(1084), + [sym__setup] = STATE(1088), + [sym__task] = STATE(1083), + [sym__story] = STATE(1083), + [sym__hooks] = STATE(1088), + [sym__before] = STATE(1088), + [sym__after] = STATE(1088), + [sym__envoy_error] = STATE(1088), + [sym__success] = STATE(1088), + [sym__finished] = STATE(1088), [sym_livewire] = STATE(126), - [sym__persist] = STATE(1077), - [sym__teleport] = STATE(1077), - [sym__volt] = STATE(1077), + [sym__persist] = STATE(1082), + [sym__teleport] = STATE(1082), + [sym__volt] = STATE(1082), [sym_text] = STATE(126), - [sym__text] = STATE(694), + [sym__text] = STATE(688), [aux_sym__if_statement_directive_body_repeat1] = STATE(126), - [aux_sym_php_only_repeat1] = STATE(694), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2607), - [aux_sym_keyword_token1] = ACTIONS(2609), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2613), - [anon_sym_ATphp] = ACTIONS(2615), - [aux_sym_attribute_token1] = ACTIONS(2617), - [aux_sym__inline_directive_token1] = ACTIONS(2619), - [anon_sym_ATfragment] = ACTIONS(2621), - [anon_sym_ATsection] = ACTIONS(2623), - [anon_sym_ATonce] = ACTIONS(2625), - [anon_sym_ATverbatim] = ACTIONS(2627), - [anon_sym_ATpush] = ACTIONS(2629), - [anon_sym_ATpushOnce] = ACTIONS(2631), - [anon_sym_ATpushIf] = ACTIONS(2633), - [anon_sym_ATprepend] = ACTIONS(2635), - [anon_sym_ATprependOnce] = ACTIONS(2637), - [anon_sym_ATelse] = ACTIONS(2639), - [aux_sym_conditional_keyword_token1] = ACTIONS(2641), - [anon_sym_ATif] = ACTIONS(2643), - [anon_sym_ATunless] = ACTIONS(2645), - [anon_sym_ATisset] = ACTIONS(2647), - [anon_sym_ATempty] = ACTIONS(2649), - [anon_sym_ATauth] = ACTIONS(2651), - [anon_sym_ATguest] = ACTIONS(2653), - [anon_sym_ATproduction] = ACTIONS(2655), - [anon_sym_ATenv] = ACTIONS(2657), - [anon_sym_AThasSection] = ACTIONS(2659), - [anon_sym_ATsectionMissing] = ACTIONS(2661), - [anon_sym_ATerror] = ACTIONS(2663), - [anon_sym_ATcan] = ACTIONS(2665), - [anon_sym_ATcannot] = ACTIONS(2667), - [anon_sym_ATcanany] = ACTIONS(2669), - [anon_sym_ATfeature] = ACTIONS(2671), - [aux_sym__custom_token1] = ACTIONS(2673), - [aux_sym__custom_token2] = ACTIONS(2675), - [aux_sym__custom_token3] = ACTIONS(706), - [anon_sym_ATswitch] = ACTIONS(2677), - [aux_sym_loop_operator_token1] = ACTIONS(2679), - [anon_sym_ATfor] = ACTIONS(2681), - [anon_sym_ATforeach] = ACTIONS(2683), - [anon_sym_ATforelse] = ACTIONS(2685), - [anon_sym_ATwhile] = ACTIONS(2687), - [anon_sym_ATsetup] = ACTIONS(2689), - [anon_sym_ATtask] = ACTIONS(2691), - [anon_sym_ATstory] = ACTIONS(2693), - [anon_sym_ATbefore] = ACTIONS(2695), - [anon_sym_ATafter] = ACTIONS(2697), - [anon_sym_ATsuccess] = ACTIONS(2699), - [anon_sym_ATfinished] = ACTIONS(2701), - [anon_sym_ATpersist] = ACTIONS(2703), - [anon_sym_ATteleport] = ACTIONS(2705), - [anon_sym_ATvolt] = ACTIONS(2707), - [aux_sym__text_token1] = ACTIONS(2709), - [aux_sym__text_token2] = ACTIONS(2709), - [aux_sym__text_token3] = ACTIONS(2711), + [aux_sym_php_only_repeat1] = STATE(688), + [sym_comment] = ACTIONS(2729), + [aux_sym_keyword_token1] = ACTIONS(2625), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2629), + [anon_sym_ATphp] = ACTIONS(2631), + [aux_sym_attribute_token1] = ACTIONS(2633), + [aux_sym__inline_directive_token1] = ACTIONS(2635), + [anon_sym_ATfragment] = ACTIONS(2637), + [anon_sym_ATsection] = ACTIONS(2639), + [anon_sym_ATonce] = ACTIONS(2641), + [anon_sym_ATverbatim] = ACTIONS(2643), + [anon_sym_ATpush] = ACTIONS(2645), + [anon_sym_ATpushOnce] = ACTIONS(2647), + [anon_sym_ATpushIf] = ACTIONS(2649), + [anon_sym_ATprepend] = ACTIONS(2651), + [anon_sym_ATprependOnce] = ACTIONS(2653), + [anon_sym_ATelse] = ACTIONS(2655), + [aux_sym_conditional_keyword_token1] = ACTIONS(2657), + [anon_sym_ATif] = ACTIONS(2659), + [anon_sym_ATunless] = ACTIONS(2661), + [anon_sym_ATisset] = ACTIONS(2663), + [anon_sym_ATempty] = ACTIONS(2665), + [anon_sym_ATauth] = ACTIONS(2667), + [anon_sym_ATguest] = ACTIONS(2669), + [anon_sym_ATproduction] = ACTIONS(2671), + [anon_sym_ATenv] = ACTIONS(2673), + [anon_sym_AThasSection] = ACTIONS(2675), + [anon_sym_ATsectionMissing] = ACTIONS(2677), + [anon_sym_ATerror] = ACTIONS(2679), + [anon_sym_ATcan] = ACTIONS(2681), + [anon_sym_ATcannot] = ACTIONS(2683), + [anon_sym_ATcanany] = ACTIONS(2685), + [anon_sym_ATfeature] = ACTIONS(2687), + [aux_sym__custom_token1] = ACTIONS(2689), + [aux_sym__custom_token2] = ACTIONS(2691), + [aux_sym__custom_token3] = ACTIONS(497), + [anon_sym_ATswitch] = ACTIONS(2693), + [aux_sym_loop_operator_token1] = ACTIONS(2695), + [anon_sym_ATfor] = ACTIONS(2697), + [anon_sym_ATforeach] = ACTIONS(2699), + [anon_sym_ATforelse] = ACTIONS(2701), + [anon_sym_ATwhile] = ACTIONS(2703), + [anon_sym_ATsetup] = ACTIONS(2705), + [anon_sym_ATtask] = ACTIONS(2707), + [anon_sym_ATstory] = ACTIONS(2709), + [anon_sym_ATbefore] = ACTIONS(2711), + [anon_sym_ATafter] = ACTIONS(2713), + [anon_sym_ATsuccess] = ACTIONS(2715), + [anon_sym_ATfinished] = ACTIONS(2717), + [anon_sym_ATpersist] = ACTIONS(2719), + [anon_sym_ATteleport] = ACTIONS(2721), + [anon_sym_ATvolt] = ACTIONS(2723), + [aux_sym__text_token1] = ACTIONS(2725), + [aux_sym__text_token2] = ACTIONS(2725), + [aux_sym__text_token3] = ACTIONS(2727), }, [124] = { [sym__definition] = STATE(124), - [sym_comment] = STATE(124), [sym_keyword] = STATE(124), [sym_php_statement] = STATE(124), - [sym__escaped] = STATE(1271), - [sym__unescaped] = STATE(1271), - [sym__raw] = STATE(1271), - [sym__inline_raw] = STATE(1271), - [sym__multi_line_raw] = STATE(1271), + [sym__escaped] = STATE(1928), + [sym__unescaped] = STATE(1928), + [sym__raw] = STATE(1928), + [sym__inline_raw] = STATE(1928), + [sym__multi_line_raw] = STATE(1928), [sym_attribute] = STATE(124), [sym__inline_directive] = STATE(124), [sym__nested_directive] = STATE(124), @@ -41344,121 +40719,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(124), [sym_verbatim] = STATE(124), [sym_stack] = STATE(124), - [sym__push] = STATE(1270), - [sym__pushOnce] = STATE(1270), - [sym__pushIf] = STATE(1270), - [sym__prepend] = STATE(1270), - [sym__prependOnce] = STATE(1270), + [sym__push] = STATE(1929), + [sym__pushOnce] = STATE(1929), + [sym__pushIf] = STATE(1929), + [sym__prepend] = STATE(1929), + [sym__prependOnce] = STATE(1929), [sym_conditional] = STATE(124), [sym_conditional_keyword] = STATE(124), - [sym__if] = STATE(1269), - [sym__unless] = STATE(1269), - [sym__isset] = STATE(1269), - [sym__empty] = STATE(1269), - [sym__auth] = STATE(1269), - [sym__guest] = STATE(1269), - [sym__production] = STATE(1269), - [sym__env] = STATE(1269), - [sym__hasSection] = STATE(1269), - [sym__sectionMissing] = STATE(1269), - [sym__error] = STATE(1269), - [sym_authorization] = STATE(1269), - [sym__can] = STATE(1268), - [sym__cannot] = STATE(1268), - [sym__canany] = STATE(1268), - [sym__feature] = STATE(1269), - [sym__custom] = STATE(1269), + [sym__if] = STATE(1930), + [sym__unless] = STATE(1930), + [sym__isset] = STATE(1930), + [sym__empty] = STATE(1930), + [sym__auth] = STATE(1930), + [sym__guest] = STATE(1930), + [sym__production] = STATE(1930), + [sym__env] = STATE(1930), + [sym__hasSection] = STATE(1930), + [sym__sectionMissing] = STATE(1930), + [sym__error] = STATE(1930), + [sym_authorization] = STATE(1930), + [sym__can] = STATE(1931), + [sym__cannot] = STATE(1931), + [sym__canany] = STATE(1931), + [sym__feature] = STATE(1930), + [sym__custom] = STATE(1930), [sym_switch] = STATE(124), [sym_loop] = STATE(124), [sym_loop_operator] = STATE(124), - [sym__for] = STATE(1267), - [sym__foreach] = STATE(1267), - [sym__forelse] = STATE(1267), - [sym__while] = STATE(1267), + [sym__for] = STATE(1237), + [sym__foreach] = STATE(1237), + [sym__forelse] = STATE(1237), + [sym__while] = STATE(1237), [sym_envoy] = STATE(124), - [sym__setup] = STATE(1271), - [sym__task] = STATE(1266), - [sym__story] = STATE(1266), - [sym__hooks] = STATE(1271), - [sym__before] = STATE(1271), - [sym__after] = STATE(1271), - [sym__envoy_error] = STATE(1271), - [sym__success] = STATE(1271), - [sym__finished] = STATE(1271), + [sym__setup] = STATE(1928), + [sym__task] = STATE(1196), + [sym__story] = STATE(1196), + [sym__hooks] = STATE(1928), + [sym__before] = STATE(1928), + [sym__after] = STATE(1928), + [sym__envoy_error] = STATE(1928), + [sym__success] = STATE(1928), + [sym__finished] = STATE(1928), [sym_livewire] = STATE(124), - [sym__persist] = STATE(1265), - [sym__teleport] = STATE(1265), - [sym__volt] = STATE(1265), + [sym__persist] = STATE(1342), + [sym__teleport] = STATE(1342), + [sym__volt] = STATE(1342), [sym_text] = STATE(124), - [sym__text] = STATE(684), + [sym__text] = STATE(679), [aux_sym__if_statement_directive_body_repeat1] = STATE(124), - [aux_sym_php_only_repeat1] = STATE(684), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2713), - [aux_sym_keyword_token1] = ACTIONS(2716), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2719), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2722), - [anon_sym_ATphp] = ACTIONS(2725), - [aux_sym_attribute_token1] = ACTIONS(2728), - [aux_sym__inline_directive_token1] = ACTIONS(2731), - [anon_sym_ATfragment] = ACTIONS(2734), - [anon_sym_ATsection] = ACTIONS(2737), - [anon_sym_ATonce] = ACTIONS(2740), - [anon_sym_ATverbatim] = ACTIONS(2743), - [anon_sym_ATpush] = ACTIONS(2746), - [anon_sym_ATpushOnce] = ACTIONS(2749), - [anon_sym_ATpushIf] = ACTIONS(2752), - [anon_sym_ATprepend] = ACTIONS(2755), - [anon_sym_ATprependOnce] = ACTIONS(2758), - [anon_sym_ATelse] = ACTIONS(2761), - [aux_sym_conditional_keyword_token1] = ACTIONS(2764), - [anon_sym_ATif] = ACTIONS(2767), - [anon_sym_ATunless] = ACTIONS(2770), - [anon_sym_ATisset] = ACTIONS(2773), - [anon_sym_ATempty] = ACTIONS(2776), - [anon_sym_ATauth] = ACTIONS(2779), - [anon_sym_ATguest] = ACTIONS(2782), - [anon_sym_ATproduction] = ACTIONS(2785), - [anon_sym_ATenv] = ACTIONS(2788), - [anon_sym_AThasSection] = ACTIONS(2791), - [anon_sym_ATsectionMissing] = ACTIONS(2794), - [anon_sym_ATerror] = ACTIONS(2797), - [anon_sym_ATcan] = ACTIONS(2800), - [anon_sym_ATcannot] = ACTIONS(2803), - [anon_sym_ATcanany] = ACTIONS(2806), - [anon_sym_ATendcanany] = ACTIONS(518), - [anon_sym_ATfeature] = ACTIONS(2809), - [aux_sym__custom_token1] = ACTIONS(2812), - [aux_sym__custom_token2] = ACTIONS(2815), - [anon_sym_ATswitch] = ACTIONS(2818), - [aux_sym_loop_operator_token1] = ACTIONS(2821), - [anon_sym_ATfor] = ACTIONS(2824), - [anon_sym_ATforeach] = ACTIONS(2827), - [anon_sym_ATforelse] = ACTIONS(2830), - [anon_sym_ATwhile] = ACTIONS(2833), - [anon_sym_ATsetup] = ACTIONS(2836), - [anon_sym_ATtask] = ACTIONS(2839), - [anon_sym_ATstory] = ACTIONS(2842), - [anon_sym_ATbefore] = ACTIONS(2845), - [anon_sym_ATafter] = ACTIONS(2848), - [anon_sym_ATsuccess] = ACTIONS(2851), - [anon_sym_ATfinished] = ACTIONS(2854), - [anon_sym_ATpersist] = ACTIONS(2857), - [anon_sym_ATteleport] = ACTIONS(2860), - [anon_sym_ATvolt] = ACTIONS(2863), - [aux_sym__text_token1] = ACTIONS(2866), - [aux_sym__text_token2] = ACTIONS(2866), - [aux_sym__text_token3] = ACTIONS(2869), + [aux_sym_php_only_repeat1] = STATE(679), + [sym_comment] = ACTIONS(2731), + [aux_sym_keyword_token1] = ACTIONS(2734), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2737), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2740), + [anon_sym_ATphp] = ACTIONS(2743), + [aux_sym_attribute_token1] = ACTIONS(2746), + [aux_sym__inline_directive_token1] = ACTIONS(2749), + [anon_sym_ATfragment] = ACTIONS(2752), + [anon_sym_ATsection] = ACTIONS(2755), + [anon_sym_ATonce] = ACTIONS(2758), + [anon_sym_ATverbatim] = ACTIONS(2761), + [anon_sym_ATpush] = ACTIONS(2764), + [anon_sym_ATpushOnce] = ACTIONS(2767), + [anon_sym_ATpushIf] = ACTIONS(2770), + [anon_sym_ATprepend] = ACTIONS(2773), + [anon_sym_ATprependOnce] = ACTIONS(2776), + [anon_sym_ATelse] = ACTIONS(2779), + [aux_sym_conditional_keyword_token1] = ACTIONS(2782), + [anon_sym_ATif] = ACTIONS(2785), + [anon_sym_ATunless] = ACTIONS(2788), + [anon_sym_ATisset] = ACTIONS(2791), + [anon_sym_ATempty] = ACTIONS(2794), + [anon_sym_ATauth] = ACTIONS(2797), + [anon_sym_ATguest] = ACTIONS(2800), + [anon_sym_ATproduction] = ACTIONS(2803), + [anon_sym_ATenv] = ACTIONS(2806), + [anon_sym_AThasSection] = ACTIONS(2809), + [anon_sym_ATsectionMissing] = ACTIONS(2812), + [anon_sym_ATerror] = ACTIONS(2815), + [anon_sym_ATcan] = ACTIONS(2818), + [anon_sym_ATcannot] = ACTIONS(2821), + [anon_sym_ATcanany] = ACTIONS(2824), + [anon_sym_ATendcanany] = ACTIONS(633), + [anon_sym_ATfeature] = ACTIONS(2827), + [aux_sym__custom_token1] = ACTIONS(2830), + [aux_sym__custom_token2] = ACTIONS(2833), + [anon_sym_ATswitch] = ACTIONS(2836), + [aux_sym_loop_operator_token1] = ACTIONS(2839), + [anon_sym_ATfor] = ACTIONS(2842), + [anon_sym_ATforeach] = ACTIONS(2845), + [anon_sym_ATforelse] = ACTIONS(2848), + [anon_sym_ATwhile] = ACTIONS(2851), + [anon_sym_ATsetup] = ACTIONS(2854), + [anon_sym_ATtask] = ACTIONS(2857), + [anon_sym_ATstory] = ACTIONS(2860), + [anon_sym_ATbefore] = ACTIONS(2863), + [anon_sym_ATafter] = ACTIONS(2866), + [anon_sym_ATsuccess] = ACTIONS(2869), + [anon_sym_ATfinished] = ACTIONS(2872), + [anon_sym_ATpersist] = ACTIONS(2875), + [anon_sym_ATteleport] = ACTIONS(2878), + [anon_sym_ATvolt] = ACTIONS(2881), + [aux_sym__text_token1] = ACTIONS(2884), + [aux_sym__text_token2] = ACTIONS(2884), + [aux_sym__text_token3] = ACTIONS(2887), }, [125] = { [sym__definition] = STATE(125), - [sym_comment] = STATE(125), [sym_keyword] = STATE(125), [sym_php_statement] = STATE(125), - [sym__escaped] = STATE(1180), - [sym__unescaped] = STATE(1180), - [sym__raw] = STATE(1180), - [sym__inline_raw] = STATE(1180), - [sym__multi_line_raw] = STATE(1180), + [sym__escaped] = STATE(1175), + [sym__unescaped] = STATE(1175), + [sym__raw] = STATE(1175), + [sym__inline_raw] = STATE(1175), + [sym__multi_line_raw] = STATE(1175), [sym_attribute] = STATE(125), [sym__inline_directive] = STATE(125), [sym__nested_directive] = STATE(125), @@ -41468,121 +40842,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(125), [sym_verbatim] = STATE(125), [sym_stack] = STATE(125), - [sym__push] = STATE(1179), - [sym__pushOnce] = STATE(1179), - [sym__pushIf] = STATE(1179), - [sym__prepend] = STATE(1179), - [sym__prependOnce] = STATE(1179), + [sym__push] = STATE(1174), + [sym__pushOnce] = STATE(1174), + [sym__pushIf] = STATE(1174), + [sym__prepend] = STATE(1174), + [sym__prependOnce] = STATE(1174), [sym_conditional] = STATE(125), [sym_conditional_keyword] = STATE(125), - [sym__if] = STATE(1178), - [sym__unless] = STATE(1178), - [sym__isset] = STATE(1178), - [sym__empty] = STATE(1178), - [sym__auth] = STATE(1178), - [sym__guest] = STATE(1178), - [sym__production] = STATE(1178), - [sym__env] = STATE(1178), - [sym__hasSection] = STATE(1178), - [sym__sectionMissing] = STATE(1178), - [sym__error] = STATE(1178), - [sym_authorization] = STATE(1178), - [sym__can] = STATE(1177), - [sym__cannot] = STATE(1177), - [sym__canany] = STATE(1177), - [sym__feature] = STATE(1178), - [sym__custom] = STATE(1178), + [sym__if] = STATE(1173), + [sym__unless] = STATE(1173), + [sym__isset] = STATE(1173), + [sym__empty] = STATE(1173), + [sym__auth] = STATE(1173), + [sym__guest] = STATE(1173), + [sym__production] = STATE(1173), + [sym__env] = STATE(1173), + [sym__hasSection] = STATE(1173), + [sym__sectionMissing] = STATE(1173), + [sym__error] = STATE(1173), + [sym_authorization] = STATE(1173), + [sym__can] = STATE(1172), + [sym__cannot] = STATE(1172), + [sym__canany] = STATE(1172), + [sym__feature] = STATE(1173), + [sym__custom] = STATE(1173), [sym_switch] = STATE(125), [sym_loop] = STATE(125), [sym_loop_operator] = STATE(125), - [sym__for] = STATE(1176), - [sym__foreach] = STATE(1176), - [sym__forelse] = STATE(1176), - [sym__while] = STATE(1176), + [sym__for] = STATE(1171), + [sym__foreach] = STATE(1171), + [sym__forelse] = STATE(1171), + [sym__while] = STATE(1171), [sym_envoy] = STATE(125), - [sym__setup] = STATE(1180), - [sym__task] = STATE(1175), - [sym__story] = STATE(1175), - [sym__hooks] = STATE(1180), - [sym__before] = STATE(1180), - [sym__after] = STATE(1180), - [sym__envoy_error] = STATE(1180), - [sym__success] = STATE(1180), - [sym__finished] = STATE(1180), + [sym__setup] = STATE(1175), + [sym__task] = STATE(1170), + [sym__story] = STATE(1170), + [sym__hooks] = STATE(1175), + [sym__before] = STATE(1175), + [sym__after] = STATE(1175), + [sym__envoy_error] = STATE(1175), + [sym__success] = STATE(1175), + [sym__finished] = STATE(1175), [sym_livewire] = STATE(125), - [sym__persist] = STATE(1174), - [sym__teleport] = STATE(1174), - [sym__volt] = STATE(1174), + [sym__persist] = STATE(1168), + [sym__teleport] = STATE(1168), + [sym__volt] = STATE(1168), [sym_text] = STATE(125), - [sym__text] = STATE(689), + [sym__text] = STATE(683), [aux_sym__if_statement_directive_body_repeat1] = STATE(125), - [aux_sym_php_only_repeat1] = STATE(689), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2872), - [aux_sym_keyword_token1] = ACTIONS(2875), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2881), - [anon_sym_ATphp] = ACTIONS(2884), - [aux_sym_attribute_token1] = ACTIONS(2887), - [aux_sym__inline_directive_token1] = ACTIONS(2890), - [anon_sym_ATfragment] = ACTIONS(2893), - [anon_sym_ATsection] = ACTIONS(2896), - [anon_sym_ATonce] = ACTIONS(2899), - [anon_sym_ATverbatim] = ACTIONS(2902), - [anon_sym_ATpush] = ACTIONS(2905), - [anon_sym_ATpushOnce] = ACTIONS(2908), - [anon_sym_ATpushIf] = ACTIONS(2911), - [anon_sym_ATprepend] = ACTIONS(2914), - [anon_sym_ATprependOnce] = ACTIONS(2917), - [anon_sym_ATelse] = ACTIONS(2920), - [aux_sym_conditional_keyword_token1] = ACTIONS(2923), - [anon_sym_ATif] = ACTIONS(2926), - [anon_sym_ATunless] = ACTIONS(2929), - [anon_sym_ATisset] = ACTIONS(2932), - [anon_sym_ATempty] = ACTIONS(2935), - [anon_sym_ATauth] = ACTIONS(2938), - [anon_sym_ATguest] = ACTIONS(2941), - [anon_sym_ATproduction] = ACTIONS(2944), - [anon_sym_ATenv] = ACTIONS(2947), - [anon_sym_AThasSection] = ACTIONS(2950), - [anon_sym_ATsectionMissing] = ACTIONS(2953), - [anon_sym_ATerror] = ACTIONS(2956), - [anon_sym_ATcan] = ACTIONS(2959), - [anon_sym_ATcannot] = ACTIONS(2962), - [anon_sym_ATcanany] = ACTIONS(2965), - [anon_sym_ATfeature] = ACTIONS(2968), - [anon_sym_ATendfeature] = ACTIONS(518), - [aux_sym__custom_token1] = ACTIONS(2971), - [aux_sym__custom_token2] = ACTIONS(2974), - [anon_sym_ATswitch] = ACTIONS(2977), - [aux_sym_loop_operator_token1] = ACTIONS(2980), - [anon_sym_ATfor] = ACTIONS(2983), - [anon_sym_ATforeach] = ACTIONS(2986), - [anon_sym_ATforelse] = ACTIONS(2989), - [anon_sym_ATwhile] = ACTIONS(2992), - [anon_sym_ATsetup] = ACTIONS(2995), - [anon_sym_ATtask] = ACTIONS(2998), - [anon_sym_ATstory] = ACTIONS(3001), - [anon_sym_ATbefore] = ACTIONS(3004), - [anon_sym_ATafter] = ACTIONS(3007), - [anon_sym_ATsuccess] = ACTIONS(3010), - [anon_sym_ATfinished] = ACTIONS(3013), - [anon_sym_ATpersist] = ACTIONS(3016), - [anon_sym_ATteleport] = ACTIONS(3019), - [anon_sym_ATvolt] = ACTIONS(3022), - [aux_sym__text_token1] = ACTIONS(3025), - [aux_sym__text_token2] = ACTIONS(3025), - [aux_sym__text_token3] = ACTIONS(3028), + [aux_sym_php_only_repeat1] = STATE(683), + [sym_comment] = ACTIONS(2890), + [aux_sym_keyword_token1] = ACTIONS(2893), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2896), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2899), + [anon_sym_ATphp] = ACTIONS(2902), + [aux_sym_attribute_token1] = ACTIONS(2905), + [aux_sym__inline_directive_token1] = ACTIONS(2908), + [anon_sym_ATfragment] = ACTIONS(2911), + [anon_sym_ATsection] = ACTIONS(2914), + [anon_sym_ATonce] = ACTIONS(2917), + [anon_sym_ATverbatim] = ACTIONS(2920), + [anon_sym_ATpush] = ACTIONS(2923), + [anon_sym_ATpushOnce] = ACTIONS(2926), + [anon_sym_ATpushIf] = ACTIONS(2929), + [anon_sym_ATprepend] = ACTIONS(2932), + [anon_sym_ATprependOnce] = ACTIONS(2935), + [anon_sym_ATelse] = ACTIONS(2938), + [aux_sym_conditional_keyword_token1] = ACTIONS(2941), + [anon_sym_ATif] = ACTIONS(2944), + [anon_sym_ATunless] = ACTIONS(2947), + [anon_sym_ATisset] = ACTIONS(2950), + [anon_sym_ATempty] = ACTIONS(2953), + [anon_sym_ATauth] = ACTIONS(2956), + [anon_sym_ATguest] = ACTIONS(2959), + [anon_sym_ATproduction] = ACTIONS(2962), + [anon_sym_ATenv] = ACTIONS(2965), + [anon_sym_AThasSection] = ACTIONS(2968), + [anon_sym_ATsectionMissing] = ACTIONS(2971), + [anon_sym_ATerror] = ACTIONS(2974), + [anon_sym_ATcan] = ACTIONS(2977), + [anon_sym_ATcannot] = ACTIONS(2980), + [anon_sym_ATcanany] = ACTIONS(2983), + [anon_sym_ATfeature] = ACTIONS(2986), + [anon_sym_ATendfeature] = ACTIONS(633), + [aux_sym__custom_token1] = ACTIONS(2989), + [aux_sym__custom_token2] = ACTIONS(2992), + [anon_sym_ATswitch] = ACTIONS(2995), + [aux_sym_loop_operator_token1] = ACTIONS(2998), + [anon_sym_ATfor] = ACTIONS(3001), + [anon_sym_ATforeach] = ACTIONS(3004), + [anon_sym_ATforelse] = ACTIONS(3007), + [anon_sym_ATwhile] = ACTIONS(3010), + [anon_sym_ATsetup] = ACTIONS(3013), + [anon_sym_ATtask] = ACTIONS(3016), + [anon_sym_ATstory] = ACTIONS(3019), + [anon_sym_ATbefore] = ACTIONS(3022), + [anon_sym_ATafter] = ACTIONS(3025), + [anon_sym_ATsuccess] = ACTIONS(3028), + [anon_sym_ATfinished] = ACTIONS(3031), + [anon_sym_ATpersist] = ACTIONS(3034), + [anon_sym_ATteleport] = ACTIONS(3037), + [anon_sym_ATvolt] = ACTIONS(3040), + [aux_sym__text_token1] = ACTIONS(3043), + [aux_sym__text_token2] = ACTIONS(3043), + [aux_sym__text_token3] = ACTIONS(3046), }, [126] = { [sym__definition] = STATE(126), - [sym_comment] = STATE(126), [sym_keyword] = STATE(126), [sym_php_statement] = STATE(126), - [sym__escaped] = STATE(1084), - [sym__unescaped] = STATE(1084), - [sym__raw] = STATE(1084), - [sym__inline_raw] = STATE(1084), - [sym__multi_line_raw] = STATE(1084), + [sym__escaped] = STATE(1088), + [sym__unescaped] = STATE(1088), + [sym__raw] = STATE(1088), + [sym__inline_raw] = STATE(1088), + [sym__multi_line_raw] = STATE(1088), [sym_attribute] = STATE(126), [sym__inline_directive] = STATE(126), [sym__nested_directive] = STATE(126), @@ -41592,617 +40965,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(126), [sym_verbatim] = STATE(126), [sym_stack] = STATE(126), - [sym__push] = STATE(1083), - [sym__pushOnce] = STATE(1083), - [sym__pushIf] = STATE(1083), - [sym__prepend] = STATE(1083), - [sym__prependOnce] = STATE(1083), + [sym__push] = STATE(1087), + [sym__pushOnce] = STATE(1087), + [sym__pushIf] = STATE(1087), + [sym__prepend] = STATE(1087), + [sym__prependOnce] = STATE(1087), [sym_conditional] = STATE(126), [sym_conditional_keyword] = STATE(126), - [sym__if] = STATE(1082), - [sym__unless] = STATE(1082), - [sym__isset] = STATE(1082), - [sym__empty] = STATE(1082), - [sym__auth] = STATE(1082), - [sym__guest] = STATE(1082), - [sym__production] = STATE(1082), - [sym__env] = STATE(1082), - [sym__hasSection] = STATE(1082), - [sym__sectionMissing] = STATE(1082), - [sym__error] = STATE(1082), - [sym_authorization] = STATE(1082), - [sym__can] = STATE(1081), - [sym__cannot] = STATE(1081), - [sym__canany] = STATE(1081), - [sym__feature] = STATE(1082), - [sym__custom] = STATE(1082), + [sym__if] = STATE(1086), + [sym__unless] = STATE(1086), + [sym__isset] = STATE(1086), + [sym__empty] = STATE(1086), + [sym__auth] = STATE(1086), + [sym__guest] = STATE(1086), + [sym__production] = STATE(1086), + [sym__env] = STATE(1086), + [sym__hasSection] = STATE(1086), + [sym__sectionMissing] = STATE(1086), + [sym__error] = STATE(1086), + [sym_authorization] = STATE(1086), + [sym__can] = STATE(1085), + [sym__cannot] = STATE(1085), + [sym__canany] = STATE(1085), + [sym__feature] = STATE(1086), + [sym__custom] = STATE(1086), [sym_switch] = STATE(126), [sym_loop] = STATE(126), [sym_loop_operator] = STATE(126), - [sym__for] = STATE(1080), - [sym__foreach] = STATE(1080), - [sym__forelse] = STATE(1080), - [sym__while] = STATE(1080), + [sym__for] = STATE(1084), + [sym__foreach] = STATE(1084), + [sym__forelse] = STATE(1084), + [sym__while] = STATE(1084), [sym_envoy] = STATE(126), - [sym__setup] = STATE(1084), - [sym__task] = STATE(1078), - [sym__story] = STATE(1078), - [sym__hooks] = STATE(1084), - [sym__before] = STATE(1084), - [sym__after] = STATE(1084), - [sym__envoy_error] = STATE(1084), - [sym__success] = STATE(1084), - [sym__finished] = STATE(1084), + [sym__setup] = STATE(1088), + [sym__task] = STATE(1083), + [sym__story] = STATE(1083), + [sym__hooks] = STATE(1088), + [sym__before] = STATE(1088), + [sym__after] = STATE(1088), + [sym__envoy_error] = STATE(1088), + [sym__success] = STATE(1088), + [sym__finished] = STATE(1088), [sym_livewire] = STATE(126), - [sym__persist] = STATE(1077), - [sym__teleport] = STATE(1077), - [sym__volt] = STATE(1077), + [sym__persist] = STATE(1082), + [sym__teleport] = STATE(1082), + [sym__volt] = STATE(1082), [sym_text] = STATE(126), - [sym__text] = STATE(694), + [sym__text] = STATE(688), [aux_sym__if_statement_directive_body_repeat1] = STATE(126), - [aux_sym_php_only_repeat1] = STATE(694), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3031), - [aux_sym_keyword_token1] = ACTIONS(3034), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3040), - [anon_sym_ATphp] = ACTIONS(3043), - [aux_sym_attribute_token1] = ACTIONS(3046), - [aux_sym__inline_directive_token1] = ACTIONS(3049), - [anon_sym_ATfragment] = ACTIONS(3052), - [anon_sym_ATsection] = ACTIONS(3055), - [anon_sym_ATonce] = ACTIONS(3058), - [anon_sym_ATverbatim] = ACTIONS(3061), - [anon_sym_ATpush] = ACTIONS(3064), - [anon_sym_ATpushOnce] = ACTIONS(3067), - [anon_sym_ATpushIf] = ACTIONS(3070), - [anon_sym_ATprepend] = ACTIONS(3073), - [anon_sym_ATprependOnce] = ACTIONS(3076), - [anon_sym_ATelse] = ACTIONS(3079), - [aux_sym_conditional_keyword_token1] = ACTIONS(3082), - [anon_sym_ATif] = ACTIONS(3085), - [anon_sym_ATunless] = ACTIONS(3088), - [anon_sym_ATisset] = ACTIONS(3091), - [anon_sym_ATempty] = ACTIONS(3094), - [anon_sym_ATauth] = ACTIONS(3097), - [anon_sym_ATguest] = ACTIONS(3100), - [anon_sym_ATproduction] = ACTIONS(3103), - [anon_sym_ATenv] = ACTIONS(3106), - [anon_sym_AThasSection] = ACTIONS(3109), - [anon_sym_ATsectionMissing] = ACTIONS(3112), - [anon_sym_ATerror] = ACTIONS(3115), - [anon_sym_ATcan] = ACTIONS(3118), - [anon_sym_ATcannot] = ACTIONS(3121), - [anon_sym_ATcanany] = ACTIONS(3124), - [anon_sym_ATfeature] = ACTIONS(3127), - [aux_sym__custom_token1] = ACTIONS(3130), - [aux_sym__custom_token2] = ACTIONS(3133), - [aux_sym__custom_token3] = ACTIONS(518), - [anon_sym_ATswitch] = ACTIONS(3136), - [aux_sym_loop_operator_token1] = ACTIONS(3139), - [anon_sym_ATfor] = ACTIONS(3142), - [anon_sym_ATforeach] = ACTIONS(3145), - [anon_sym_ATforelse] = ACTIONS(3148), - [anon_sym_ATwhile] = ACTIONS(3151), - [anon_sym_ATsetup] = ACTIONS(3154), - [anon_sym_ATtask] = ACTIONS(3157), - [anon_sym_ATstory] = ACTIONS(3160), - [anon_sym_ATbefore] = ACTIONS(3163), - [anon_sym_ATafter] = ACTIONS(3166), - [anon_sym_ATsuccess] = ACTIONS(3169), - [anon_sym_ATfinished] = ACTIONS(3172), - [anon_sym_ATpersist] = ACTIONS(3175), - [anon_sym_ATteleport] = ACTIONS(3178), - [anon_sym_ATvolt] = ACTIONS(3181), - [aux_sym__text_token1] = ACTIONS(3184), - [aux_sym__text_token2] = ACTIONS(3184), - [aux_sym__text_token3] = ACTIONS(3187), + [aux_sym_php_only_repeat1] = STATE(688), + [sym_comment] = ACTIONS(3049), + [aux_sym_keyword_token1] = ACTIONS(3052), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3055), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3058), + [anon_sym_ATphp] = ACTIONS(3061), + [aux_sym_attribute_token1] = ACTIONS(3064), + [aux_sym__inline_directive_token1] = ACTIONS(3067), + [anon_sym_ATfragment] = ACTIONS(3070), + [anon_sym_ATsection] = ACTIONS(3073), + [anon_sym_ATonce] = ACTIONS(3076), + [anon_sym_ATverbatim] = ACTIONS(3079), + [anon_sym_ATpush] = ACTIONS(3082), + [anon_sym_ATpushOnce] = ACTIONS(3085), + [anon_sym_ATpushIf] = ACTIONS(3088), + [anon_sym_ATprepend] = ACTIONS(3091), + [anon_sym_ATprependOnce] = ACTIONS(3094), + [anon_sym_ATelse] = ACTIONS(3097), + [aux_sym_conditional_keyword_token1] = ACTIONS(3100), + [anon_sym_ATif] = ACTIONS(3103), + [anon_sym_ATunless] = ACTIONS(3106), + [anon_sym_ATisset] = ACTIONS(3109), + [anon_sym_ATempty] = ACTIONS(3112), + [anon_sym_ATauth] = ACTIONS(3115), + [anon_sym_ATguest] = ACTIONS(3118), + [anon_sym_ATproduction] = ACTIONS(3121), + [anon_sym_ATenv] = ACTIONS(3124), + [anon_sym_AThasSection] = ACTIONS(3127), + [anon_sym_ATsectionMissing] = ACTIONS(3130), + [anon_sym_ATerror] = ACTIONS(3133), + [anon_sym_ATcan] = ACTIONS(3136), + [anon_sym_ATcannot] = ACTIONS(3139), + [anon_sym_ATcanany] = ACTIONS(3142), + [anon_sym_ATfeature] = ACTIONS(3145), + [aux_sym__custom_token1] = ACTIONS(3148), + [aux_sym__custom_token2] = ACTIONS(3151), + [aux_sym__custom_token3] = ACTIONS(633), + [anon_sym_ATswitch] = ACTIONS(3154), + [aux_sym_loop_operator_token1] = ACTIONS(3157), + [anon_sym_ATfor] = ACTIONS(3160), + [anon_sym_ATforeach] = ACTIONS(3163), + [anon_sym_ATforelse] = ACTIONS(3166), + [anon_sym_ATwhile] = ACTIONS(3169), + [anon_sym_ATsetup] = ACTIONS(3172), + [anon_sym_ATtask] = ACTIONS(3175), + [anon_sym_ATstory] = ACTIONS(3178), + [anon_sym_ATbefore] = ACTIONS(3181), + [anon_sym_ATafter] = ACTIONS(3184), + [anon_sym_ATsuccess] = ACTIONS(3187), + [anon_sym_ATfinished] = ACTIONS(3190), + [anon_sym_ATpersist] = ACTIONS(3193), + [anon_sym_ATteleport] = ACTIONS(3196), + [anon_sym_ATvolt] = ACTIONS(3199), + [aux_sym__text_token1] = ACTIONS(3202), + [aux_sym__text_token2] = ACTIONS(3202), + [aux_sym__text_token3] = ACTIONS(3205), }, [127] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3190), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3208), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [128] = { - [sym__definition] = STATE(128), - [sym_comment] = STATE(128), - [sym_keyword] = STATE(128), - [sym_php_statement] = STATE(128), - [sym__escaped] = STATE(1543), - [sym__unescaped] = STATE(1543), - [sym__raw] = STATE(1543), - [sym__inline_raw] = STATE(1543), - [sym__multi_line_raw] = STATE(1543), - [sym_attribute] = STATE(128), - [sym__inline_directive] = STATE(128), - [sym__nested_directive] = STATE(128), - [sym_fragment] = STATE(128), - [sym_section] = STATE(128), - [sym_inlineSection] = STATE(128), - [sym_once] = STATE(128), - [sym_verbatim] = STATE(128), - [sym_stack] = STATE(128), - [sym__push] = STATE(1544), - [sym__pushOnce] = STATE(1544), - [sym__pushIf] = STATE(1544), - [sym__prepend] = STATE(1544), - [sym__prependOnce] = STATE(1544), - [sym_conditional] = STATE(128), - [sym_conditional_keyword] = STATE(128), - [sym__if] = STATE(1545), - [sym__unless] = STATE(1545), - [sym__isset] = STATE(1545), - [sym__empty] = STATE(1545), - [sym__auth] = STATE(1545), - [sym__guest] = STATE(1545), - [sym__production] = STATE(1545), - [sym__env] = STATE(1545), - [sym__hasSection] = STATE(1545), - [sym__sectionMissing] = STATE(1545), - [sym__error] = STATE(1545), - [sym_authorization] = STATE(1545), - [sym__can] = STATE(1546), - [sym__cannot] = STATE(1546), - [sym__canany] = STATE(1546), - [sym__feature] = STATE(1545), - [sym__custom] = STATE(1545), - [sym_switch] = STATE(128), - [sym_loop] = STATE(128), - [sym_loop_operator] = STATE(128), - [sym__for] = STATE(1547), - [sym__foreach] = STATE(1547), - [sym__forelse] = STATE(1547), - [sym__while] = STATE(1547), - [sym_envoy] = STATE(128), - [sym__setup] = STATE(1543), - [sym__task] = STATE(1548), - [sym__story] = STATE(1548), - [sym__hooks] = STATE(1543), - [sym__before] = STATE(1543), - [sym__after] = STATE(1543), - [sym__envoy_error] = STATE(1543), - [sym__success] = STATE(1543), - [sym__finished] = STATE(1543), - [sym_livewire] = STATE(128), - [sym__persist] = STATE(1549), - [sym__teleport] = STATE(1549), - [sym__volt] = STATE(1549), - [sym_text] = STATE(128), - [sym__text] = STATE(711), - [aux_sym__if_statement_directive_body_repeat1] = STATE(128), - [aux_sym_php_only_repeat1] = STATE(711), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3192), - [aux_sym_keyword_token1] = ACTIONS(3195), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3198), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3201), - [anon_sym_ATphp] = ACTIONS(3204), - [aux_sym_attribute_token1] = ACTIONS(3207), - [aux_sym__inline_directive_token1] = ACTIONS(3210), - [anon_sym_ATfragment] = ACTIONS(3213), - [anon_sym_ATsection] = ACTIONS(3216), - [anon_sym_ATonce] = ACTIONS(3219), - [anon_sym_ATverbatim] = ACTIONS(3222), - [anon_sym_ATpush] = ACTIONS(3225), - [anon_sym_ATpushOnce] = ACTIONS(3228), - [anon_sym_ATpushIf] = ACTIONS(3231), - [anon_sym_ATprepend] = ACTIONS(3234), - [anon_sym_ATprependOnce] = ACTIONS(3237), - [anon_sym_ATelse] = ACTIONS(3240), - [aux_sym_conditional_keyword_token1] = ACTIONS(3243), - [anon_sym_ATif] = ACTIONS(3246), - [anon_sym_ATunless] = ACTIONS(3249), - [anon_sym_ATisset] = ACTIONS(3252), - [anon_sym_ATempty] = ACTIONS(3255), - [anon_sym_ATendempty] = ACTIONS(518), - [anon_sym_ATauth] = ACTIONS(3258), - [anon_sym_ATguest] = ACTIONS(3261), - [anon_sym_ATproduction] = ACTIONS(3264), - [anon_sym_ATenv] = ACTIONS(3267), - [anon_sym_AThasSection] = ACTIONS(3270), - [anon_sym_ATsectionMissing] = ACTIONS(3273), - [anon_sym_ATerror] = ACTIONS(3276), - [anon_sym_ATcan] = ACTIONS(3279), - [anon_sym_ATcannot] = ACTIONS(3282), - [anon_sym_ATcanany] = ACTIONS(3285), - [anon_sym_ATfeature] = ACTIONS(3288), - [aux_sym__custom_token1] = ACTIONS(3291), - [aux_sym__custom_token2] = ACTIONS(3294), - [anon_sym_ATswitch] = ACTIONS(3297), - [aux_sym_loop_operator_token1] = ACTIONS(3300), - [anon_sym_ATfor] = ACTIONS(3303), - [anon_sym_ATforeach] = ACTIONS(3306), - [anon_sym_ATforelse] = ACTIONS(3309), - [anon_sym_ATwhile] = ACTIONS(3312), - [anon_sym_ATsetup] = ACTIONS(3315), - [anon_sym_ATtask] = ACTIONS(3318), - [anon_sym_ATstory] = ACTIONS(3321), - [anon_sym_ATbefore] = ACTIONS(3324), - [anon_sym_ATafter] = ACTIONS(3327), - [anon_sym_ATsuccess] = ACTIONS(3330), - [anon_sym_ATfinished] = ACTIONS(3333), - [anon_sym_ATpersist] = ACTIONS(3336), - [anon_sym_ATteleport] = ACTIONS(3339), - [anon_sym_ATvolt] = ACTIONS(3342), - [aux_sym__text_token1] = ACTIONS(3345), - [aux_sym__text_token2] = ACTIONS(3345), - [aux_sym__text_token3] = ACTIONS(3348), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3210), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [129] = { - [sym__definition] = STATE(74), - [sym_comment] = STATE(74), - [sym_keyword] = STATE(74), - [sym_php_statement] = STATE(74), - [sym__escaped] = STATE(1715), - [sym__unescaped] = STATE(1715), - [sym__raw] = STATE(1715), - [sym__inline_raw] = STATE(1715), - [sym__multi_line_raw] = STATE(1715), - [sym_attribute] = STATE(74), - [sym__inline_directive] = STATE(74), - [sym__nested_directive] = STATE(74), - [sym_fragment] = STATE(74), - [sym_section] = STATE(74), - [sym_inlineSection] = STATE(74), - [sym_once] = STATE(74), - [sym_verbatim] = STATE(74), - [sym_stack] = STATE(74), - [sym__push] = STATE(1716), - [sym__pushOnce] = STATE(1716), - [sym__pushIf] = STATE(1716), - [sym__prepend] = STATE(1716), - [sym__prependOnce] = STATE(1716), - [sym_conditional] = STATE(74), - [sym_conditional_keyword] = STATE(74), - [sym__if] = STATE(1717), - [sym__unless] = STATE(1717), - [sym__isset] = STATE(1717), - [sym__empty] = STATE(1717), - [sym__auth] = STATE(1717), - [sym__guest] = STATE(1717), - [sym__production] = STATE(1717), - [sym__env] = STATE(1717), - [sym__hasSection] = STATE(1717), - [sym__sectionMissing] = STATE(1717), - [sym__error] = STATE(1717), - [sym_authorization] = STATE(1717), - [sym__can] = STATE(749), - [sym__cannot] = STATE(749), - [sym__canany] = STATE(749), - [sym__feature] = STATE(1717), - [sym__custom] = STATE(1717), - [sym_switch] = STATE(74), - [sym_loop] = STATE(74), - [sym_loop_operator] = STATE(74), - [sym__for] = STATE(1719), - [sym__foreach] = STATE(1719), - [sym__forelse] = STATE(1719), - [sym__while] = STATE(1719), - [sym_envoy] = STATE(74), - [sym__setup] = STATE(1715), - [sym__task] = STATE(1720), - [sym__story] = STATE(1720), - [sym__hooks] = STATE(1715), - [sym__before] = STATE(1715), - [sym__after] = STATE(1715), - [sym__envoy_error] = STATE(1715), - [sym__success] = STATE(1715), - [sym__finished] = STATE(1715), - [sym_livewire] = STATE(74), - [sym__persist] = STATE(1721), - [sym__teleport] = STATE(1721), - [sym__volt] = STATE(1721), - [sym_text] = STATE(74), - [sym__text] = STATE(717), - [aux_sym__if_statement_directive_body_repeat1] = STATE(74), - [aux_sym_php_only_repeat1] = STATE(717), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3351), - [aux_sym_keyword_token1] = ACTIONS(3353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3355), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3357), - [anon_sym_ATphp] = ACTIONS(3359), - [aux_sym_attribute_token1] = ACTIONS(3361), - [aux_sym__inline_directive_token1] = ACTIONS(3363), - [anon_sym_ATfragment] = ACTIONS(3365), - [anon_sym_ATsection] = ACTIONS(3367), - [anon_sym_ATonce] = ACTIONS(3369), - [anon_sym_ATverbatim] = ACTIONS(3371), - [anon_sym_ATpush] = ACTIONS(3373), - [anon_sym_ATpushOnce] = ACTIONS(3375), - [anon_sym_ATpushIf] = ACTIONS(3377), - [anon_sym_ATprepend] = ACTIONS(3379), - [anon_sym_ATprependOnce] = ACTIONS(3381), - [anon_sym_ATelse] = ACTIONS(3383), - [aux_sym_conditional_keyword_token1] = ACTIONS(3385), - [anon_sym_ATif] = ACTIONS(3387), - [anon_sym_ATunless] = ACTIONS(3389), - [anon_sym_ATisset] = ACTIONS(3391), - [anon_sym_ATempty] = ACTIONS(3393), - [anon_sym_ATauth] = ACTIONS(3395), - [anon_sym_ATguest] = ACTIONS(3397), - [anon_sym_ATproduction] = ACTIONS(3399), - [anon_sym_ATenv] = ACTIONS(3401), - [anon_sym_AThasSection] = ACTIONS(3403), - [anon_sym_ATsectionMissing] = ACTIONS(3405), - [anon_sym_ATerror] = ACTIONS(3407), - [anon_sym_ATenderror] = ACTIONS(706), - [anon_sym_ATcan] = ACTIONS(3409), - [anon_sym_ATcannot] = ACTIONS(3411), - [anon_sym_ATcanany] = ACTIONS(3413), - [anon_sym_ATfeature] = ACTIONS(3415), - [aux_sym__custom_token1] = ACTIONS(3417), - [aux_sym__custom_token2] = ACTIONS(3419), - [anon_sym_ATswitch] = ACTIONS(3421), - [aux_sym_loop_operator_token1] = ACTIONS(3423), - [anon_sym_ATfor] = ACTIONS(3425), - [anon_sym_ATforeach] = ACTIONS(3427), - [anon_sym_ATforelse] = ACTIONS(3429), - [anon_sym_ATwhile] = ACTIONS(3431), - [anon_sym_ATsetup] = ACTIONS(3433), - [anon_sym_ATtask] = ACTIONS(3435), - [anon_sym_ATstory] = ACTIONS(3437), - [anon_sym_ATbefore] = ACTIONS(3439), - [anon_sym_ATafter] = ACTIONS(3441), - [anon_sym_ATsuccess] = ACTIONS(3443), - [anon_sym_ATfinished] = ACTIONS(3445), - [anon_sym_ATpersist] = ACTIONS(3447), - [anon_sym_ATteleport] = ACTIONS(3449), - [anon_sym_ATvolt] = ACTIONS(3451), - [aux_sym__text_token1] = ACTIONS(3453), - [aux_sym__text_token2] = ACTIONS(3453), - [aux_sym__text_token3] = ACTIONS(3455), - }, - [130] = { - [sym__definition] = STATE(128), - [sym_comment] = STATE(128), - [sym_keyword] = STATE(128), - [sym_php_statement] = STATE(128), - [sym__escaped] = STATE(1543), - [sym__unescaped] = STATE(1543), - [sym__raw] = STATE(1543), - [sym__inline_raw] = STATE(1543), - [sym__multi_line_raw] = STATE(1543), - [sym_attribute] = STATE(128), - [sym__inline_directive] = STATE(128), - [sym__nested_directive] = STATE(128), - [sym_fragment] = STATE(128), - [sym_section] = STATE(128), - [sym_inlineSection] = STATE(128), - [sym_once] = STATE(128), - [sym_verbatim] = STATE(128), - [sym_stack] = STATE(128), - [sym__push] = STATE(1544), - [sym__pushOnce] = STATE(1544), - [sym__pushIf] = STATE(1544), - [sym__prepend] = STATE(1544), - [sym__prependOnce] = STATE(1544), - [sym_conditional] = STATE(128), - [sym_conditional_keyword] = STATE(128), - [sym__if] = STATE(1545), - [sym__unless] = STATE(1545), - [sym__isset] = STATE(1545), - [sym__empty] = STATE(1545), - [sym__auth] = STATE(1545), - [sym__guest] = STATE(1545), - [sym__production] = STATE(1545), - [sym__env] = STATE(1545), - [sym__hasSection] = STATE(1545), - [sym__sectionMissing] = STATE(1545), - [sym__error] = STATE(1545), - [sym_authorization] = STATE(1545), - [sym__can] = STATE(1546), - [sym__cannot] = STATE(1546), - [sym__canany] = STATE(1546), - [sym__feature] = STATE(1545), - [sym__custom] = STATE(1545), - [sym_switch] = STATE(128), - [sym_loop] = STATE(128), - [sym_loop_operator] = STATE(128), - [sym__for] = STATE(1547), - [sym__foreach] = STATE(1547), - [sym__forelse] = STATE(1547), - [sym__while] = STATE(1547), - [sym_envoy] = STATE(128), - [sym__setup] = STATE(1543), - [sym__task] = STATE(1548), - [sym__story] = STATE(1548), - [sym__hooks] = STATE(1543), - [sym__before] = STATE(1543), - [sym__after] = STATE(1543), - [sym__envoy_error] = STATE(1543), - [sym__success] = STATE(1543), - [sym__finished] = STATE(1543), - [sym_livewire] = STATE(128), - [sym__persist] = STATE(1549), - [sym__teleport] = STATE(1549), - [sym__volt] = STATE(1549), - [sym_text] = STATE(128), - [sym__text] = STATE(711), - [aux_sym__if_statement_directive_body_repeat1] = STATE(128), - [aux_sym_php_only_repeat1] = STATE(711), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(2073), - [aux_sym_keyword_token1] = ACTIONS(2075), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2079), - [anon_sym_ATphp] = ACTIONS(2081), - [aux_sym_attribute_token1] = ACTIONS(2083), - [aux_sym__inline_directive_token1] = ACTIONS(2085), - [anon_sym_ATfragment] = ACTIONS(2087), - [anon_sym_ATsection] = ACTIONS(2089), - [anon_sym_ATonce] = ACTIONS(2091), - [anon_sym_ATverbatim] = ACTIONS(2093), - [anon_sym_ATpush] = ACTIONS(2095), - [anon_sym_ATpushOnce] = ACTIONS(2097), - [anon_sym_ATpushIf] = ACTIONS(2099), - [anon_sym_ATprepend] = ACTIONS(2101), - [anon_sym_ATprependOnce] = ACTIONS(2103), - [anon_sym_ATelse] = ACTIONS(2105), - [aux_sym_conditional_keyword_token1] = ACTIONS(2107), - [anon_sym_ATif] = ACTIONS(2109), - [anon_sym_ATunless] = ACTIONS(2111), - [anon_sym_ATisset] = ACTIONS(2113), - [anon_sym_ATempty] = ACTIONS(2115), - [anon_sym_ATendempty] = ACTIONS(706), - [anon_sym_ATauth] = ACTIONS(2117), - [anon_sym_ATguest] = ACTIONS(2119), - [anon_sym_ATproduction] = ACTIONS(2121), - [anon_sym_ATenv] = ACTIONS(2123), - [anon_sym_AThasSection] = ACTIONS(2125), - [anon_sym_ATsectionMissing] = ACTIONS(2127), - [anon_sym_ATerror] = ACTIONS(2129), - [anon_sym_ATcan] = ACTIONS(2131), - [anon_sym_ATcannot] = ACTIONS(2133), - [anon_sym_ATcanany] = ACTIONS(2135), - [anon_sym_ATfeature] = ACTIONS(2137), - [aux_sym__custom_token1] = ACTIONS(2139), - [aux_sym__custom_token2] = ACTIONS(2141), - [anon_sym_ATswitch] = ACTIONS(2143), - [aux_sym_loop_operator_token1] = ACTIONS(2145), - [anon_sym_ATfor] = ACTIONS(2147), - [anon_sym_ATforeach] = ACTIONS(2149), - [anon_sym_ATforelse] = ACTIONS(2151), - [anon_sym_ATwhile] = ACTIONS(2153), - [anon_sym_ATsetup] = ACTIONS(2155), - [anon_sym_ATtask] = ACTIONS(2157), - [anon_sym_ATstory] = ACTIONS(2159), - [anon_sym_ATbefore] = ACTIONS(2161), - [anon_sym_ATafter] = ACTIONS(2163), - [anon_sym_ATsuccess] = ACTIONS(2165), - [anon_sym_ATfinished] = ACTIONS(2167), - [anon_sym_ATpersist] = ACTIONS(2169), - [anon_sym_ATteleport] = ACTIONS(2171), - [anon_sym_ATvolt] = ACTIONS(2173), - [aux_sym__text_token1] = ACTIONS(2175), - [aux_sym__text_token2] = ACTIONS(2175), - [aux_sym__text_token3] = ACTIONS(2177), - }, - [131] = { [sym__definition] = STATE(129), - [sym_comment] = STATE(129), [sym_keyword] = STATE(129), [sym_php_statement] = STATE(129), - [sym__escaped] = STATE(1715), - [sym__unescaped] = STATE(1715), - [sym__raw] = STATE(1715), - [sym__inline_raw] = STATE(1715), - [sym__multi_line_raw] = STATE(1715), + [sym__escaped] = STATE(1513), + [sym__unescaped] = STATE(1513), + [sym__raw] = STATE(1513), + [sym__inline_raw] = STATE(1513), + [sym__multi_line_raw] = STATE(1513), [sym_attribute] = STATE(129), [sym__inline_directive] = STATE(129), [sym__nested_directive] = STATE(129), @@ -42212,989 +41334,858 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(129), [sym_verbatim] = STATE(129), [sym_stack] = STATE(129), - [sym__push] = STATE(1716), - [sym__pushOnce] = STATE(1716), - [sym__pushIf] = STATE(1716), - [sym__prepend] = STATE(1716), - [sym__prependOnce] = STATE(1716), + [sym__push] = STATE(1514), + [sym__pushOnce] = STATE(1514), + [sym__pushIf] = STATE(1514), + [sym__prepend] = STATE(1514), + [sym__prependOnce] = STATE(1514), [sym_conditional] = STATE(129), [sym_conditional_keyword] = STATE(129), - [sym__if] = STATE(1717), - [sym__unless] = STATE(1717), - [sym__isset] = STATE(1717), - [sym__empty] = STATE(1717), - [sym__auth] = STATE(1717), - [sym__guest] = STATE(1717), - [sym__production] = STATE(1717), - [sym__env] = STATE(1717), - [sym__hasSection] = STATE(1717), - [sym__sectionMissing] = STATE(1717), - [sym__error] = STATE(1717), - [sym_authorization] = STATE(1717), - [sym__can] = STATE(749), - [sym__cannot] = STATE(749), - [sym__canany] = STATE(749), - [sym__feature] = STATE(1717), - [sym__custom] = STATE(1717), + [sym__if] = STATE(1515), + [sym__unless] = STATE(1515), + [sym__isset] = STATE(1515), + [sym__empty] = STATE(1515), + [sym__auth] = STATE(1515), + [sym__guest] = STATE(1515), + [sym__production] = STATE(1515), + [sym__env] = STATE(1515), + [sym__hasSection] = STATE(1515), + [sym__sectionMissing] = STATE(1515), + [sym__error] = STATE(1515), + [sym_authorization] = STATE(1515), + [sym__can] = STATE(1516), + [sym__cannot] = STATE(1516), + [sym__canany] = STATE(1516), + [sym__feature] = STATE(1515), + [sym__custom] = STATE(1515), [sym_switch] = STATE(129), [sym_loop] = STATE(129), [sym_loop_operator] = STATE(129), - [sym__for] = STATE(1719), - [sym__foreach] = STATE(1719), - [sym__forelse] = STATE(1719), - [sym__while] = STATE(1719), + [sym__for] = STATE(1517), + [sym__foreach] = STATE(1517), + [sym__forelse] = STATE(1517), + [sym__while] = STATE(1517), [sym_envoy] = STATE(129), - [sym__setup] = STATE(1715), - [sym__task] = STATE(1720), - [sym__story] = STATE(1720), - [sym__hooks] = STATE(1715), - [sym__before] = STATE(1715), - [sym__after] = STATE(1715), - [sym__envoy_error] = STATE(1715), - [sym__success] = STATE(1715), - [sym__finished] = STATE(1715), + [sym__setup] = STATE(1513), + [sym__task] = STATE(1518), + [sym__story] = STATE(1518), + [sym__hooks] = STATE(1513), + [sym__before] = STATE(1513), + [sym__after] = STATE(1513), + [sym__envoy_error] = STATE(1513), + [sym__success] = STATE(1513), + [sym__finished] = STATE(1513), [sym_livewire] = STATE(129), - [sym__persist] = STATE(1721), - [sym__teleport] = STATE(1721), - [sym__volt] = STATE(1721), + [sym__persist] = STATE(1519), + [sym__teleport] = STATE(1519), + [sym__volt] = STATE(1519), [sym_text] = STATE(129), - [sym__text] = STATE(717), + [sym__text] = STATE(677), [aux_sym__if_statement_directive_body_repeat1] = STATE(129), - [aux_sym_php_only_repeat1] = STATE(717), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3351), - [aux_sym_keyword_token1] = ACTIONS(3353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3355), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3357), - [anon_sym_ATphp] = ACTIONS(3359), - [aux_sym_attribute_token1] = ACTIONS(3361), - [aux_sym__inline_directive_token1] = ACTIONS(3363), - [anon_sym_ATfragment] = ACTIONS(3365), - [anon_sym_ATsection] = ACTIONS(3367), - [anon_sym_ATonce] = ACTIONS(3369), - [anon_sym_ATverbatim] = ACTIONS(3371), - [anon_sym_ATpush] = ACTIONS(3373), - [anon_sym_ATpushOnce] = ACTIONS(3375), - [anon_sym_ATpushIf] = ACTIONS(3377), - [anon_sym_ATprepend] = ACTIONS(3379), - [anon_sym_ATprependOnce] = ACTIONS(3381), - [anon_sym_ATelse] = ACTIONS(3383), - [aux_sym_conditional_keyword_token1] = ACTIONS(3385), - [anon_sym_ATif] = ACTIONS(3387), - [anon_sym_ATunless] = ACTIONS(3389), - [anon_sym_ATisset] = ACTIONS(3391), - [anon_sym_ATempty] = ACTIONS(3393), - [anon_sym_ATauth] = ACTIONS(3395), - [anon_sym_ATguest] = ACTIONS(3397), - [anon_sym_ATproduction] = ACTIONS(3399), - [anon_sym_ATenv] = ACTIONS(3401), - [anon_sym_AThasSection] = ACTIONS(3403), - [anon_sym_ATsectionMissing] = ACTIONS(3405), - [anon_sym_ATerror] = ACTIONS(3407), - [anon_sym_ATenderror] = ACTIONS(660), - [anon_sym_ATcan] = ACTIONS(3409), - [anon_sym_ATcannot] = ACTIONS(3411), - [anon_sym_ATcanany] = ACTIONS(3413), - [anon_sym_ATfeature] = ACTIONS(3415), - [aux_sym__custom_token1] = ACTIONS(3417), - [aux_sym__custom_token2] = ACTIONS(3419), - [anon_sym_ATswitch] = ACTIONS(3421), - [aux_sym_loop_operator_token1] = ACTIONS(3423), - [anon_sym_ATfor] = ACTIONS(3425), - [anon_sym_ATforeach] = ACTIONS(3427), - [anon_sym_ATforelse] = ACTIONS(3429), - [anon_sym_ATwhile] = ACTIONS(3431), - [anon_sym_ATsetup] = ACTIONS(3433), - [anon_sym_ATtask] = ACTIONS(3435), - [anon_sym_ATstory] = ACTIONS(3437), - [anon_sym_ATbefore] = ACTIONS(3439), - [anon_sym_ATafter] = ACTIONS(3441), - [anon_sym_ATsuccess] = ACTIONS(3443), - [anon_sym_ATfinished] = ACTIONS(3445), - [anon_sym_ATpersist] = ACTIONS(3447), - [anon_sym_ATteleport] = ACTIONS(3449), - [anon_sym_ATvolt] = ACTIONS(3451), - [aux_sym__text_token1] = ACTIONS(3453), - [aux_sym__text_token2] = ACTIONS(3453), - [aux_sym__text_token3] = ACTIONS(3455), + [aux_sym_php_only_repeat1] = STATE(677), + [sym_comment] = ACTIONS(3212), + [aux_sym_keyword_token1] = ACTIONS(3215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3218), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3221), + [anon_sym_ATphp] = ACTIONS(3224), + [aux_sym_attribute_token1] = ACTIONS(3227), + [aux_sym__inline_directive_token1] = ACTIONS(3230), + [anon_sym_ATfragment] = ACTIONS(3233), + [anon_sym_ATsection] = ACTIONS(3236), + [anon_sym_ATonce] = ACTIONS(3239), + [anon_sym_ATverbatim] = ACTIONS(3242), + [anon_sym_ATpush] = ACTIONS(3245), + [anon_sym_ATpushOnce] = ACTIONS(3248), + [anon_sym_ATpushIf] = ACTIONS(3251), + [anon_sym_ATprepend] = ACTIONS(3254), + [anon_sym_ATprependOnce] = ACTIONS(3257), + [anon_sym_ATelse] = ACTIONS(3260), + [aux_sym_conditional_keyword_token1] = ACTIONS(3263), + [anon_sym_ATif] = ACTIONS(3266), + [anon_sym_ATunless] = ACTIONS(3269), + [anon_sym_ATisset] = ACTIONS(3272), + [anon_sym_ATempty] = ACTIONS(3275), + [anon_sym_ATendempty] = ACTIONS(633), + [anon_sym_ATauth] = ACTIONS(3278), + [anon_sym_ATguest] = ACTIONS(3281), + [anon_sym_ATproduction] = ACTIONS(3284), + [anon_sym_ATenv] = ACTIONS(3287), + [anon_sym_AThasSection] = ACTIONS(3290), + [anon_sym_ATsectionMissing] = ACTIONS(3293), + [anon_sym_ATerror] = ACTIONS(3296), + [anon_sym_ATcan] = ACTIONS(3299), + [anon_sym_ATcannot] = ACTIONS(3302), + [anon_sym_ATcanany] = ACTIONS(3305), + [anon_sym_ATfeature] = ACTIONS(3308), + [aux_sym__custom_token1] = ACTIONS(3311), + [aux_sym__custom_token2] = ACTIONS(3314), + [anon_sym_ATswitch] = ACTIONS(3317), + [aux_sym_loop_operator_token1] = ACTIONS(3320), + [anon_sym_ATfor] = ACTIONS(3323), + [anon_sym_ATforeach] = ACTIONS(3326), + [anon_sym_ATforelse] = ACTIONS(3329), + [anon_sym_ATwhile] = ACTIONS(3332), + [anon_sym_ATsetup] = ACTIONS(3335), + [anon_sym_ATtask] = ACTIONS(3338), + [anon_sym_ATstory] = ACTIONS(3341), + [anon_sym_ATbefore] = ACTIONS(3344), + [anon_sym_ATafter] = ACTIONS(3347), + [anon_sym_ATsuccess] = ACTIONS(3350), + [anon_sym_ATfinished] = ACTIONS(3353), + [anon_sym_ATpersist] = ACTIONS(3356), + [anon_sym_ATteleport] = ACTIONS(3359), + [anon_sym_ATvolt] = ACTIONS(3362), + [aux_sym__text_token1] = ACTIONS(3365), + [aux_sym__text_token2] = ACTIONS(3365), + [aux_sym__text_token3] = ACTIONS(3368), + }, + [130] = { + [sym__definition] = STATE(86), + [sym_keyword] = STATE(86), + [sym_php_statement] = STATE(86), + [sym__escaped] = STATE(1681), + [sym__unescaped] = STATE(1681), + [sym__raw] = STATE(1681), + [sym__inline_raw] = STATE(1681), + [sym__multi_line_raw] = STATE(1681), + [sym_attribute] = STATE(86), + [sym__inline_directive] = STATE(86), + [sym__nested_directive] = STATE(86), + [sym_fragment] = STATE(86), + [sym_section] = STATE(86), + [sym_inlineSection] = STATE(86), + [sym_once] = STATE(86), + [sym_verbatim] = STATE(86), + [sym_stack] = STATE(86), + [sym__push] = STATE(1682), + [sym__pushOnce] = STATE(1682), + [sym__pushIf] = STATE(1682), + [sym__prepend] = STATE(1682), + [sym__prependOnce] = STATE(1682), + [sym_conditional] = STATE(86), + [sym_conditional_keyword] = STATE(86), + [sym__if] = STATE(1683), + [sym__unless] = STATE(1683), + [sym__isset] = STATE(1683), + [sym__empty] = STATE(1683), + [sym__auth] = STATE(1683), + [sym__guest] = STATE(1683), + [sym__production] = STATE(1683), + [sym__env] = STATE(1683), + [sym__hasSection] = STATE(1683), + [sym__sectionMissing] = STATE(1683), + [sym__error] = STATE(1683), + [sym_authorization] = STATE(1683), + [sym__can] = STATE(1684), + [sym__cannot] = STATE(1684), + [sym__canany] = STATE(1684), + [sym__feature] = STATE(1683), + [sym__custom] = STATE(1683), + [sym_switch] = STATE(86), + [sym_loop] = STATE(86), + [sym_loop_operator] = STATE(86), + [sym__for] = STATE(749), + [sym__foreach] = STATE(749), + [sym__forelse] = STATE(749), + [sym__while] = STATE(749), + [sym_envoy] = STATE(86), + [sym__setup] = STATE(1681), + [sym__task] = STATE(1686), + [sym__story] = STATE(1686), + [sym__hooks] = STATE(1681), + [sym__before] = STATE(1681), + [sym__after] = STATE(1681), + [sym__envoy_error] = STATE(1681), + [sym__success] = STATE(1681), + [sym__finished] = STATE(1681), + [sym_livewire] = STATE(86), + [sym__persist] = STATE(1687), + [sym__teleport] = STATE(1687), + [sym__volt] = STATE(1687), + [sym_text] = STATE(86), + [sym__text] = STATE(710), + [aux_sym__if_statement_directive_body_repeat1] = STATE(86), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(3371), + [aux_sym_keyword_token1] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3377), + [anon_sym_ATphp] = ACTIONS(3379), + [aux_sym_attribute_token1] = ACTIONS(3381), + [aux_sym__inline_directive_token1] = ACTIONS(3383), + [anon_sym_ATfragment] = ACTIONS(3385), + [anon_sym_ATsection] = ACTIONS(3387), + [anon_sym_ATonce] = ACTIONS(3389), + [anon_sym_ATverbatim] = ACTIONS(3391), + [anon_sym_ATpush] = ACTIONS(3393), + [anon_sym_ATpushOnce] = ACTIONS(3395), + [anon_sym_ATpushIf] = ACTIONS(3397), + [anon_sym_ATprepend] = ACTIONS(3399), + [anon_sym_ATprependOnce] = ACTIONS(3401), + [anon_sym_ATelse] = ACTIONS(3403), + [aux_sym_conditional_keyword_token1] = ACTIONS(3405), + [anon_sym_ATif] = ACTIONS(3407), + [anon_sym_ATunless] = ACTIONS(3409), + [anon_sym_ATisset] = ACTIONS(3411), + [anon_sym_ATempty] = ACTIONS(3413), + [anon_sym_ATauth] = ACTIONS(3415), + [anon_sym_ATguest] = ACTIONS(3417), + [anon_sym_ATproduction] = ACTIONS(3419), + [anon_sym_ATenv] = ACTIONS(3421), + [anon_sym_AThasSection] = ACTIONS(3423), + [anon_sym_ATsectionMissing] = ACTIONS(3425), + [anon_sym_ATerror] = ACTIONS(3427), + [anon_sym_ATenderror] = ACTIONS(497), + [anon_sym_ATcan] = ACTIONS(3429), + [anon_sym_ATcannot] = ACTIONS(3431), + [anon_sym_ATcanany] = ACTIONS(3433), + [anon_sym_ATfeature] = ACTIONS(3435), + [aux_sym__custom_token1] = ACTIONS(3437), + [aux_sym__custom_token2] = ACTIONS(3439), + [anon_sym_ATswitch] = ACTIONS(3441), + [aux_sym_loop_operator_token1] = ACTIONS(3443), + [anon_sym_ATfor] = ACTIONS(3445), + [anon_sym_ATforeach] = ACTIONS(3447), + [anon_sym_ATforelse] = ACTIONS(3449), + [anon_sym_ATwhile] = ACTIONS(3451), + [anon_sym_ATsetup] = ACTIONS(3453), + [anon_sym_ATtask] = ACTIONS(3455), + [anon_sym_ATstory] = ACTIONS(3457), + [anon_sym_ATbefore] = ACTIONS(3459), + [anon_sym_ATafter] = ACTIONS(3461), + [anon_sym_ATsuccess] = ACTIONS(3463), + [anon_sym_ATfinished] = ACTIONS(3465), + [anon_sym_ATpersist] = ACTIONS(3467), + [anon_sym_ATteleport] = ACTIONS(3469), + [anon_sym_ATvolt] = ACTIONS(3471), + [aux_sym__text_token1] = ACTIONS(3473), + [aux_sym__text_token2] = ACTIONS(3473), + [aux_sym__text_token3] = ACTIONS(3475), + }, + [131] = { + [sym__definition] = STATE(130), + [sym_keyword] = STATE(130), + [sym_php_statement] = STATE(130), + [sym__escaped] = STATE(1681), + [sym__unescaped] = STATE(1681), + [sym__raw] = STATE(1681), + [sym__inline_raw] = STATE(1681), + [sym__multi_line_raw] = STATE(1681), + [sym_attribute] = STATE(130), + [sym__inline_directive] = STATE(130), + [sym__nested_directive] = STATE(130), + [sym_fragment] = STATE(130), + [sym_section] = STATE(130), + [sym_inlineSection] = STATE(130), + [sym_once] = STATE(130), + [sym_verbatim] = STATE(130), + [sym_stack] = STATE(130), + [sym__push] = STATE(1682), + [sym__pushOnce] = STATE(1682), + [sym__pushIf] = STATE(1682), + [sym__prepend] = STATE(1682), + [sym__prependOnce] = STATE(1682), + [sym_conditional] = STATE(130), + [sym_conditional_keyword] = STATE(130), + [sym__if] = STATE(1683), + [sym__unless] = STATE(1683), + [sym__isset] = STATE(1683), + [sym__empty] = STATE(1683), + [sym__auth] = STATE(1683), + [sym__guest] = STATE(1683), + [sym__production] = STATE(1683), + [sym__env] = STATE(1683), + [sym__hasSection] = STATE(1683), + [sym__sectionMissing] = STATE(1683), + [sym__error] = STATE(1683), + [sym_authorization] = STATE(1683), + [sym__can] = STATE(1684), + [sym__cannot] = STATE(1684), + [sym__canany] = STATE(1684), + [sym__feature] = STATE(1683), + [sym__custom] = STATE(1683), + [sym_switch] = STATE(130), + [sym_loop] = STATE(130), + [sym_loop_operator] = STATE(130), + [sym__for] = STATE(749), + [sym__foreach] = STATE(749), + [sym__forelse] = STATE(749), + [sym__while] = STATE(749), + [sym_envoy] = STATE(130), + [sym__setup] = STATE(1681), + [sym__task] = STATE(1686), + [sym__story] = STATE(1686), + [sym__hooks] = STATE(1681), + [sym__before] = STATE(1681), + [sym__after] = STATE(1681), + [sym__envoy_error] = STATE(1681), + [sym__success] = STATE(1681), + [sym__finished] = STATE(1681), + [sym_livewire] = STATE(130), + [sym__persist] = STATE(1687), + [sym__teleport] = STATE(1687), + [sym__volt] = STATE(1687), + [sym_text] = STATE(130), + [sym__text] = STATE(710), + [aux_sym__if_statement_directive_body_repeat1] = STATE(130), + [aux_sym_php_only_repeat1] = STATE(710), + [sym_comment] = ACTIONS(3477), + [aux_sym_keyword_token1] = ACTIONS(3373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3375), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3377), + [anon_sym_ATphp] = ACTIONS(3379), + [aux_sym_attribute_token1] = ACTIONS(3381), + [aux_sym__inline_directive_token1] = ACTIONS(3383), + [anon_sym_ATfragment] = ACTIONS(3385), + [anon_sym_ATsection] = ACTIONS(3387), + [anon_sym_ATonce] = ACTIONS(3389), + [anon_sym_ATverbatim] = ACTIONS(3391), + [anon_sym_ATpush] = ACTIONS(3393), + [anon_sym_ATpushOnce] = ACTIONS(3395), + [anon_sym_ATpushIf] = ACTIONS(3397), + [anon_sym_ATprepend] = ACTIONS(3399), + [anon_sym_ATprependOnce] = ACTIONS(3401), + [anon_sym_ATelse] = ACTIONS(3403), + [aux_sym_conditional_keyword_token1] = ACTIONS(3405), + [anon_sym_ATif] = ACTIONS(3407), + [anon_sym_ATunless] = ACTIONS(3409), + [anon_sym_ATisset] = ACTIONS(3411), + [anon_sym_ATempty] = ACTIONS(3413), + [anon_sym_ATauth] = ACTIONS(3415), + [anon_sym_ATguest] = ACTIONS(3417), + [anon_sym_ATproduction] = ACTIONS(3419), + [anon_sym_ATenv] = ACTIONS(3421), + [anon_sym_AThasSection] = ACTIONS(3423), + [anon_sym_ATsectionMissing] = ACTIONS(3425), + [anon_sym_ATerror] = ACTIONS(3427), + [anon_sym_ATenderror] = ACTIONS(706), + [anon_sym_ATcan] = ACTIONS(3429), + [anon_sym_ATcannot] = ACTIONS(3431), + [anon_sym_ATcanany] = ACTIONS(3433), + [anon_sym_ATfeature] = ACTIONS(3435), + [aux_sym__custom_token1] = ACTIONS(3437), + [aux_sym__custom_token2] = ACTIONS(3439), + [anon_sym_ATswitch] = ACTIONS(3441), + [aux_sym_loop_operator_token1] = ACTIONS(3443), + [anon_sym_ATfor] = ACTIONS(3445), + [anon_sym_ATforeach] = ACTIONS(3447), + [anon_sym_ATforelse] = ACTIONS(3449), + [anon_sym_ATwhile] = ACTIONS(3451), + [anon_sym_ATsetup] = ACTIONS(3453), + [anon_sym_ATtask] = ACTIONS(3455), + [anon_sym_ATstory] = ACTIONS(3457), + [anon_sym_ATbefore] = ACTIONS(3459), + [anon_sym_ATafter] = ACTIONS(3461), + [anon_sym_ATsuccess] = ACTIONS(3463), + [anon_sym_ATfinished] = ACTIONS(3465), + [anon_sym_ATpersist] = ACTIONS(3467), + [anon_sym_ATteleport] = ACTIONS(3469), + [anon_sym_ATvolt] = ACTIONS(3471), + [aux_sym__text_token1] = ACTIONS(3473), + [aux_sym__text_token2] = ACTIONS(3473), + [aux_sym__text_token3] = ACTIONS(3475), }, [132] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3457), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3479), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [133] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3459), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3481), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [134] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3461), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3483), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [135] = { - [sym__definition] = STATE(135), - [sym_comment] = STATE(135), - [sym_keyword] = STATE(135), - [sym_php_statement] = STATE(135), - [sym__escaped] = STATE(1456), - [sym__unescaped] = STATE(1456), - [sym__raw] = STATE(1456), - [sym__inline_raw] = STATE(1456), - [sym__multi_line_raw] = STATE(1456), - [sym_attribute] = STATE(135), - [sym__inline_directive] = STATE(135), - [sym__nested_directive] = STATE(135), - [sym_fragment] = STATE(135), - [sym_section] = STATE(135), - [sym_inlineSection] = STATE(135), - [sym_once] = STATE(135), - [sym_verbatim] = STATE(135), - [sym_stack] = STATE(135), - [sym__push] = STATE(1457), - [sym__pushOnce] = STATE(1457), - [sym__pushIf] = STATE(1457), - [sym__prepend] = STATE(1457), - [sym__prependOnce] = STATE(1457), - [sym_conditional] = STATE(135), - [sym_conditional_keyword] = STATE(135), - [sym__if] = STATE(1458), - [sym__unless] = STATE(1458), - [sym__isset] = STATE(1458), - [sym__empty] = STATE(1458), - [sym__auth] = STATE(1458), - [sym__guest] = STATE(1458), - [sym__production] = STATE(1458), - [sym__env] = STATE(1458), - [sym__hasSection] = STATE(1458), - [sym__sectionMissing] = STATE(1458), - [sym__error] = STATE(1458), - [sym_authorization] = STATE(1458), - [sym__can] = STATE(1459), - [sym__cannot] = STATE(1459), - [sym__canany] = STATE(1459), - [sym__feature] = STATE(1458), - [sym__custom] = STATE(1458), - [sym_switch] = STATE(135), - [sym_loop] = STATE(135), - [sym_loop_operator] = STATE(135), - [sym__for] = STATE(1460), - [sym__foreach] = STATE(1460), - [sym__forelse] = STATE(1460), - [sym__while] = STATE(1460), - [sym_envoy] = STATE(135), - [sym__setup] = STATE(1456), - [sym__task] = STATE(1461), - [sym__story] = STATE(1461), - [sym__hooks] = STATE(1456), - [sym__before] = STATE(1456), - [sym__after] = STATE(1456), - [sym__envoy_error] = STATE(1456), - [sym__success] = STATE(1456), - [sym__finished] = STATE(1456), - [sym_livewire] = STATE(135), - [sym__persist] = STATE(1462), - [sym__teleport] = STATE(1462), - [sym__volt] = STATE(1462), - [sym_text] = STATE(135), - [sym__text] = STATE(677), - [aux_sym__if_statement_directive_body_repeat1] = STATE(135), - [aux_sym_php_only_repeat1] = STATE(677), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3463), - [aux_sym_keyword_token1] = ACTIONS(3466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3472), - [anon_sym_ATphp] = ACTIONS(3475), - [aux_sym_attribute_token1] = ACTIONS(3478), - [aux_sym__inline_directive_token1] = ACTIONS(3481), - [anon_sym_ATfragment] = ACTIONS(3484), - [anon_sym_ATsection] = ACTIONS(3487), - [anon_sym_ATonce] = ACTIONS(3490), - [anon_sym_ATverbatim] = ACTIONS(3493), - [anon_sym_ATpush] = ACTIONS(3496), - [anon_sym_ATpushOnce] = ACTIONS(3499), - [anon_sym_ATpushIf] = ACTIONS(3502), - [anon_sym_ATprepend] = ACTIONS(3505), - [anon_sym_ATprependOnce] = ACTIONS(3508), - [anon_sym_ATelse] = ACTIONS(3511), - [aux_sym_conditional_keyword_token1] = ACTIONS(3514), - [anon_sym_ATif] = ACTIONS(3517), - [anon_sym_ATunless] = ACTIONS(3520), - [anon_sym_ATisset] = ACTIONS(3523), - [anon_sym_ATendisset] = ACTIONS(518), - [anon_sym_ATempty] = ACTIONS(3526), - [anon_sym_ATauth] = ACTIONS(3529), - [anon_sym_ATguest] = ACTIONS(3532), - [anon_sym_ATproduction] = ACTIONS(3535), - [anon_sym_ATenv] = ACTIONS(3538), - [anon_sym_AThasSection] = ACTIONS(3541), - [anon_sym_ATsectionMissing] = ACTIONS(3544), - [anon_sym_ATerror] = ACTIONS(3547), - [anon_sym_ATcan] = ACTIONS(3550), - [anon_sym_ATcannot] = ACTIONS(3553), - [anon_sym_ATcanany] = ACTIONS(3556), - [anon_sym_ATfeature] = ACTIONS(3559), - [aux_sym__custom_token1] = ACTIONS(3562), - [aux_sym__custom_token2] = ACTIONS(3565), - [anon_sym_ATswitch] = ACTIONS(3568), - [aux_sym_loop_operator_token1] = ACTIONS(3571), - [anon_sym_ATfor] = ACTIONS(3574), - [anon_sym_ATforeach] = ACTIONS(3577), - [anon_sym_ATforelse] = ACTIONS(3580), - [anon_sym_ATwhile] = ACTIONS(3583), - [anon_sym_ATsetup] = ACTIONS(3586), - [anon_sym_ATtask] = ACTIONS(3589), - [anon_sym_ATstory] = ACTIONS(3592), - [anon_sym_ATbefore] = ACTIONS(3595), - [anon_sym_ATafter] = ACTIONS(3598), - [anon_sym_ATsuccess] = ACTIONS(3601), - [anon_sym_ATfinished] = ACTIONS(3604), - [anon_sym_ATpersist] = ACTIONS(3607), - [anon_sym_ATteleport] = ACTIONS(3610), - [anon_sym_ATvolt] = ACTIONS(3613), - [aux_sym__text_token1] = ACTIONS(3616), - [aux_sym__text_token2] = ACTIONS(3616), - [aux_sym__text_token3] = ACTIONS(3619), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3485), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [136] = { - [sym__definition] = STATE(117), - [sym_comment] = STATE(117), - [sym_keyword] = STATE(117), - [sym_php_statement] = STATE(117), - [sym__escaped] = STATE(1630), - [sym__unescaped] = STATE(1630), - [sym__raw] = STATE(1630), - [sym__inline_raw] = STATE(1630), - [sym__multi_line_raw] = STATE(1630), - [sym_attribute] = STATE(117), - [sym__inline_directive] = STATE(117), - [sym__nested_directive] = STATE(117), - [sym_fragment] = STATE(117), - [sym_section] = STATE(117), - [sym_inlineSection] = STATE(117), - [sym_once] = STATE(117), - [sym_verbatim] = STATE(117), - [sym_stack] = STATE(117), - [sym__push] = STATE(1631), - [sym__pushOnce] = STATE(1631), - [sym__pushIf] = STATE(1631), - [sym__prepend] = STATE(1631), - [sym__prependOnce] = STATE(1631), - [sym_conditional] = STATE(117), - [sym_conditional_keyword] = STATE(117), - [sym__if] = STATE(1632), - [sym__unless] = STATE(1632), - [sym__isset] = STATE(1632), - [sym__empty] = STATE(1632), - [sym__auth] = STATE(1632), - [sym__guest] = STATE(1632), - [sym__production] = STATE(1632), - [sym__env] = STATE(1632), - [sym__hasSection] = STATE(1632), - [sym__sectionMissing] = STATE(1632), - [sym__error] = STATE(1632), - [sym_authorization] = STATE(1632), - [sym__can] = STATE(1633), - [sym__cannot] = STATE(1633), - [sym__canany] = STATE(1633), - [sym__feature] = STATE(1632), - [sym__custom] = STATE(1632), - [sym_switch] = STATE(117), - [sym_loop] = STATE(117), - [sym_loop_operator] = STATE(117), - [sym__for] = STATE(1634), - [sym__foreach] = STATE(1634), - [sym__forelse] = STATE(1634), - [sym__while] = STATE(1634), - [sym_envoy] = STATE(117), - [sym__setup] = STATE(1630), - [sym__task] = STATE(1635), - [sym__story] = STATE(1635), - [sym__hooks] = STATE(1630), - [sym__before] = STATE(1630), - [sym__after] = STATE(1630), - [sym__envoy_error] = STATE(1630), - [sym__success] = STATE(1630), - [sym__finished] = STATE(1630), - [sym_livewire] = STATE(117), - [sym__persist] = STATE(1636), - [sym__teleport] = STATE(1636), - [sym__volt] = STATE(1636), - [sym_text] = STATE(117), - [sym__text] = STATE(703), - [aux_sym__if_statement_directive_body_repeat1] = STATE(117), - [aux_sym_php_only_repeat1] = STATE(703), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3622), - [aux_sym_keyword_token1] = ACTIONS(3624), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3626), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3628), - [anon_sym_ATphp] = ACTIONS(3630), - [aux_sym_attribute_token1] = ACTIONS(3632), - [aux_sym__inline_directive_token1] = ACTIONS(3634), - [anon_sym_ATfragment] = ACTIONS(3636), - [anon_sym_ATsection] = ACTIONS(3638), - [anon_sym_ATonce] = ACTIONS(3640), - [anon_sym_ATverbatim] = ACTIONS(3642), - [anon_sym_ATpush] = ACTIONS(3644), - [anon_sym_ATpushOnce] = ACTIONS(3646), - [anon_sym_ATpushIf] = ACTIONS(3648), - [anon_sym_ATprepend] = ACTIONS(3650), - [anon_sym_ATprependOnce] = ACTIONS(3652), - [anon_sym_ATelse] = ACTIONS(3654), - [aux_sym_conditional_keyword_token1] = ACTIONS(3656), - [anon_sym_ATif] = ACTIONS(3658), - [anon_sym_ATunless] = ACTIONS(3660), - [anon_sym_ATisset] = ACTIONS(3662), - [anon_sym_ATempty] = ACTIONS(3664), - [anon_sym_ATauth] = ACTIONS(3666), - [anon_sym_ATguest] = ACTIONS(3668), - [anon_sym_ATproduction] = ACTIONS(3670), - [anon_sym_ATenv] = ACTIONS(3672), - [anon_sym_ATendenv] = ACTIONS(706), - [anon_sym_AThasSection] = ACTIONS(3674), - [anon_sym_ATsectionMissing] = ACTIONS(3676), - [anon_sym_ATerror] = ACTIONS(3678), - [anon_sym_ATcan] = ACTIONS(3680), - [anon_sym_ATcannot] = ACTIONS(3682), - [anon_sym_ATcanany] = ACTIONS(3684), - [anon_sym_ATfeature] = ACTIONS(3686), - [aux_sym__custom_token1] = ACTIONS(3688), - [aux_sym__custom_token2] = ACTIONS(3690), - [anon_sym_ATswitch] = ACTIONS(3692), - [aux_sym_loop_operator_token1] = ACTIONS(3694), - [anon_sym_ATfor] = ACTIONS(3696), - [anon_sym_ATforeach] = ACTIONS(3698), - [anon_sym_ATforelse] = ACTIONS(3700), - [anon_sym_ATwhile] = ACTIONS(3702), - [anon_sym_ATsetup] = ACTIONS(3704), - [anon_sym_ATtask] = ACTIONS(3706), - [anon_sym_ATstory] = ACTIONS(3708), - [anon_sym_ATbefore] = ACTIONS(3710), - [anon_sym_ATafter] = ACTIONS(3712), - [anon_sym_ATsuccess] = ACTIONS(3714), - [anon_sym_ATfinished] = ACTIONS(3716), - [anon_sym_ATpersist] = ACTIONS(3718), - [anon_sym_ATteleport] = ACTIONS(3720), - [anon_sym_ATvolt] = ACTIONS(3722), - [aux_sym__text_token1] = ACTIONS(3724), - [aux_sym__text_token2] = ACTIONS(3724), - [aux_sym__text_token3] = ACTIONS(3726), - }, - [137] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3728), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [138] = { - [sym__definition] = STATE(88), - [sym_comment] = STATE(88), - [sym_keyword] = STATE(88), - [sym_php_statement] = STATE(88), - [sym__escaped] = STATE(1366), - [sym__unescaped] = STATE(1366), - [sym__raw] = STATE(1366), - [sym__inline_raw] = STATE(1366), - [sym__multi_line_raw] = STATE(1366), - [sym_attribute] = STATE(88), - [sym__inline_directive] = STATE(88), - [sym__nested_directive] = STATE(88), - [sym_fragment] = STATE(88), - [sym_section] = STATE(88), - [sym_inlineSection] = STATE(88), - [sym_once] = STATE(88), - [sym_verbatim] = STATE(88), - [sym_stack] = STATE(88), - [sym__push] = STATE(1367), - [sym__pushOnce] = STATE(1367), - [sym__pushIf] = STATE(1367), - [sym__prepend] = STATE(1367), - [sym__prependOnce] = STATE(1367), - [sym_conditional] = STATE(88), - [sym_conditional_keyword] = STATE(88), - [sym__if] = STATE(1368), - [sym__unless] = STATE(1368), - [sym__isset] = STATE(1368), - [sym__empty] = STATE(1368), - [sym__auth] = STATE(1368), - [sym__guest] = STATE(1368), - [sym__production] = STATE(1368), - [sym__env] = STATE(1368), - [sym__hasSection] = STATE(1368), - [sym__sectionMissing] = STATE(1368), - [sym__error] = STATE(1368), - [sym_authorization] = STATE(1368), - [sym__can] = STATE(1369), - [sym__cannot] = STATE(1369), - [sym__canany] = STATE(1369), - [sym__feature] = STATE(1368), - [sym__custom] = STATE(1368), - [sym_switch] = STATE(88), - [sym_loop] = STATE(88), - [sym_loop_operator] = STATE(88), - [sym__for] = STATE(1370), - [sym__foreach] = STATE(1370), - [sym__forelse] = STATE(1370), - [sym__while] = STATE(1370), - [sym_envoy] = STATE(88), - [sym__setup] = STATE(1366), - [sym__task] = STATE(1371), - [sym__story] = STATE(1371), - [sym__hooks] = STATE(1366), - [sym__before] = STATE(1366), - [sym__after] = STATE(1366), - [sym__envoy_error] = STATE(1366), - [sym__success] = STATE(1366), - [sym__finished] = STATE(1366), - [sym_livewire] = STATE(88), - [sym__persist] = STATE(1372), - [sym__teleport] = STATE(1372), - [sym__volt] = STATE(1372), - [sym_text] = STATE(88), - [sym__text] = STATE(682), - [aux_sym__if_statement_directive_body_repeat1] = STATE(88), - [aux_sym_php_only_repeat1] = STATE(682), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(932), - [aux_sym_keyword_token1] = ACTIONS(934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(936), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(938), - [anon_sym_ATphp] = ACTIONS(940), - [aux_sym_attribute_token1] = ACTIONS(942), - [aux_sym__inline_directive_token1] = ACTIONS(944), - [anon_sym_ATfragment] = ACTIONS(946), - [anon_sym_ATsection] = ACTIONS(948), - [anon_sym_ATonce] = ACTIONS(950), - [anon_sym_ATverbatim] = ACTIONS(952), - [anon_sym_ATpush] = ACTIONS(954), - [anon_sym_ATpushOnce] = ACTIONS(956), - [anon_sym_ATpushIf] = ACTIONS(958), - [anon_sym_ATprepend] = ACTIONS(960), - [anon_sym_ATprependOnce] = ACTIONS(962), - [anon_sym_ATelse] = ACTIONS(964), - [aux_sym_conditional_keyword_token1] = ACTIONS(966), - [anon_sym_ATif] = ACTIONS(968), - [anon_sym_ATunless] = ACTIONS(970), - [anon_sym_ATendunless] = ACTIONS(660), - [anon_sym_ATisset] = ACTIONS(972), - [anon_sym_ATempty] = ACTIONS(974), - [anon_sym_ATauth] = ACTIONS(976), - [anon_sym_ATguest] = ACTIONS(978), - [anon_sym_ATproduction] = ACTIONS(980), - [anon_sym_ATenv] = ACTIONS(982), - [anon_sym_AThasSection] = ACTIONS(984), - [anon_sym_ATsectionMissing] = ACTIONS(986), - [anon_sym_ATerror] = ACTIONS(988), - [anon_sym_ATcan] = ACTIONS(990), - [anon_sym_ATcannot] = ACTIONS(992), - [anon_sym_ATcanany] = ACTIONS(994), - [anon_sym_ATfeature] = ACTIONS(996), - [aux_sym__custom_token1] = ACTIONS(998), - [aux_sym__custom_token2] = ACTIONS(1000), - [anon_sym_ATswitch] = ACTIONS(1002), - [aux_sym_loop_operator_token1] = ACTIONS(1004), - [anon_sym_ATfor] = ACTIONS(1006), - [anon_sym_ATforeach] = ACTIONS(1008), - [anon_sym_ATforelse] = ACTIONS(1010), - [anon_sym_ATwhile] = ACTIONS(1012), - [anon_sym_ATsetup] = ACTIONS(1014), - [anon_sym_ATtask] = ACTIONS(1016), - [anon_sym_ATstory] = ACTIONS(1018), - [anon_sym_ATbefore] = ACTIONS(1020), - [anon_sym_ATafter] = ACTIONS(1022), - [anon_sym_ATsuccess] = ACTIONS(1024), - [anon_sym_ATfinished] = ACTIONS(1026), - [anon_sym_ATpersist] = ACTIONS(1028), - [anon_sym_ATteleport] = ACTIONS(1030), - [anon_sym_ATvolt] = ACTIONS(1032), - [aux_sym__text_token1] = ACTIONS(1034), - [aux_sym__text_token2] = ACTIONS(1034), - [aux_sym__text_token3] = ACTIONS(1036), - }, - [139] = { [sym__definition] = STATE(136), - [sym_comment] = STATE(136), [sym_keyword] = STATE(136), [sym_php_statement] = STATE(136), - [sym__escaped] = STATE(1630), - [sym__unescaped] = STATE(1630), - [sym__raw] = STATE(1630), - [sym__inline_raw] = STATE(1630), - [sym__multi_line_raw] = STATE(1630), + [sym__escaped] = STATE(1428), + [sym__unescaped] = STATE(1428), + [sym__raw] = STATE(1428), + [sym__inline_raw] = STATE(1428), + [sym__multi_line_raw] = STATE(1428), [sym_attribute] = STATE(136), [sym__inline_directive] = STATE(136), [sym__nested_directive] = STATE(136), @@ -43204,1235 +42195,1594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(136), [sym_verbatim] = STATE(136), [sym_stack] = STATE(136), - [sym__push] = STATE(1631), - [sym__pushOnce] = STATE(1631), - [sym__pushIf] = STATE(1631), - [sym__prepend] = STATE(1631), - [sym__prependOnce] = STATE(1631), + [sym__push] = STATE(1429), + [sym__pushOnce] = STATE(1429), + [sym__pushIf] = STATE(1429), + [sym__prepend] = STATE(1429), + [sym__prependOnce] = STATE(1429), [sym_conditional] = STATE(136), [sym_conditional_keyword] = STATE(136), - [sym__if] = STATE(1632), - [sym__unless] = STATE(1632), - [sym__isset] = STATE(1632), - [sym__empty] = STATE(1632), - [sym__auth] = STATE(1632), - [sym__guest] = STATE(1632), - [sym__production] = STATE(1632), - [sym__env] = STATE(1632), - [sym__hasSection] = STATE(1632), - [sym__sectionMissing] = STATE(1632), - [sym__error] = STATE(1632), - [sym_authorization] = STATE(1632), - [sym__can] = STATE(1633), - [sym__cannot] = STATE(1633), - [sym__canany] = STATE(1633), - [sym__feature] = STATE(1632), - [sym__custom] = STATE(1632), + [sym__if] = STATE(1430), + [sym__unless] = STATE(1430), + [sym__isset] = STATE(1430), + [sym__empty] = STATE(1430), + [sym__auth] = STATE(1430), + [sym__guest] = STATE(1430), + [sym__production] = STATE(1430), + [sym__env] = STATE(1430), + [sym__hasSection] = STATE(1430), + [sym__sectionMissing] = STATE(1430), + [sym__error] = STATE(1430), + [sym_authorization] = STATE(1430), + [sym__can] = STATE(1431), + [sym__cannot] = STATE(1431), + [sym__canany] = STATE(1431), + [sym__feature] = STATE(1430), + [sym__custom] = STATE(1430), [sym_switch] = STATE(136), [sym_loop] = STATE(136), [sym_loop_operator] = STATE(136), - [sym__for] = STATE(1634), - [sym__foreach] = STATE(1634), - [sym__forelse] = STATE(1634), - [sym__while] = STATE(1634), + [sym__for] = STATE(1432), + [sym__foreach] = STATE(1432), + [sym__forelse] = STATE(1432), + [sym__while] = STATE(1432), [sym_envoy] = STATE(136), - [sym__setup] = STATE(1630), - [sym__task] = STATE(1635), - [sym__story] = STATE(1635), - [sym__hooks] = STATE(1630), - [sym__before] = STATE(1630), - [sym__after] = STATE(1630), - [sym__envoy_error] = STATE(1630), - [sym__success] = STATE(1630), - [sym__finished] = STATE(1630), + [sym__setup] = STATE(1428), + [sym__task] = STATE(1433), + [sym__story] = STATE(1433), + [sym__hooks] = STATE(1428), + [sym__before] = STATE(1428), + [sym__after] = STATE(1428), + [sym__envoy_error] = STATE(1428), + [sym__success] = STATE(1428), + [sym__finished] = STATE(1428), [sym_livewire] = STATE(136), - [sym__persist] = STATE(1636), - [sym__teleport] = STATE(1636), - [sym__volt] = STATE(1636), + [sym__persist] = STATE(1434), + [sym__teleport] = STATE(1434), + [sym__volt] = STATE(1434), [sym_text] = STATE(136), - [sym__text] = STATE(703), + [sym__text] = STATE(681), [aux_sym__if_statement_directive_body_repeat1] = STATE(136), - [aux_sym_php_only_repeat1] = STATE(703), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3622), - [aux_sym_keyword_token1] = ACTIONS(3624), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3626), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3628), - [anon_sym_ATphp] = ACTIONS(3630), - [aux_sym_attribute_token1] = ACTIONS(3632), - [aux_sym__inline_directive_token1] = ACTIONS(3634), - [anon_sym_ATfragment] = ACTIONS(3636), - [anon_sym_ATsection] = ACTIONS(3638), - [anon_sym_ATonce] = ACTIONS(3640), - [anon_sym_ATverbatim] = ACTIONS(3642), - [anon_sym_ATpush] = ACTIONS(3644), - [anon_sym_ATpushOnce] = ACTIONS(3646), - [anon_sym_ATpushIf] = ACTIONS(3648), - [anon_sym_ATprepend] = ACTIONS(3650), - [anon_sym_ATprependOnce] = ACTIONS(3652), - [anon_sym_ATelse] = ACTIONS(3654), - [aux_sym_conditional_keyword_token1] = ACTIONS(3656), - [anon_sym_ATif] = ACTIONS(3658), - [anon_sym_ATunless] = ACTIONS(3660), - [anon_sym_ATisset] = ACTIONS(3662), - [anon_sym_ATempty] = ACTIONS(3664), - [anon_sym_ATauth] = ACTIONS(3666), - [anon_sym_ATguest] = ACTIONS(3668), - [anon_sym_ATproduction] = ACTIONS(3670), - [anon_sym_ATenv] = ACTIONS(3672), - [anon_sym_ATendenv] = ACTIONS(660), - [anon_sym_AThasSection] = ACTIONS(3674), - [anon_sym_ATsectionMissing] = ACTIONS(3676), - [anon_sym_ATerror] = ACTIONS(3678), - [anon_sym_ATcan] = ACTIONS(3680), - [anon_sym_ATcannot] = ACTIONS(3682), - [anon_sym_ATcanany] = ACTIONS(3684), - [anon_sym_ATfeature] = ACTIONS(3686), - [aux_sym__custom_token1] = ACTIONS(3688), - [aux_sym__custom_token2] = ACTIONS(3690), - [anon_sym_ATswitch] = ACTIONS(3692), - [aux_sym_loop_operator_token1] = ACTIONS(3694), - [anon_sym_ATfor] = ACTIONS(3696), - [anon_sym_ATforeach] = ACTIONS(3698), - [anon_sym_ATforelse] = ACTIONS(3700), - [anon_sym_ATwhile] = ACTIONS(3702), - [anon_sym_ATsetup] = ACTIONS(3704), - [anon_sym_ATtask] = ACTIONS(3706), - [anon_sym_ATstory] = ACTIONS(3708), - [anon_sym_ATbefore] = ACTIONS(3710), - [anon_sym_ATafter] = ACTIONS(3712), - [anon_sym_ATsuccess] = ACTIONS(3714), - [anon_sym_ATfinished] = ACTIONS(3716), - [anon_sym_ATpersist] = ACTIONS(3718), - [anon_sym_ATteleport] = ACTIONS(3720), - [anon_sym_ATvolt] = ACTIONS(3722), - [aux_sym__text_token1] = ACTIONS(3724), - [aux_sym__text_token2] = ACTIONS(3724), - [aux_sym__text_token3] = ACTIONS(3726), + [aux_sym_php_only_repeat1] = STATE(681), + [sym_comment] = ACTIONS(3487), + [aux_sym_keyword_token1] = ACTIONS(3490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3493), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3496), + [anon_sym_ATphp] = ACTIONS(3499), + [aux_sym_attribute_token1] = ACTIONS(3502), + [aux_sym__inline_directive_token1] = ACTIONS(3505), + [anon_sym_ATfragment] = ACTIONS(3508), + [anon_sym_ATsection] = ACTIONS(3511), + [anon_sym_ATonce] = ACTIONS(3514), + [anon_sym_ATverbatim] = ACTIONS(3517), + [anon_sym_ATpush] = ACTIONS(3520), + [anon_sym_ATpushOnce] = ACTIONS(3523), + [anon_sym_ATpushIf] = ACTIONS(3526), + [anon_sym_ATprepend] = ACTIONS(3529), + [anon_sym_ATprependOnce] = ACTIONS(3532), + [anon_sym_ATelse] = ACTIONS(3535), + [aux_sym_conditional_keyword_token1] = ACTIONS(3538), + [anon_sym_ATif] = ACTIONS(3541), + [anon_sym_ATunless] = ACTIONS(3544), + [anon_sym_ATisset] = ACTIONS(3547), + [anon_sym_ATendisset] = ACTIONS(633), + [anon_sym_ATempty] = ACTIONS(3550), + [anon_sym_ATauth] = ACTIONS(3553), + [anon_sym_ATguest] = ACTIONS(3556), + [anon_sym_ATproduction] = ACTIONS(3559), + [anon_sym_ATenv] = ACTIONS(3562), + [anon_sym_AThasSection] = ACTIONS(3565), + [anon_sym_ATsectionMissing] = ACTIONS(3568), + [anon_sym_ATerror] = ACTIONS(3571), + [anon_sym_ATcan] = ACTIONS(3574), + [anon_sym_ATcannot] = ACTIONS(3577), + [anon_sym_ATcanany] = ACTIONS(3580), + [anon_sym_ATfeature] = ACTIONS(3583), + [aux_sym__custom_token1] = ACTIONS(3586), + [aux_sym__custom_token2] = ACTIONS(3589), + [anon_sym_ATswitch] = ACTIONS(3592), + [aux_sym_loop_operator_token1] = ACTIONS(3595), + [anon_sym_ATfor] = ACTIONS(3598), + [anon_sym_ATforeach] = ACTIONS(3601), + [anon_sym_ATforelse] = ACTIONS(3604), + [anon_sym_ATwhile] = ACTIONS(3607), + [anon_sym_ATsetup] = ACTIONS(3610), + [anon_sym_ATtask] = ACTIONS(3613), + [anon_sym_ATstory] = ACTIONS(3616), + [anon_sym_ATbefore] = ACTIONS(3619), + [anon_sym_ATafter] = ACTIONS(3622), + [anon_sym_ATsuccess] = ACTIONS(3625), + [anon_sym_ATfinished] = ACTIONS(3628), + [anon_sym_ATpersist] = ACTIONS(3631), + [anon_sym_ATteleport] = ACTIONS(3634), + [anon_sym_ATvolt] = ACTIONS(3637), + [aux_sym__text_token1] = ACTIONS(3640), + [aux_sym__text_token2] = ACTIONS(3640), + [aux_sym__text_token3] = ACTIONS(3643), + }, + [137] = { + [sym__definition] = STATE(101), + [sym_keyword] = STATE(101), + [sym_php_statement] = STATE(101), + [sym__escaped] = STATE(1598), + [sym__unescaped] = STATE(1598), + [sym__raw] = STATE(1598), + [sym__inline_raw] = STATE(1598), + [sym__multi_line_raw] = STATE(1598), + [sym_attribute] = STATE(101), + [sym__inline_directive] = STATE(101), + [sym__nested_directive] = STATE(101), + [sym_fragment] = STATE(101), + [sym_section] = STATE(101), + [sym_inlineSection] = STATE(101), + [sym_once] = STATE(101), + [sym_verbatim] = STATE(101), + [sym_stack] = STATE(101), + [sym__push] = STATE(1599), + [sym__pushOnce] = STATE(1599), + [sym__pushIf] = STATE(1599), + [sym__prepend] = STATE(1599), + [sym__prependOnce] = STATE(1599), + [sym_conditional] = STATE(101), + [sym_conditional_keyword] = STATE(101), + [sym__if] = STATE(1600), + [sym__unless] = STATE(1600), + [sym__isset] = STATE(1600), + [sym__empty] = STATE(1600), + [sym__auth] = STATE(1600), + [sym__guest] = STATE(1600), + [sym__production] = STATE(1600), + [sym__env] = STATE(1600), + [sym__hasSection] = STATE(1600), + [sym__sectionMissing] = STATE(1600), + [sym__error] = STATE(1600), + [sym_authorization] = STATE(1600), + [sym__can] = STATE(1601), + [sym__cannot] = STATE(1601), + [sym__canany] = STATE(1601), + [sym__feature] = STATE(1600), + [sym__custom] = STATE(1600), + [sym_switch] = STATE(101), + [sym_loop] = STATE(101), + [sym_loop_operator] = STATE(101), + [sym__for] = STATE(1602), + [sym__foreach] = STATE(1602), + [sym__forelse] = STATE(1602), + [sym__while] = STATE(1602), + [sym_envoy] = STATE(101), + [sym__setup] = STATE(1598), + [sym__task] = STATE(1603), + [sym__story] = STATE(1603), + [sym__hooks] = STATE(1598), + [sym__before] = STATE(1598), + [sym__after] = STATE(1598), + [sym__envoy_error] = STATE(1598), + [sym__success] = STATE(1598), + [sym__finished] = STATE(1598), + [sym_livewire] = STATE(101), + [sym__persist] = STATE(1604), + [sym__teleport] = STATE(1604), + [sym__volt] = STATE(1604), + [sym_text] = STATE(101), + [sym__text] = STATE(674), + [aux_sym__if_statement_directive_body_repeat1] = STATE(101), + [aux_sym_php_only_repeat1] = STATE(674), + [sym_comment] = ACTIONS(3646), + [aux_sym_keyword_token1] = ACTIONS(3648), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3650), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3652), + [anon_sym_ATphp] = ACTIONS(3654), + [aux_sym_attribute_token1] = ACTIONS(3656), + [aux_sym__inline_directive_token1] = ACTIONS(3658), + [anon_sym_ATfragment] = ACTIONS(3660), + [anon_sym_ATsection] = ACTIONS(3662), + [anon_sym_ATonce] = ACTIONS(3664), + [anon_sym_ATverbatim] = ACTIONS(3666), + [anon_sym_ATpush] = ACTIONS(3668), + [anon_sym_ATpushOnce] = ACTIONS(3670), + [anon_sym_ATpushIf] = ACTIONS(3672), + [anon_sym_ATprepend] = ACTIONS(3674), + [anon_sym_ATprependOnce] = ACTIONS(3676), + [anon_sym_ATelse] = ACTIONS(3678), + [aux_sym_conditional_keyword_token1] = ACTIONS(3680), + [anon_sym_ATif] = ACTIONS(3682), + [anon_sym_ATunless] = ACTIONS(3684), + [anon_sym_ATisset] = ACTIONS(3686), + [anon_sym_ATempty] = ACTIONS(3688), + [anon_sym_ATauth] = ACTIONS(3690), + [anon_sym_ATguest] = ACTIONS(3692), + [anon_sym_ATproduction] = ACTIONS(3694), + [anon_sym_ATenv] = ACTIONS(3696), + [anon_sym_ATendenv] = ACTIONS(497), + [anon_sym_AThasSection] = ACTIONS(3698), + [anon_sym_ATsectionMissing] = ACTIONS(3700), + [anon_sym_ATerror] = ACTIONS(3702), + [anon_sym_ATcan] = ACTIONS(3704), + [anon_sym_ATcannot] = ACTIONS(3706), + [anon_sym_ATcanany] = ACTIONS(3708), + [anon_sym_ATfeature] = ACTIONS(3710), + [aux_sym__custom_token1] = ACTIONS(3712), + [aux_sym__custom_token2] = ACTIONS(3714), + [anon_sym_ATswitch] = ACTIONS(3716), + [aux_sym_loop_operator_token1] = ACTIONS(3718), + [anon_sym_ATfor] = ACTIONS(3720), + [anon_sym_ATforeach] = ACTIONS(3722), + [anon_sym_ATforelse] = ACTIONS(3724), + [anon_sym_ATwhile] = ACTIONS(3726), + [anon_sym_ATsetup] = ACTIONS(3728), + [anon_sym_ATtask] = ACTIONS(3730), + [anon_sym_ATstory] = ACTIONS(3732), + [anon_sym_ATbefore] = ACTIONS(3734), + [anon_sym_ATafter] = ACTIONS(3736), + [anon_sym_ATsuccess] = ACTIONS(3738), + [anon_sym_ATfinished] = ACTIONS(3740), + [anon_sym_ATpersist] = ACTIONS(3742), + [anon_sym_ATteleport] = ACTIONS(3744), + [anon_sym_ATvolt] = ACTIONS(3746), + [aux_sym__text_token1] = ACTIONS(3748), + [aux_sym__text_token2] = ACTIONS(3748), + [aux_sym__text_token3] = ACTIONS(3750), + }, + [138] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3752), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [139] = { + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3754), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [140] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3730), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(137), + [sym_keyword] = STATE(137), + [sym_php_statement] = STATE(137), + [sym__escaped] = STATE(1598), + [sym__unescaped] = STATE(1598), + [sym__raw] = STATE(1598), + [sym__inline_raw] = STATE(1598), + [sym__multi_line_raw] = STATE(1598), + [sym_attribute] = STATE(137), + [sym__inline_directive] = STATE(137), + [sym__nested_directive] = STATE(137), + [sym_fragment] = STATE(137), + [sym_section] = STATE(137), + [sym_inlineSection] = STATE(137), + [sym_once] = STATE(137), + [sym_verbatim] = STATE(137), + [sym_stack] = STATE(137), + [sym__push] = STATE(1599), + [sym__pushOnce] = STATE(1599), + [sym__pushIf] = STATE(1599), + [sym__prepend] = STATE(1599), + [sym__prependOnce] = STATE(1599), + [sym_conditional] = STATE(137), + [sym_conditional_keyword] = STATE(137), + [sym__if] = STATE(1600), + [sym__unless] = STATE(1600), + [sym__isset] = STATE(1600), + [sym__empty] = STATE(1600), + [sym__auth] = STATE(1600), + [sym__guest] = STATE(1600), + [sym__production] = STATE(1600), + [sym__env] = STATE(1600), + [sym__hasSection] = STATE(1600), + [sym__sectionMissing] = STATE(1600), + [sym__error] = STATE(1600), + [sym_authorization] = STATE(1600), + [sym__can] = STATE(1601), + [sym__cannot] = STATE(1601), + [sym__canany] = STATE(1601), + [sym__feature] = STATE(1600), + [sym__custom] = STATE(1600), + [sym_switch] = STATE(137), + [sym_loop] = STATE(137), + [sym_loop_operator] = STATE(137), + [sym__for] = STATE(1602), + [sym__foreach] = STATE(1602), + [sym__forelse] = STATE(1602), + [sym__while] = STATE(1602), + [sym_envoy] = STATE(137), + [sym__setup] = STATE(1598), + [sym__task] = STATE(1603), + [sym__story] = STATE(1603), + [sym__hooks] = STATE(1598), + [sym__before] = STATE(1598), + [sym__after] = STATE(1598), + [sym__envoy_error] = STATE(1598), + [sym__success] = STATE(1598), + [sym__finished] = STATE(1598), + [sym_livewire] = STATE(137), + [sym__persist] = STATE(1604), + [sym__teleport] = STATE(1604), + [sym__volt] = STATE(1604), + [sym_text] = STATE(137), + [sym__text] = STATE(674), + [aux_sym__if_statement_directive_body_repeat1] = STATE(137), + [aux_sym_php_only_repeat1] = STATE(674), + [sym_comment] = ACTIONS(3756), + [aux_sym_keyword_token1] = ACTIONS(3648), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3650), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3652), + [anon_sym_ATphp] = ACTIONS(3654), + [aux_sym_attribute_token1] = ACTIONS(3656), + [aux_sym__inline_directive_token1] = ACTIONS(3658), + [anon_sym_ATfragment] = ACTIONS(3660), + [anon_sym_ATsection] = ACTIONS(3662), + [anon_sym_ATonce] = ACTIONS(3664), + [anon_sym_ATverbatim] = ACTIONS(3666), + [anon_sym_ATpush] = ACTIONS(3668), + [anon_sym_ATpushOnce] = ACTIONS(3670), + [anon_sym_ATpushIf] = ACTIONS(3672), + [anon_sym_ATprepend] = ACTIONS(3674), + [anon_sym_ATprependOnce] = ACTIONS(3676), + [anon_sym_ATelse] = ACTIONS(3678), + [aux_sym_conditional_keyword_token1] = ACTIONS(3680), + [anon_sym_ATif] = ACTIONS(3682), + [anon_sym_ATunless] = ACTIONS(3684), + [anon_sym_ATisset] = ACTIONS(3686), + [anon_sym_ATempty] = ACTIONS(3688), + [anon_sym_ATauth] = ACTIONS(3690), + [anon_sym_ATguest] = ACTIONS(3692), + [anon_sym_ATproduction] = ACTIONS(3694), + [anon_sym_ATenv] = ACTIONS(3696), + [anon_sym_ATendenv] = ACTIONS(706), + [anon_sym_AThasSection] = ACTIONS(3698), + [anon_sym_ATsectionMissing] = ACTIONS(3700), + [anon_sym_ATerror] = ACTIONS(3702), + [anon_sym_ATcan] = ACTIONS(3704), + [anon_sym_ATcannot] = ACTIONS(3706), + [anon_sym_ATcanany] = ACTIONS(3708), + [anon_sym_ATfeature] = ACTIONS(3710), + [aux_sym__custom_token1] = ACTIONS(3712), + [aux_sym__custom_token2] = ACTIONS(3714), + [anon_sym_ATswitch] = ACTIONS(3716), + [aux_sym_loop_operator_token1] = ACTIONS(3718), + [anon_sym_ATfor] = ACTIONS(3720), + [anon_sym_ATforeach] = ACTIONS(3722), + [anon_sym_ATforelse] = ACTIONS(3724), + [anon_sym_ATwhile] = ACTIONS(3726), + [anon_sym_ATsetup] = ACTIONS(3728), + [anon_sym_ATtask] = ACTIONS(3730), + [anon_sym_ATstory] = ACTIONS(3732), + [anon_sym_ATbefore] = ACTIONS(3734), + [anon_sym_ATafter] = ACTIONS(3736), + [anon_sym_ATsuccess] = ACTIONS(3738), + [anon_sym_ATfinished] = ACTIONS(3740), + [anon_sym_ATpersist] = ACTIONS(3742), + [anon_sym_ATteleport] = ACTIONS(3744), + [anon_sym_ATvolt] = ACTIONS(3746), + [aux_sym__text_token1] = ACTIONS(3748), + [aux_sym__text_token2] = ACTIONS(3748), + [aux_sym__text_token3] = ACTIONS(3750), }, [141] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3732), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3758), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [142] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3734), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3760), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [143] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3736), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3762), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [144] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3738), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3764), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [145] = { - [sym__definition] = STATE(145), - [sym_comment] = STATE(145), - [sym_keyword] = STATE(145), - [sym_php_statement] = STATE(145), - [sym__escaped] = STATE(1366), - [sym__unescaped] = STATE(1366), - [sym__raw] = STATE(1366), - [sym__inline_raw] = STATE(1366), - [sym__multi_line_raw] = STATE(1366), - [sym_attribute] = STATE(145), - [sym__inline_directive] = STATE(145), - [sym__nested_directive] = STATE(145), - [sym_fragment] = STATE(145), - [sym_section] = STATE(145), - [sym_inlineSection] = STATE(145), - [sym_once] = STATE(145), - [sym_verbatim] = STATE(145), - [sym_stack] = STATE(145), - [sym__push] = STATE(1367), - [sym__pushOnce] = STATE(1367), - [sym__pushIf] = STATE(1367), - [sym__prepend] = STATE(1367), - [sym__prependOnce] = STATE(1367), - [sym_conditional] = STATE(145), - [sym_conditional_keyword] = STATE(145), - [sym__if] = STATE(1368), - [sym__unless] = STATE(1368), - [sym__isset] = STATE(1368), - [sym__empty] = STATE(1368), - [sym__auth] = STATE(1368), - [sym__guest] = STATE(1368), - [sym__production] = STATE(1368), - [sym__env] = STATE(1368), - [sym__hasSection] = STATE(1368), - [sym__sectionMissing] = STATE(1368), - [sym__error] = STATE(1368), - [sym_authorization] = STATE(1368), - [sym__can] = STATE(1369), - [sym__cannot] = STATE(1369), - [sym__canany] = STATE(1369), - [sym__feature] = STATE(1368), - [sym__custom] = STATE(1368), - [sym_switch] = STATE(145), - [sym_loop] = STATE(145), - [sym_loop_operator] = STATE(145), - [sym__for] = STATE(1370), - [sym__foreach] = STATE(1370), - [sym__forelse] = STATE(1370), - [sym__while] = STATE(1370), - [sym_envoy] = STATE(145), - [sym__setup] = STATE(1366), - [sym__task] = STATE(1371), - [sym__story] = STATE(1371), - [sym__hooks] = STATE(1366), - [sym__before] = STATE(1366), - [sym__after] = STATE(1366), - [sym__envoy_error] = STATE(1366), - [sym__success] = STATE(1366), - [sym__finished] = STATE(1366), - [sym_livewire] = STATE(145), - [sym__persist] = STATE(1372), - [sym__teleport] = STATE(1372), - [sym__volt] = STATE(1372), - [sym_text] = STATE(145), - [sym__text] = STATE(682), - [aux_sym__if_statement_directive_body_repeat1] = STATE(145), - [aux_sym_php_only_repeat1] = STATE(682), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3740), - [aux_sym_keyword_token1] = ACTIONS(3743), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3746), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3749), - [anon_sym_ATphp] = ACTIONS(3752), - [aux_sym_attribute_token1] = ACTIONS(3755), - [aux_sym__inline_directive_token1] = ACTIONS(3758), - [anon_sym_ATfragment] = ACTIONS(3761), - [anon_sym_ATsection] = ACTIONS(3764), - [anon_sym_ATonce] = ACTIONS(3767), - [anon_sym_ATverbatim] = ACTIONS(3770), - [anon_sym_ATpush] = ACTIONS(3773), - [anon_sym_ATpushOnce] = ACTIONS(3776), - [anon_sym_ATpushIf] = ACTIONS(3779), - [anon_sym_ATprepend] = ACTIONS(3782), - [anon_sym_ATprependOnce] = ACTIONS(3785), - [anon_sym_ATelse] = ACTIONS(3788), - [aux_sym_conditional_keyword_token1] = ACTIONS(3791), - [anon_sym_ATif] = ACTIONS(3794), - [anon_sym_ATunless] = ACTIONS(3797), - [anon_sym_ATendunless] = ACTIONS(518), - [anon_sym_ATisset] = ACTIONS(3800), - [anon_sym_ATempty] = ACTIONS(3803), - [anon_sym_ATauth] = ACTIONS(3806), - [anon_sym_ATguest] = ACTIONS(3809), - [anon_sym_ATproduction] = ACTIONS(3812), - [anon_sym_ATenv] = ACTIONS(3815), - [anon_sym_AThasSection] = ACTIONS(3818), - [anon_sym_ATsectionMissing] = ACTIONS(3821), - [anon_sym_ATerror] = ACTIONS(3824), - [anon_sym_ATcan] = ACTIONS(3827), - [anon_sym_ATcannot] = ACTIONS(3830), - [anon_sym_ATcanany] = ACTIONS(3833), - [anon_sym_ATfeature] = ACTIONS(3836), - [aux_sym__custom_token1] = ACTIONS(3839), - [aux_sym__custom_token2] = ACTIONS(3842), - [anon_sym_ATswitch] = ACTIONS(3845), - [aux_sym_loop_operator_token1] = ACTIONS(3848), - [anon_sym_ATfor] = ACTIONS(3851), - [anon_sym_ATforeach] = ACTIONS(3854), - [anon_sym_ATforelse] = ACTIONS(3857), - [anon_sym_ATwhile] = ACTIONS(3860), - [anon_sym_ATsetup] = ACTIONS(3863), - [anon_sym_ATtask] = ACTIONS(3866), - [anon_sym_ATstory] = ACTIONS(3869), - [anon_sym_ATbefore] = ACTIONS(3872), - [anon_sym_ATafter] = ACTIONS(3875), - [anon_sym_ATsuccess] = ACTIONS(3878), - [anon_sym_ATfinished] = ACTIONS(3881), - [anon_sym_ATpersist] = ACTIONS(3884), - [anon_sym_ATteleport] = ACTIONS(3887), - [anon_sym_ATvolt] = ACTIONS(3890), - [aux_sym__text_token1] = ACTIONS(3893), - [aux_sym__text_token2] = ACTIONS(3893), - [aux_sym__text_token3] = ACTIONS(3896), - }, - [146] = { - [sym__definition] = STATE(98), - [sym_comment] = STATE(98), - [sym_keyword] = STATE(98), - [sym_php_statement] = STATE(98), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(98), - [sym__inline_directive] = STATE(98), - [sym__nested_directive] = STATE(98), - [sym_fragment] = STATE(98), - [sym_section] = STATE(98), - [sym_inlineSection] = STATE(98), - [sym_once] = STATE(98), - [sym_verbatim] = STATE(98), - [sym_stack] = STATE(98), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(98), - [sym_conditional_keyword] = STATE(98), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(98), - [sym_loop] = STATE(98), - [sym_loop_operator] = STATE(98), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(98), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(98), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(98), - [sym_text] = STATE(98), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATendproduction] = ACTIONS(3899), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [147] = { - [sym__definition] = STATE(92), - [sym_comment] = STATE(92), - [sym_keyword] = STATE(92), - [sym_php_statement] = STATE(92), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(92), - [sym__inline_directive] = STATE(92), - [sym__nested_directive] = STATE(92), - [sym_fragment] = STATE(92), - [sym_section] = STATE(92), - [sym_inlineSection] = STATE(92), - [sym_once] = STATE(92), - [sym_verbatim] = STATE(92), - [sym_stack] = STATE(92), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(92), - [sym_conditional_keyword] = STATE(92), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(92), - [sym_loop] = STATE(92), - [sym_loop_operator] = STATE(92), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(92), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(92), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(92), - [sym_text] = STATE(92), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(102), + [sym_keyword] = STATE(102), + [sym_php_statement] = STATE(102), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(102), + [sym__inline_directive] = STATE(102), + [sym__nested_directive] = STATE(102), + [sym_fragment] = STATE(102), + [sym_section] = STATE(102), + [sym_inlineSection] = STATE(102), + [sym_once] = STATE(102), + [sym_verbatim] = STATE(102), + [sym_stack] = STATE(102), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(102), + [sym_conditional_keyword] = STATE(102), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(102), + [sym_loop] = STATE(102), + [sym_loop_operator] = STATE(102), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(102), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(102), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(102), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(325), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATendproduction] = ACTIONS(3766), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [146] = { + [sym__definition] = STATE(146), + [sym_keyword] = STATE(146), + [sym_php_statement] = STATE(146), + [sym__escaped] = STATE(1340), + [sym__unescaped] = STATE(1340), + [sym__raw] = STATE(1340), + [sym__inline_raw] = STATE(1340), + [sym__multi_line_raw] = STATE(1340), + [sym_attribute] = STATE(146), + [sym__inline_directive] = STATE(146), + [sym__nested_directive] = STATE(146), + [sym_fragment] = STATE(146), + [sym_section] = STATE(146), + [sym_inlineSection] = STATE(146), + [sym_once] = STATE(146), + [sym_verbatim] = STATE(146), + [sym_stack] = STATE(146), + [sym__push] = STATE(1341), + [sym__pushOnce] = STATE(1341), + [sym__pushIf] = STATE(1341), + [sym__prepend] = STATE(1341), + [sym__prependOnce] = STATE(1341), + [sym_conditional] = STATE(146), + [sym_conditional_keyword] = STATE(146), + [sym__if] = STATE(750), + [sym__unless] = STATE(750), + [sym__isset] = STATE(750), + [sym__empty] = STATE(750), + [sym__auth] = STATE(750), + [sym__guest] = STATE(750), + [sym__production] = STATE(750), + [sym__env] = STATE(750), + [sym__hasSection] = STATE(750), + [sym__sectionMissing] = STATE(750), + [sym__error] = STATE(750), + [sym_authorization] = STATE(750), + [sym__can] = STATE(1343), + [sym__cannot] = STATE(1343), + [sym__canany] = STATE(1343), + [sym__feature] = STATE(750), + [sym__custom] = STATE(750), + [sym_switch] = STATE(146), + [sym_loop] = STATE(146), + [sym_loop_operator] = STATE(146), + [sym__for] = STATE(1344), + [sym__foreach] = STATE(1344), + [sym__forelse] = STATE(1344), + [sym__while] = STATE(1344), + [sym_envoy] = STATE(146), + [sym__setup] = STATE(1340), + [sym__task] = STATE(1345), + [sym__story] = STATE(1345), + [sym__hooks] = STATE(1340), + [sym__before] = STATE(1340), + [sym__after] = STATE(1340), + [sym__envoy_error] = STATE(1340), + [sym__success] = STATE(1340), + [sym__finished] = STATE(1340), + [sym_livewire] = STATE(146), + [sym__persist] = STATE(1346), + [sym__teleport] = STATE(1346), + [sym__volt] = STATE(1346), + [sym_text] = STATE(146), + [sym__text] = STATE(686), + [aux_sym__if_statement_directive_body_repeat1] = STATE(146), + [aux_sym_php_only_repeat1] = STATE(686), + [sym_comment] = ACTIONS(3768), + [aux_sym_keyword_token1] = ACTIONS(3771), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3774), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3777), + [anon_sym_ATphp] = ACTIONS(3780), + [aux_sym_attribute_token1] = ACTIONS(3783), + [aux_sym__inline_directive_token1] = ACTIONS(3786), + [anon_sym_ATfragment] = ACTIONS(3789), + [anon_sym_ATsection] = ACTIONS(3792), + [anon_sym_ATonce] = ACTIONS(3795), + [anon_sym_ATverbatim] = ACTIONS(3798), + [anon_sym_ATpush] = ACTIONS(3801), + [anon_sym_ATpushOnce] = ACTIONS(3804), + [anon_sym_ATpushIf] = ACTIONS(3807), + [anon_sym_ATprepend] = ACTIONS(3810), + [anon_sym_ATprependOnce] = ACTIONS(3813), + [anon_sym_ATelse] = ACTIONS(3816), + [aux_sym_conditional_keyword_token1] = ACTIONS(3819), + [anon_sym_ATif] = ACTIONS(3822), + [anon_sym_ATunless] = ACTIONS(3825), + [anon_sym_ATendunless] = ACTIONS(633), + [anon_sym_ATisset] = ACTIONS(3828), + [anon_sym_ATempty] = ACTIONS(3831), + [anon_sym_ATauth] = ACTIONS(3834), + [anon_sym_ATguest] = ACTIONS(3837), + [anon_sym_ATproduction] = ACTIONS(3840), + [anon_sym_ATenv] = ACTIONS(3843), + [anon_sym_AThasSection] = ACTIONS(3846), + [anon_sym_ATsectionMissing] = ACTIONS(3849), + [anon_sym_ATerror] = ACTIONS(3852), + [anon_sym_ATcan] = ACTIONS(3855), + [anon_sym_ATcannot] = ACTIONS(3858), + [anon_sym_ATcanany] = ACTIONS(3861), + [anon_sym_ATfeature] = ACTIONS(3864), + [aux_sym__custom_token1] = ACTIONS(3867), + [aux_sym__custom_token2] = ACTIONS(3870), + [anon_sym_ATswitch] = ACTIONS(3873), + [aux_sym_loop_operator_token1] = ACTIONS(3876), + [anon_sym_ATfor] = ACTIONS(3879), + [anon_sym_ATforeach] = ACTIONS(3882), + [anon_sym_ATforelse] = ACTIONS(3885), + [anon_sym_ATwhile] = ACTIONS(3888), + [anon_sym_ATsetup] = ACTIONS(3891), + [anon_sym_ATtask] = ACTIONS(3894), + [anon_sym_ATstory] = ACTIONS(3897), + [anon_sym_ATbefore] = ACTIONS(3900), + [anon_sym_ATafter] = ACTIONS(3903), + [anon_sym_ATsuccess] = ACTIONS(3906), + [anon_sym_ATfinished] = ACTIONS(3909), + [anon_sym_ATpersist] = ACTIONS(3912), + [anon_sym_ATteleport] = ACTIONS(3915), + [anon_sym_ATvolt] = ACTIONS(3918), + [aux_sym__text_token1] = ACTIONS(3921), + [aux_sym__text_token2] = ACTIONS(3921), + [aux_sym__text_token3] = ACTIONS(3924), + }, + [147] = { + [sym__definition] = STATE(94), + [sym_keyword] = STATE(94), + [sym_php_statement] = STATE(94), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(94), + [sym__inline_directive] = STATE(94), + [sym__nested_directive] = STATE(94), + [sym_fragment] = STATE(94), + [sym_section] = STATE(94), + [sym_inlineSection] = STATE(94), + [sym_once] = STATE(94), + [sym_verbatim] = STATE(94), + [sym_stack] = STATE(94), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(94), + [sym_conditional_keyword] = STATE(94), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(94), + [sym_loop] = STATE(94), + [sym_loop_operator] = STATE(94), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(94), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(94), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(94), + [sym_text] = STATE(94), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3927), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [148] = { - [sym__definition] = STATE(72), - [sym_comment] = STATE(72), - [sym_keyword] = STATE(72), - [sym_php_statement] = STATE(72), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(72), - [sym__inline_directive] = STATE(72), - [sym__nested_directive] = STATE(72), - [sym_fragment] = STATE(72), - [sym_section] = STATE(72), - [sym_inlineSection] = STATE(72), - [sym_once] = STATE(72), - [sym_verbatim] = STATE(72), - [sym_stack] = STATE(72), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(72), - [sym_conditional_keyword] = STATE(72), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(72), - [sym_loop] = STATE(72), - [sym_loop_operator] = STATE(72), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(72), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(72), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(72), - [sym_text] = STATE(72), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(141), + [sym_keyword] = STATE(141), + [sym_php_statement] = STATE(141), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(141), + [sym__inline_directive] = STATE(141), + [sym__nested_directive] = STATE(141), + [sym_fragment] = STATE(141), + [sym_section] = STATE(141), + [sym_inlineSection] = STATE(141), + [sym_once] = STATE(141), + [sym_verbatim] = STATE(141), + [sym_stack] = STATE(141), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(141), + [sym_conditional_keyword] = STATE(141), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(141), + [sym_loop] = STATE(141), + [sym_loop_operator] = STATE(141), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(141), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(141), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(141), + [sym_text] = STATE(141), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3929), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [149] = { [sym__definition] = STATE(132), - [sym_comment] = STATE(132), [sym_keyword] = STATE(132), [sym_php_statement] = STATE(132), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(132), [sym__inline_directive] = STATE(132), [sym__nested_directive] = STATE(132), @@ -44442,120 +43792,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(132), [sym_verbatim] = STATE(132), [sym_stack] = STATE(132), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(132), [sym_conditional_keyword] = STATE(132), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(132), [sym_loop] = STATE(132), [sym_loop_operator] = STATE(132), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(132), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(132), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(132), [sym_text] = STATE(132), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3931), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [150] = { [sym__definition] = STATE(87), - [sym_comment] = STATE(87), [sym_keyword] = STATE(87), [sym_php_statement] = STATE(87), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(87), [sym__inline_directive] = STATE(87), [sym__nested_directive] = STATE(87), @@ -44565,120 +43914,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(87), [sym_verbatim] = STATE(87), [sym_stack] = STATE(87), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(87), [sym_conditional_keyword] = STATE(87), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(87), [sym_loop] = STATE(87), [sym_loop_operator] = STATE(87), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(87), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(87), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(87), [sym_text] = STATE(87), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3933), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [151] = { [sym__definition] = STATE(133), - [sym_comment] = STATE(133), [sym_keyword] = STATE(133), [sym_php_statement] = STATE(133), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(133), [sym__inline_directive] = STATE(133), [sym__nested_directive] = STATE(133), @@ -44688,489 +44036,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(133), [sym_verbatim] = STATE(133), [sym_stack] = STATE(133), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(133), [sym_conditional_keyword] = STATE(133), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(133), [sym_loop] = STATE(133), [sym_loop_operator] = STATE(133), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(133), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(133), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(133), [sym_text] = STATE(133), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3935), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [152] = { - [sym__definition] = STATE(80), - [sym_comment] = STATE(80), - [sym_keyword] = STATE(80), - [sym_php_statement] = STATE(80), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(80), - [sym__inline_directive] = STATE(80), - [sym__nested_directive] = STATE(80), - [sym_fragment] = STATE(80), - [sym_section] = STATE(80), - [sym_inlineSection] = STATE(80), - [sym_once] = STATE(80), - [sym_verbatim] = STATE(80), - [sym_stack] = STATE(80), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(80), - [sym_conditional_keyword] = STATE(80), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(80), - [sym_loop] = STATE(80), - [sym_loop_operator] = STATE(80), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(80), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(80), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(80), - [sym_text] = STATE(80), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(95), + [sym_keyword] = STATE(95), + [sym_php_statement] = STATE(95), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(95), + [sym__inline_directive] = STATE(95), + [sym__nested_directive] = STATE(95), + [sym_fragment] = STATE(95), + [sym_section] = STATE(95), + [sym_inlineSection] = STATE(95), + [sym_once] = STATE(95), + [sym_verbatim] = STATE(95), + [sym_stack] = STATE(95), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(95), + [sym_conditional_keyword] = STATE(95), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(95), + [sym_loop] = STATE(95), + [sym_loop_operator] = STATE(95), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(95), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(95), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(95), + [sym_text] = STATE(95), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3937), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [153] = { - [sym__definition] = STATE(83), - [sym_comment] = STATE(83), - [sym_keyword] = STATE(83), - [sym_php_statement] = STATE(83), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(83), - [sym__inline_directive] = STATE(83), - [sym__nested_directive] = STATE(83), - [sym_fragment] = STATE(83), - [sym_section] = STATE(83), - [sym_inlineSection] = STATE(83), - [sym_once] = STATE(83), - [sym_verbatim] = STATE(83), - [sym_stack] = STATE(83), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(83), - [sym_conditional_keyword] = STATE(83), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(83), - [sym_loop] = STATE(83), - [sym_loop_operator] = STATE(83), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(83), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(83), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(83), - [sym_text] = STATE(83), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(79), + [sym_keyword] = STATE(79), + [sym_php_statement] = STATE(79), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(79), + [sym__inline_directive] = STATE(79), + [sym__nested_directive] = STATE(79), + [sym_fragment] = STATE(79), + [sym_section] = STATE(79), + [sym_inlineSection] = STATE(79), + [sym_once] = STATE(79), + [sym_verbatim] = STATE(79), + [sym_stack] = STATE(79), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(79), + [sym_conditional_keyword] = STATE(79), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(79), + [sym_loop] = STATE(79), + [sym_loop_operator] = STATE(79), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(79), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(79), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(79), + [sym_text] = STATE(79), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3939), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [154] = { - [sym__definition] = STATE(111), - [sym_comment] = STATE(111), - [sym_keyword] = STATE(111), - [sym_php_statement] = STATE(111), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(111), - [sym__inline_directive] = STATE(111), - [sym__nested_directive] = STATE(111), - [sym_fragment] = STATE(111), - [sym_section] = STATE(111), - [sym_inlineSection] = STATE(111), - [sym_once] = STATE(111), - [sym_verbatim] = STATE(111), - [sym_stack] = STATE(111), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(111), - [sym_conditional_keyword] = STATE(111), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(111), - [sym_loop] = STATE(111), - [sym_loop_operator] = STATE(111), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(111), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(111), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(111), - [sym_text] = STATE(111), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(113), + [sym_keyword] = STATE(113), + [sym_php_statement] = STATE(113), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(113), + [sym__inline_directive] = STATE(113), + [sym__nested_directive] = STATE(113), + [sym_fragment] = STATE(113), + [sym_section] = STATE(113), + [sym_inlineSection] = STATE(113), + [sym_once] = STATE(113), + [sym_verbatim] = STATE(113), + [sym_stack] = STATE(113), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(113), + [sym_conditional_keyword] = STATE(113), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(113), + [sym_loop] = STATE(113), + [sym_loop_operator] = STATE(113), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(113), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(113), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(113), + [sym_text] = STATE(113), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3941), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [155] = { [sym__definition] = STATE(134), - [sym_comment] = STATE(134), [sym_keyword] = STATE(134), [sym_php_statement] = STATE(134), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(134), [sym__inline_directive] = STATE(134), [sym__nested_directive] = STATE(134), @@ -45180,366 +44524,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(134), [sym_verbatim] = STATE(134), [sym_stack] = STATE(134), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(134), [sym_conditional_keyword] = STATE(134), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(134), [sym_loop] = STATE(134), [sym_loop_operator] = STATE(134), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(134), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(134), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(134), [sym_text] = STATE(134), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3943), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [156] = { - [sym__definition] = STATE(96), - [sym_comment] = STATE(96), - [sym_keyword] = STATE(96), - [sym_php_statement] = STATE(96), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(96), - [sym__inline_directive] = STATE(96), - [sym__nested_directive] = STATE(96), - [sym_fragment] = STATE(96), - [sym_section] = STATE(96), - [sym_inlineSection] = STATE(96), - [sym_once] = STATE(96), - [sym_verbatim] = STATE(96), - [sym_stack] = STATE(96), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(96), - [sym_conditional_keyword] = STATE(96), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(96), - [sym_loop] = STATE(96), - [sym_loop_operator] = STATE(96), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(96), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(96), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(96), - [sym_text] = STATE(96), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(93), + [sym_keyword] = STATE(93), + [sym_php_statement] = STATE(93), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(93), + [sym__inline_directive] = STATE(93), + [sym__nested_directive] = STATE(93), + [sym_fragment] = STATE(93), + [sym_section] = STATE(93), + [sym_inlineSection] = STATE(93), + [sym_once] = STATE(93), + [sym_verbatim] = STATE(93), + [sym_stack] = STATE(93), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(93), + [sym_conditional_keyword] = STATE(93), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(93), + [sym_loop] = STATE(93), + [sym_loop_operator] = STATE(93), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(93), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(93), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(93), + [sym_text] = STATE(93), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3945), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [157] = { - [sym__definition] = STATE(137), - [sym_comment] = STATE(137), - [sym_keyword] = STATE(137), - [sym_php_statement] = STATE(137), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(137), - [sym__inline_directive] = STATE(137), - [sym__nested_directive] = STATE(137), - [sym_fragment] = STATE(137), - [sym_section] = STATE(137), - [sym_inlineSection] = STATE(137), - [sym_once] = STATE(137), - [sym_verbatim] = STATE(137), - [sym_stack] = STATE(137), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(137), - [sym_conditional_keyword] = STATE(137), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(137), - [sym_loop] = STATE(137), - [sym_loop_operator] = STATE(137), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(137), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(137), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(137), - [sym_text] = STATE(137), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(135), + [sym_keyword] = STATE(135), + [sym_php_statement] = STATE(135), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(135), + [sym__inline_directive] = STATE(135), + [sym__nested_directive] = STATE(135), + [sym_fragment] = STATE(135), + [sym_section] = STATE(135), + [sym_inlineSection] = STATE(135), + [sym_once] = STATE(135), + [sym_verbatim] = STATE(135), + [sym_stack] = STATE(135), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(135), + [sym_conditional_keyword] = STATE(135), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(135), + [sym_loop] = STATE(135), + [sym_loop_operator] = STATE(135), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(135), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(135), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(135), + [sym_text] = STATE(135), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3947), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [158] = { [sym__definition] = STATE(81), - [sym_comment] = STATE(81), [sym_keyword] = STATE(81), [sym_php_statement] = STATE(81), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(81), [sym__inline_directive] = STATE(81), [sym__nested_directive] = STATE(81), @@ -45549,735 +44890,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(81), [sym_verbatim] = STATE(81), [sym_stack] = STATE(81), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(81), [sym_conditional_keyword] = STATE(81), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(81), [sym_loop] = STATE(81), [sym_loop_operator] = STATE(81), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(81), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(81), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(81), [sym_text] = STATE(81), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3949), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [159] = { - [sym__definition] = STATE(75), - [sym_comment] = STATE(75), - [sym_keyword] = STATE(75), - [sym_php_statement] = STATE(75), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(75), - [sym__inline_directive] = STATE(75), - [sym__nested_directive] = STATE(75), - [sym_fragment] = STATE(75), - [sym_section] = STATE(75), - [sym_inlineSection] = STATE(75), - [sym_once] = STATE(75), - [sym_verbatim] = STATE(75), - [sym_stack] = STATE(75), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(75), - [sym_conditional_keyword] = STATE(75), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(75), - [sym_loop] = STATE(75), - [sym_loop_operator] = STATE(75), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(75), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(75), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(75), - [sym_text] = STATE(75), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(91), + [sym_keyword] = STATE(91), + [sym_php_statement] = STATE(91), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(91), + [sym__inline_directive] = STATE(91), + [sym__nested_directive] = STATE(91), + [sym_fragment] = STATE(91), + [sym_section] = STATE(91), + [sym_inlineSection] = STATE(91), + [sym_once] = STATE(91), + [sym_verbatim] = STATE(91), + [sym_stack] = STATE(91), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(91), + [sym_conditional_keyword] = STATE(91), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(91), + [sym_loop] = STATE(91), + [sym_loop_operator] = STATE(91), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(91), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(91), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), + [sym_text] = STATE(91), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3951), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [160] = { - [sym__definition] = STATE(141), - [sym_comment] = STATE(141), - [sym_keyword] = STATE(141), - [sym_php_statement] = STATE(141), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(141), - [sym__inline_directive] = STATE(141), - [sym__nested_directive] = STATE(141), - [sym_fragment] = STATE(141), - [sym_section] = STATE(141), - [sym_inlineSection] = STATE(141), - [sym_once] = STATE(141), - [sym_verbatim] = STATE(141), - [sym_stack] = STATE(141), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(141), - [sym_conditional_keyword] = STATE(141), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(141), - [sym_loop] = STATE(141), - [sym_loop_operator] = STATE(141), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(141), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(141), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(141), - [sym_text] = STATE(141), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(138), + [sym_keyword] = STATE(138), + [sym_php_statement] = STATE(138), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(138), + [sym__inline_directive] = STATE(138), + [sym__nested_directive] = STATE(138), + [sym_fragment] = STATE(138), + [sym_section] = STATE(138), + [sym_inlineSection] = STATE(138), + [sym_once] = STATE(138), + [sym_verbatim] = STATE(138), + [sym_stack] = STATE(138), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(138), + [sym_conditional_keyword] = STATE(138), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(138), + [sym_loop] = STATE(138), + [sym_loop_operator] = STATE(138), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(138), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(138), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(138), + [sym_text] = STATE(138), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3953), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [161] = { - [sym__definition] = STATE(76), - [sym_comment] = STATE(76), - [sym_keyword] = STATE(76), - [sym_php_statement] = STATE(76), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(76), - [sym__inline_directive] = STATE(76), - [sym__nested_directive] = STATE(76), - [sym_fragment] = STATE(76), - [sym_section] = STATE(76), - [sym_inlineSection] = STATE(76), - [sym_once] = STATE(76), - [sym_verbatim] = STATE(76), - [sym_stack] = STATE(76), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(76), - [sym_conditional_keyword] = STATE(76), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(76), - [sym_loop] = STATE(76), - [sym_loop_operator] = STATE(76), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(76), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(76), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(76), - [sym_text] = STATE(76), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(82), + [sym_keyword] = STATE(82), + [sym_php_statement] = STATE(82), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(82), + [sym__inline_directive] = STATE(82), + [sym__nested_directive] = STATE(82), + [sym_fragment] = STATE(82), + [sym_section] = STATE(82), + [sym_inlineSection] = STATE(82), + [sym_once] = STATE(82), + [sym_verbatim] = STATE(82), + [sym_stack] = STATE(82), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(82), + [sym_conditional_keyword] = STATE(82), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(82), + [sym_loop] = STATE(82), + [sym_loop_operator] = STATE(82), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(82), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(82), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(82), + [sym_text] = STATE(82), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3955), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [162] = { - [sym__definition] = STATE(78), - [sym_comment] = STATE(78), - [sym_keyword] = STATE(78), - [sym_php_statement] = STATE(78), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(78), - [sym__inline_directive] = STATE(78), - [sym__nested_directive] = STATE(78), - [sym_fragment] = STATE(78), - [sym_section] = STATE(78), - [sym_inlineSection] = STATE(78), - [sym_once] = STATE(78), - [sym_verbatim] = STATE(78), - [sym_stack] = STATE(78), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(78), - [sym_conditional_keyword] = STATE(78), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(78), - [sym_loop] = STATE(78), - [sym_loop_operator] = STATE(78), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(78), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(78), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(78), - [sym_text] = STATE(78), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [163] = { - [sym__definition] = STATE(140), - [sym_comment] = STATE(140), - [sym_keyword] = STATE(140), - [sym_php_statement] = STATE(140), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(140), - [sym__inline_directive] = STATE(140), - [sym__nested_directive] = STATE(140), - [sym_fragment] = STATE(140), - [sym_section] = STATE(140), - [sym_inlineSection] = STATE(140), - [sym_once] = STATE(140), - [sym_verbatim] = STATE(140), - [sym_stack] = STATE(140), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(140), - [sym_conditional_keyword] = STATE(140), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(140), - [sym_loop] = STATE(140), - [sym_loop_operator] = STATE(140), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(140), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(140), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(140), - [sym_text] = STATE(140), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [164] = { [sym__definition] = STATE(84), - [sym_comment] = STATE(84), [sym_keyword] = STATE(84), [sym_php_statement] = STATE(84), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(84), [sym__inline_directive] = STATE(84), [sym__nested_directive] = STATE(84), @@ -46287,243 +45378,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(84), [sym_verbatim] = STATE(84), [sym_stack] = STATE(84), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(84), [sym_conditional_keyword] = STATE(84), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(84), [sym_loop] = STATE(84), [sym_loop_operator] = STATE(84), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(84), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(84), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(84), [sym_text] = STATE(84), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3957), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [163] = { + [sym__definition] = STATE(139), + [sym_keyword] = STATE(139), + [sym_php_statement] = STATE(139), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(139), + [sym__inline_directive] = STATE(139), + [sym__nested_directive] = STATE(139), + [sym_fragment] = STATE(139), + [sym_section] = STATE(139), + [sym_inlineSection] = STATE(139), + [sym_once] = STATE(139), + [sym_verbatim] = STATE(139), + [sym_stack] = STATE(139), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(139), + [sym_conditional_keyword] = STATE(139), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(139), + [sym_loop] = STATE(139), + [sym_loop_operator] = STATE(139), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(139), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(139), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(139), + [sym_text] = STATE(139), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3959), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [164] = { + [sym__definition] = STATE(92), + [sym_keyword] = STATE(92), + [sym_php_statement] = STATE(92), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(92), + [sym__inline_directive] = STATE(92), + [sym__nested_directive] = STATE(92), + [sym_fragment] = STATE(92), + [sym_section] = STATE(92), + [sym_inlineSection] = STATE(92), + [sym_once] = STATE(92), + [sym_verbatim] = STATE(92), + [sym_stack] = STATE(92), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(92), + [sym_conditional_keyword] = STATE(92), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(92), + [sym_loop] = STATE(92), + [sym_loop_operator] = STATE(92), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(92), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(92), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(92), + [sym_text] = STATE(92), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3961), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [165] = { - [sym__definition] = STATE(89), - [sym_comment] = STATE(89), - [sym_keyword] = STATE(89), - [sym_php_statement] = STATE(89), - [sym__escaped] = STATE(850), - [sym__unescaped] = STATE(850), - [sym__raw] = STATE(850), - [sym__inline_raw] = STATE(850), - [sym__multi_line_raw] = STATE(850), - [sym_attribute] = STATE(89), - [sym__inline_directive] = STATE(89), - [sym__nested_directive] = STATE(89), - [sym_fragment] = STATE(89), - [sym_section] = STATE(89), - [sym_inlineSection] = STATE(89), - [sym_once] = STATE(89), - [sym_verbatim] = STATE(89), - [sym_stack] = STATE(89), - [sym__push] = STATE(851), - [sym__pushOnce] = STATE(851), - [sym__pushIf] = STATE(851), - [sym__prepend] = STATE(851), - [sym__prependOnce] = STATE(851), - [sym_conditional] = STATE(89), - [sym_conditional_keyword] = STATE(89), - [sym__if] = STATE(852), - [sym__unless] = STATE(852), - [sym__isset] = STATE(852), - [sym__empty] = STATE(852), - [sym__auth] = STATE(852), - [sym__guest] = STATE(852), - [sym__production] = STATE(852), - [sym__env] = STATE(852), - [sym__hasSection] = STATE(852), - [sym__sectionMissing] = STATE(852), - [sym__error] = STATE(852), - [sym_authorization] = STATE(852), - [sym__can] = STATE(853), - [sym__cannot] = STATE(853), - [sym__canany] = STATE(853), - [sym__feature] = STATE(852), - [sym__custom] = STATE(852), - [sym_switch] = STATE(89), - [sym_loop] = STATE(89), - [sym_loop_operator] = STATE(89), - [sym__for] = STATE(854), - [sym__foreach] = STATE(854), - [sym__forelse] = STATE(854), - [sym__while] = STATE(854), - [sym_envoy] = STATE(89), - [sym__setup] = STATE(850), - [sym__task] = STATE(855), - [sym__story] = STATE(855), - [sym__hooks] = STATE(850), - [sym__before] = STATE(850), - [sym__after] = STATE(850), - [sym__envoy_error] = STATE(850), - [sym__success] = STATE(850), - [sym__finished] = STATE(850), - [sym_livewire] = STATE(89), - [sym__persist] = STATE(856), - [sym__teleport] = STATE(856), - [sym__volt] = STATE(856), - [sym_text] = STATE(89), - [sym__text] = STATE(704), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), - [aux_sym_php_only_repeat1] = STATE(704), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(107), - [aux_sym_keyword_token1] = ACTIONS(109), - [anon_sym_LBRACE_LBRACE] = ACTIONS(111), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), - [anon_sym_ATphp] = ACTIONS(115), - [aux_sym_attribute_token1] = ACTIONS(117), - [aux_sym__inline_directive_token1] = ACTIONS(119), - [anon_sym_ATfragment] = ACTIONS(121), - [anon_sym_ATsection] = ACTIONS(123), - [anon_sym_ATonce] = ACTIONS(125), - [anon_sym_ATverbatim] = ACTIONS(127), - [anon_sym_ATpush] = ACTIONS(129), - [anon_sym_ATpushOnce] = ACTIONS(131), - [anon_sym_ATpushIf] = ACTIONS(133), - [anon_sym_ATprepend] = ACTIONS(135), - [anon_sym_ATprependOnce] = ACTIONS(137), - [anon_sym_ATelse] = ACTIONS(139), - [aux_sym_conditional_keyword_token1] = ACTIONS(141), - [anon_sym_ATif] = ACTIONS(143), - [anon_sym_ATunless] = ACTIONS(145), - [anon_sym_ATisset] = ACTIONS(147), - [anon_sym_ATempty] = ACTIONS(149), - [anon_sym_ATauth] = ACTIONS(151), - [anon_sym_ATguest] = ACTIONS(153), - [anon_sym_ATproduction] = ACTIONS(155), - [anon_sym_ATenv] = ACTIONS(157), - [anon_sym_AThasSection] = ACTIONS(159), - [anon_sym_ATsectionMissing] = ACTIONS(161), - [anon_sym_ATerror] = ACTIONS(163), - [anon_sym_ATcan] = ACTIONS(165), - [anon_sym_ATcannot] = ACTIONS(167), - [anon_sym_ATcanany] = ACTIONS(169), - [anon_sym_ATfeature] = ACTIONS(171), - [aux_sym__custom_token1] = ACTIONS(173), - [aux_sym__custom_token2] = ACTIONS(175), - [anon_sym_ATswitch] = ACTIONS(177), - [aux_sym_loop_operator_token1] = ACTIONS(179), - [anon_sym_ATfor] = ACTIONS(181), - [anon_sym_ATforeach] = ACTIONS(183), - [anon_sym_ATforelse] = ACTIONS(185), - [anon_sym_ATwhile] = ACTIONS(187), - [anon_sym_ATsetup] = ACTIONS(189), - [anon_sym_ATtask] = ACTIONS(191), - [anon_sym_ATstory] = ACTIONS(193), - [anon_sym_ATbefore] = ACTIONS(195), - [anon_sym_ATafter] = ACTIONS(197), - [anon_sym_ATsuccess] = ACTIONS(199), - [anon_sym_ATfinished] = ACTIONS(201), - [anon_sym_ATpersist] = ACTIONS(203), - [anon_sym_ATteleport] = ACTIONS(205), - [anon_sym_ATvolt] = ACTIONS(207), - [aux_sym__text_token1] = ACTIONS(211), - [aux_sym__text_token2] = ACTIONS(211), - [aux_sym__text_token3] = ACTIONS(213), + [sym__definition] = STATE(104), + [sym_keyword] = STATE(104), + [sym_php_statement] = STATE(104), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(104), + [sym__inline_directive] = STATE(104), + [sym__nested_directive] = STATE(104), + [sym_fragment] = STATE(104), + [sym_section] = STATE(104), + [sym_inlineSection] = STATE(104), + [sym_once] = STATE(104), + [sym_verbatim] = STATE(104), + [sym_stack] = STATE(104), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(104), + [sym_conditional_keyword] = STATE(104), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(104), + [sym_loop] = STATE(104), + [sym_loop_operator] = STATE(104), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(104), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(104), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(104), + [sym_text] = STATE(104), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3963), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [166] = { + [sym__definition] = STATE(143), + [sym_keyword] = STATE(143), + [sym_php_statement] = STATE(143), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(143), + [sym__inline_directive] = STATE(143), + [sym__nested_directive] = STATE(143), + [sym_fragment] = STATE(143), + [sym_section] = STATE(143), + [sym_inlineSection] = STATE(143), + [sym_once] = STATE(143), + [sym_verbatim] = STATE(143), + [sym_stack] = STATE(143), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(143), + [sym_conditional_keyword] = STATE(143), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(143), + [sym_loop] = STATE(143), + [sym_loop_operator] = STATE(143), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(143), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(143), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(143), + [sym_text] = STATE(143), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3965), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [167] = { + [sym__definition] = STATE(80), + [sym_keyword] = STATE(80), + [sym_php_statement] = STATE(80), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(80), + [sym__inline_directive] = STATE(80), + [sym__nested_directive] = STATE(80), + [sym_fragment] = STATE(80), + [sym_section] = STATE(80), + [sym_inlineSection] = STATE(80), + [sym_once] = STATE(80), + [sym_verbatim] = STATE(80), + [sym_stack] = STATE(80), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(80), + [sym_conditional_keyword] = STATE(80), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(80), + [sym_loop] = STATE(80), + [sym_loop_operator] = STATE(80), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(80), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(80), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(80), + [sym_text] = STATE(80), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3967), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [168] = { + [sym__definition] = STATE(96), + [sym_keyword] = STATE(96), + [sym_php_statement] = STATE(96), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(96), + [sym__inline_directive] = STATE(96), + [sym__nested_directive] = STATE(96), + [sym_fragment] = STATE(96), + [sym_section] = STATE(96), + [sym_inlineSection] = STATE(96), + [sym_once] = STATE(96), + [sym_verbatim] = STATE(96), + [sym_stack] = STATE(96), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(96), + [sym_conditional_keyword] = STATE(96), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(96), + [sym_loop] = STATE(96), + [sym_loop_operator] = STATE(96), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(96), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(96), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(96), + [sym_text] = STATE(96), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3969), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [169] = { + [sym__definition] = STATE(142), + [sym_keyword] = STATE(142), + [sym_php_statement] = STATE(142), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(142), + [sym__inline_directive] = STATE(142), + [sym__nested_directive] = STATE(142), + [sym_fragment] = STATE(142), + [sym_section] = STATE(142), + [sym_inlineSection] = STATE(142), + [sym_once] = STATE(142), + [sym_verbatim] = STATE(142), + [sym_stack] = STATE(142), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(142), + [sym_conditional_keyword] = STATE(142), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(142), + [sym_loop] = STATE(142), + [sym_loop_operator] = STATE(142), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(142), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(142), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(142), + [sym_text] = STATE(142), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3971), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [170] = { + [sym__definition] = STATE(97), + [sym_keyword] = STATE(97), + [sym_php_statement] = STATE(97), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(97), + [sym__inline_directive] = STATE(97), + [sym__nested_directive] = STATE(97), + [sym_fragment] = STATE(97), + [sym_section] = STATE(97), + [sym_inlineSection] = STATE(97), + [sym_once] = STATE(97), + [sym_verbatim] = STATE(97), + [sym_stack] = STATE(97), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(97), + [sym_conditional_keyword] = STATE(97), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(97), + [sym_loop] = STATE(97), + [sym_loop_operator] = STATE(97), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(97), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(97), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(97), + [sym_text] = STATE(97), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3973), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [171] = { + [sym__definition] = STATE(99), + [sym_keyword] = STATE(99), + [sym_php_statement] = STATE(99), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(99), + [sym__inline_directive] = STATE(99), + [sym__nested_directive] = STATE(99), + [sym_fragment] = STATE(99), + [sym_section] = STATE(99), + [sym_inlineSection] = STATE(99), + [sym_once] = STATE(99), + [sym_verbatim] = STATE(99), + [sym_stack] = STATE(99), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(99), + [sym_conditional_keyword] = STATE(99), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(99), + [sym_loop] = STATE(99), + [sym_loop_operator] = STATE(99), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(99), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(99), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(99), + [sym_text] = STATE(99), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3975), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [172] = { [sym__definition] = STATE(106), - [sym_comment] = STATE(106), [sym_keyword] = STATE(106), [sym_php_statement] = STATE(106), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(775), + [sym__unescaped] = STATE(775), + [sym__raw] = STATE(775), + [sym__inline_raw] = STATE(775), + [sym__multi_line_raw] = STATE(775), [sym_attribute] = STATE(106), [sym__inline_directive] = STATE(106), [sym__nested_directive] = STATE(106), @@ -46533,425 +46598,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(106), [sym_verbatim] = STATE(106), [sym_stack] = STATE(106), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(774), + [sym__pushOnce] = STATE(774), + [sym__pushIf] = STATE(774), + [sym__prepend] = STATE(774), + [sym__prependOnce] = STATE(774), [sym_conditional] = STATE(106), [sym_conditional_keyword] = STATE(106), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(770), + [sym__unless] = STATE(770), + [sym__isset] = STATE(770), + [sym__empty] = STATE(770), + [sym__auth] = STATE(770), + [sym__guest] = STATE(770), + [sym__production] = STATE(770), + [sym__env] = STATE(770), + [sym__hasSection] = STATE(770), + [sym__sectionMissing] = STATE(770), + [sym__error] = STATE(770), + [sym_authorization] = STATE(770), + [sym__can] = STATE(777), + [sym__cannot] = STATE(777), + [sym__canany] = STATE(777), + [sym__feature] = STATE(770), + [sym__custom] = STATE(770), [sym_switch] = STATE(106), [sym_loop] = STATE(106), [sym_loop_operator] = STATE(106), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(761), + [sym__foreach] = STATE(761), + [sym__forelse] = STATE(761), + [sym__while] = STATE(761), [sym_envoy] = STATE(106), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(775), + [sym__task] = STATE(769), + [sym__story] = STATE(769), + [sym__hooks] = STATE(775), + [sym__before] = STATE(775), + [sym__after] = STATE(775), + [sym__envoy_error] = STATE(775), + [sym__success] = STATE(775), + [sym__finished] = STATE(775), [sym_livewire] = STATE(106), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(106), + [sym__persist] = STATE(751), + [sym__teleport] = STATE(751), + [sym__volt] = STATE(751), [sym_text] = STATE(106), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [167] = { - [sym__definition] = STATE(103), - [sym_comment] = STATE(103), - [sym_keyword] = STATE(103), - [sym_php_statement] = STATE(103), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(103), - [sym__inline_directive] = STATE(103), - [sym__nested_directive] = STATE(103), - [sym_fragment] = STATE(103), - [sym_section] = STATE(103), - [sym_inlineSection] = STATE(103), - [sym_once] = STATE(103), - [sym_verbatim] = STATE(103), - [sym_stack] = STATE(103), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(103), - [sym_conditional_keyword] = STATE(103), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(103), - [sym_loop] = STATE(103), - [sym_loop_operator] = STATE(103), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(103), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(103), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(103), - [sym_text] = STATE(103), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [168] = { - [sym__definition] = STATE(95), - [sym_comment] = STATE(95), - [sym_keyword] = STATE(95), - [sym_php_statement] = STATE(95), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(95), - [sym__inline_directive] = STATE(95), - [sym__nested_directive] = STATE(95), - [sym_fragment] = STATE(95), - [sym_section] = STATE(95), - [sym_inlineSection] = STATE(95), - [sym_once] = STATE(95), - [sym_verbatim] = STATE(95), - [sym_stack] = STATE(95), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(95), - [sym_conditional_keyword] = STATE(95), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(95), - [sym_loop] = STATE(95), - [sym_loop_operator] = STATE(95), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(95), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(95), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(95), - [sym_text] = STATE(95), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [169] = { - [sym__definition] = STATE(102), - [sym_comment] = STATE(102), - [sym_keyword] = STATE(102), - [sym_php_statement] = STATE(102), - [sym__escaped] = STATE(764), - [sym__unescaped] = STATE(764), - [sym__raw] = STATE(764), - [sym__inline_raw] = STATE(764), - [sym__multi_line_raw] = STATE(764), - [sym_attribute] = STATE(102), - [sym__inline_directive] = STATE(102), - [sym__nested_directive] = STATE(102), - [sym_fragment] = STATE(102), - [sym_section] = STATE(102), - [sym_inlineSection] = STATE(102), - [sym_once] = STATE(102), - [sym_verbatim] = STATE(102), - [sym_stack] = STATE(102), - [sym__push] = STATE(765), - [sym__pushOnce] = STATE(765), - [sym__pushIf] = STATE(765), - [sym__prepend] = STATE(765), - [sym__prependOnce] = STATE(765), - [sym_conditional] = STATE(102), - [sym_conditional_keyword] = STATE(102), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym_authorization] = STATE(766), - [sym__can] = STATE(767), - [sym__cannot] = STATE(767), - [sym__canany] = STATE(767), - [sym__feature] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(102), - [sym_loop] = STATE(102), - [sym_loop_operator] = STATE(102), - [sym__for] = STATE(769), - [sym__foreach] = STATE(769), - [sym__forelse] = STATE(769), - [sym__while] = STATE(769), - [sym_envoy] = STATE(102), - [sym__setup] = STATE(764), - [sym__task] = STATE(770), - [sym__story] = STATE(770), - [sym__hooks] = STATE(764), - [sym__before] = STATE(764), - [sym__after] = STATE(764), - [sym__envoy_error] = STATE(764), - [sym__success] = STATE(764), - [sym__finished] = STATE(764), - [sym_livewire] = STATE(102), - [sym__persist] = STATE(771), - [sym__teleport] = STATE(771), - [sym__volt] = STATE(771), - [sym_text] = STATE(102), - [sym__text] = STATE(716), - [aux_sym__if_statement_directive_body_repeat1] = STATE(102), - [aux_sym_php_only_repeat1] = STATE(716), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(215), + [sym__text] = STATE(706), + [aux_sym__if_statement_directive_body_repeat1] = STATE(106), + [aux_sym_php_only_repeat1] = STATE(706), + [sym_comment] = ACTIONS(3977), [aux_sym_keyword_token1] = ACTIONS(217), [anon_sym_LBRACE_LBRACE] = ACTIONS(219), [anon_sym_LBRACE_BANG_BANG] = ACTIONS(221), @@ -47006,385 +46702,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__text_token2] = ACTIONS(317), [aux_sym__text_token3] = ACTIONS(319), }, - [170] = { - [sym__definition] = STATE(142), - [sym_comment] = STATE(142), - [sym_keyword] = STATE(142), - [sym_php_statement] = STATE(142), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(142), - [sym__inline_directive] = STATE(142), - [sym__nested_directive] = STATE(142), - [sym_fragment] = STATE(142), - [sym_section] = STATE(142), - [sym_inlineSection] = STATE(142), - [sym_once] = STATE(142), - [sym_verbatim] = STATE(142), - [sym_stack] = STATE(142), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(142), - [sym_conditional_keyword] = STATE(142), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(142), - [sym_loop] = STATE(142), - [sym_loop_operator] = STATE(142), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(142), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(142), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(142), - [sym_text] = STATE(142), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [171] = { - [sym__definition] = STATE(97), - [sym_comment] = STATE(97), - [sym_keyword] = STATE(97), - [sym_php_statement] = STATE(97), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(97), - [sym__inline_directive] = STATE(97), - [sym__nested_directive] = STATE(97), - [sym_fragment] = STATE(97), - [sym_section] = STATE(97), - [sym_inlineSection] = STATE(97), - [sym_once] = STATE(97), - [sym_verbatim] = STATE(97), - [sym_stack] = STATE(97), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(97), - [sym_conditional_keyword] = STATE(97), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(97), - [sym_loop] = STATE(97), - [sym_loop_operator] = STATE(97), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(97), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(97), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(97), - [sym_text] = STATE(97), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [172] = { - [sym__definition] = STATE(99), - [sym_comment] = STATE(99), - [sym_keyword] = STATE(99), - [sym_php_statement] = STATE(99), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(99), - [sym__inline_directive] = STATE(99), - [sym__nested_directive] = STATE(99), - [sym_fragment] = STATE(99), - [sym_section] = STATE(99), - [sym_inlineSection] = STATE(99), - [sym_once] = STATE(99), - [sym_verbatim] = STATE(99), - [sym_stack] = STATE(99), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(99), - [sym_conditional_keyword] = STATE(99), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(99), - [sym_loop] = STATE(99), - [sym_loop_operator] = STATE(99), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(99), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(99), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(99), - [sym_text] = STATE(99), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, [173] = { [sym__definition] = STATE(144), - [sym_comment] = STATE(144), [sym_keyword] = STATE(144), [sym_php_statement] = STATE(144), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(144), [sym__inline_directive] = STATE(144), [sym__nested_directive] = STATE(144), @@ -47394,735 +46720,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(144), [sym_verbatim] = STATE(144), [sym_stack] = STATE(144), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(144), [sym_conditional_keyword] = STATE(144), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(144), [sym_loop] = STATE(144), [sym_loop_operator] = STATE(144), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(144), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(144), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(144), [sym_text] = STATE(144), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3979), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [174] = { - [sym__definition] = STATE(93), - [sym_comment] = STATE(93), - [sym_keyword] = STATE(93), - [sym_php_statement] = STATE(93), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(93), - [sym__inline_directive] = STATE(93), - [sym__nested_directive] = STATE(93), - [sym_fragment] = STATE(93), - [sym_section] = STATE(93), - [sym_inlineSection] = STATE(93), - [sym_once] = STATE(93), - [sym_verbatim] = STATE(93), - [sym_stack] = STATE(93), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(93), - [sym_conditional_keyword] = STATE(93), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(93), - [sym_loop] = STATE(93), - [sym_loop_operator] = STATE(93), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(93), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(93), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(93), - [sym_text] = STATE(93), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(100), + [sym_keyword] = STATE(100), + [sym_php_statement] = STATE(100), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(100), + [sym__inline_directive] = STATE(100), + [sym__nested_directive] = STATE(100), + [sym_fragment] = STATE(100), + [sym_section] = STATE(100), + [sym_inlineSection] = STATE(100), + [sym_once] = STATE(100), + [sym_verbatim] = STATE(100), + [sym_stack] = STATE(100), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(100), + [sym_conditional_keyword] = STATE(100), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(100), + [sym_loop] = STATE(100), + [sym_loop_operator] = STATE(100), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(100), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(100), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(100), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3981), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [175] = { - [sym__definition] = STATE(146), - [sym_comment] = STATE(146), - [sym_keyword] = STATE(146), - [sym_php_statement] = STATE(146), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(146), - [sym__inline_directive] = STATE(146), - [sym__nested_directive] = STATE(146), - [sym_fragment] = STATE(146), - [sym_section] = STATE(146), - [sym_inlineSection] = STATE(146), - [sym_once] = STATE(146), - [sym_verbatim] = STATE(146), - [sym_stack] = STATE(146), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(146), - [sym_conditional_keyword] = STATE(146), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(146), - [sym_loop] = STATE(146), - [sym_loop_operator] = STATE(146), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(146), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(146), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(146), - [sym_text] = STATE(146), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(145), + [sym_keyword] = STATE(145), + [sym_php_statement] = STATE(145), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(145), + [sym__inline_directive] = STATE(145), + [sym__nested_directive] = STATE(145), + [sym_fragment] = STATE(145), + [sym_section] = STATE(145), + [sym_inlineSection] = STATE(145), + [sym_once] = STATE(145), + [sym_verbatim] = STATE(145), + [sym_stack] = STATE(145), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(145), + [sym_conditional_keyword] = STATE(145), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(145), + [sym_loop] = STATE(145), + [sym_loop_operator] = STATE(145), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(145), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(145), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(145), + [sym_text] = STATE(145), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3983), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [176] = { - [sym__definition] = STATE(105), - [sym_comment] = STATE(105), - [sym_keyword] = STATE(105), - [sym_php_statement] = STATE(105), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(105), - [sym__inline_directive] = STATE(105), - [sym__nested_directive] = STATE(105), - [sym_fragment] = STATE(105), - [sym_section] = STATE(105), - [sym_inlineSection] = STATE(105), - [sym_once] = STATE(105), - [sym_verbatim] = STATE(105), - [sym_stack] = STATE(105), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(105), - [sym_conditional_keyword] = STATE(105), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(105), - [sym_loop] = STATE(105), - [sym_loop_operator] = STATE(105), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(105), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(105), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(105), - [sym_text] = STATE(105), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(108), + [sym_keyword] = STATE(108), + [sym_php_statement] = STATE(108), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(108), + [sym__inline_directive] = STATE(108), + [sym__nested_directive] = STATE(108), + [sym_fragment] = STATE(108), + [sym_section] = STATE(108), + [sym_inlineSection] = STATE(108), + [sym_once] = STATE(108), + [sym_verbatim] = STATE(108), + [sym_stack] = STATE(108), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(108), + [sym_conditional_keyword] = STATE(108), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(108), + [sym_loop] = STATE(108), + [sym_loop_operator] = STATE(108), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(108), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(108), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(108), + [sym_text] = STATE(108), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3985), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [177] = { - [sym__definition] = STATE(73), - [sym_comment] = STATE(73), - [sym_keyword] = STATE(73), - [sym_php_statement] = STATE(73), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(73), - [sym__inline_directive] = STATE(73), - [sym__nested_directive] = STATE(73), - [sym_fragment] = STATE(73), - [sym_section] = STATE(73), - [sym_inlineSection] = STATE(73), - [sym_once] = STATE(73), - [sym_verbatim] = STATE(73), - [sym_stack] = STATE(73), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(73), - [sym_conditional_keyword] = STATE(73), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(73), - [sym_loop] = STATE(73), - [sym_loop_operator] = STATE(73), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(73), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(73), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(73), - [sym_text] = STATE(73), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(110), + [sym_keyword] = STATE(110), + [sym_php_statement] = STATE(110), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(110), + [sym__inline_directive] = STATE(110), + [sym__nested_directive] = STATE(110), + [sym_fragment] = STATE(110), + [sym_section] = STATE(110), + [sym_inlineSection] = STATE(110), + [sym_once] = STATE(110), + [sym_verbatim] = STATE(110), + [sym_stack] = STATE(110), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(110), + [sym_conditional_keyword] = STATE(110), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(110), + [sym_loop] = STATE(110), + [sym_loop_operator] = STATE(110), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(110), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(110), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(110), + [sym_text] = STATE(110), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3987), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [178] = { - [sym__definition] = STATE(118), - [sym_comment] = STATE(118), - [sym_keyword] = STATE(118), - [sym_php_statement] = STATE(118), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(118), - [sym__inline_directive] = STATE(118), - [sym__nested_directive] = STATE(118), - [sym_fragment] = STATE(118), - [sym_section] = STATE(118), - [sym_inlineSection] = STATE(118), - [sym_once] = STATE(118), - [sym_verbatim] = STATE(118), - [sym_stack] = STATE(118), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(118), - [sym_conditional_keyword] = STATE(118), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(118), - [sym_loop] = STATE(118), - [sym_loop_operator] = STATE(118), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(118), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(118), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(118), - [sym_text] = STATE(118), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [179] = { [sym__definition] = STATE(127), - [sym_comment] = STATE(127), [sym_keyword] = STATE(127), [sym_php_statement] = STATE(127), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(127), [sym__inline_directive] = STATE(127), [sym__nested_directive] = STATE(127), @@ -48132,243 +47330,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(127), [sym_verbatim] = STATE(127), [sym_stack] = STATE(127), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(127), [sym_conditional_keyword] = STATE(127), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(127), [sym_loop] = STATE(127), [sym_loop_operator] = STATE(127), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(127), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(127), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(127), [sym_text] = STATE(127), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3989), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [179] = { + [sym__definition] = STATE(89), + [sym_keyword] = STATE(89), + [sym_php_statement] = STATE(89), + [sym__escaped] = STATE(836), + [sym__unescaped] = STATE(836), + [sym__raw] = STATE(836), + [sym__inline_raw] = STATE(836), + [sym__multi_line_raw] = STATE(836), + [sym_attribute] = STATE(89), + [sym__inline_directive] = STATE(89), + [sym__nested_directive] = STATE(89), + [sym_fragment] = STATE(89), + [sym_section] = STATE(89), + [sym_inlineSection] = STATE(89), + [sym_once] = STATE(89), + [sym_verbatim] = STATE(89), + [sym_stack] = STATE(89), + [sym__push] = STATE(837), + [sym__pushOnce] = STATE(837), + [sym__pushIf] = STATE(837), + [sym__prepend] = STATE(837), + [sym__prependOnce] = STATE(837), + [sym_conditional] = STATE(89), + [sym_conditional_keyword] = STATE(89), + [sym__if] = STATE(838), + [sym__unless] = STATE(838), + [sym__isset] = STATE(838), + [sym__empty] = STATE(838), + [sym__auth] = STATE(838), + [sym__guest] = STATE(838), + [sym__production] = STATE(838), + [sym__env] = STATE(838), + [sym__hasSection] = STATE(838), + [sym__sectionMissing] = STATE(838), + [sym__error] = STATE(838), + [sym_authorization] = STATE(838), + [sym__can] = STATE(839), + [sym__cannot] = STATE(839), + [sym__canany] = STATE(839), + [sym__feature] = STATE(838), + [sym__custom] = STATE(838), + [sym_switch] = STATE(89), + [sym_loop] = STATE(89), + [sym_loop_operator] = STATE(89), + [sym__for] = STATE(840), + [sym__foreach] = STATE(840), + [sym__forelse] = STATE(840), + [sym__while] = STATE(840), + [sym_envoy] = STATE(89), + [sym__setup] = STATE(836), + [sym__task] = STATE(841), + [sym__story] = STATE(841), + [sym__hooks] = STATE(836), + [sym__before] = STATE(836), + [sym__after] = STATE(836), + [sym__envoy_error] = STATE(836), + [sym__success] = STATE(836), + [sym__finished] = STATE(836), + [sym_livewire] = STATE(89), + [sym__persist] = STATE(842), + [sym__teleport] = STATE(842), + [sym__volt] = STATE(842), + [sym_text] = STATE(89), + [sym__text] = STATE(720), + [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [aux_sym_php_only_repeat1] = STATE(720), + [sym_comment] = ACTIONS(3991), + [aux_sym_keyword_token1] = ACTIONS(109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(111), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(113), + [anon_sym_ATphp] = ACTIONS(115), + [aux_sym_attribute_token1] = ACTIONS(117), + [aux_sym__inline_directive_token1] = ACTIONS(119), + [anon_sym_ATfragment] = ACTIONS(121), + [anon_sym_ATsection] = ACTIONS(123), + [anon_sym_ATonce] = ACTIONS(125), + [anon_sym_ATverbatim] = ACTIONS(127), + [anon_sym_ATpush] = ACTIONS(129), + [anon_sym_ATpushOnce] = ACTIONS(131), + [anon_sym_ATpushIf] = ACTIONS(133), + [anon_sym_ATprepend] = ACTIONS(135), + [anon_sym_ATprependOnce] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(139), + [aux_sym_conditional_keyword_token1] = ACTIONS(141), + [anon_sym_ATif] = ACTIONS(143), + [anon_sym_ATunless] = ACTIONS(145), + [anon_sym_ATisset] = ACTIONS(147), + [anon_sym_ATempty] = ACTIONS(149), + [anon_sym_ATauth] = ACTIONS(151), + [anon_sym_ATguest] = ACTIONS(153), + [anon_sym_ATproduction] = ACTIONS(155), + [anon_sym_ATenv] = ACTIONS(157), + [anon_sym_AThasSection] = ACTIONS(159), + [anon_sym_ATsectionMissing] = ACTIONS(161), + [anon_sym_ATerror] = ACTIONS(163), + [anon_sym_ATcan] = ACTIONS(165), + [anon_sym_ATcannot] = ACTIONS(167), + [anon_sym_ATcanany] = ACTIONS(169), + [anon_sym_ATfeature] = ACTIONS(171), + [aux_sym__custom_token1] = ACTIONS(173), + [aux_sym__custom_token2] = ACTIONS(175), + [anon_sym_ATswitch] = ACTIONS(177), + [aux_sym_loop_operator_token1] = ACTIONS(179), + [anon_sym_ATfor] = ACTIONS(181), + [anon_sym_ATforeach] = ACTIONS(183), + [anon_sym_ATforelse] = ACTIONS(185), + [anon_sym_ATwhile] = ACTIONS(187), + [anon_sym_ATsetup] = ACTIONS(189), + [anon_sym_ATtask] = ACTIONS(191), + [anon_sym_ATstory] = ACTIONS(193), + [anon_sym_ATbefore] = ACTIONS(195), + [anon_sym_ATafter] = ACTIONS(197), + [anon_sym_ATsuccess] = ACTIONS(199), + [anon_sym_ATfinished] = ACTIONS(201), + [anon_sym_ATpersist] = ACTIONS(203), + [anon_sym_ATteleport] = ACTIONS(205), + [anon_sym_ATvolt] = ACTIONS(207), + [aux_sym__text_token1] = ACTIONS(211), + [aux_sym__text_token2] = ACTIONS(211), + [aux_sym__text_token3] = ACTIONS(213), }, [180] = { - [sym__definition] = STATE(113), - [sym_comment] = STATE(113), - [sym_keyword] = STATE(113), - [sym_php_statement] = STATE(113), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(113), - [sym__inline_directive] = STATE(113), - [sym__nested_directive] = STATE(113), - [sym_fragment] = STATE(113), - [sym_section] = STATE(113), - [sym_inlineSection] = STATE(113), - [sym_once] = STATE(113), - [sym_verbatim] = STATE(113), - [sym_stack] = STATE(113), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(113), - [sym_conditional_keyword] = STATE(113), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(113), - [sym_loop] = STATE(113), - [sym_loop_operator] = STATE(113), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(113), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(113), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(113), - [sym_text] = STATE(113), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(128), + [sym_keyword] = STATE(128), + [sym_php_statement] = STATE(128), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(128), + [sym__inline_directive] = STATE(128), + [sym__nested_directive] = STATE(128), + [sym_fragment] = STATE(128), + [sym_section] = STATE(128), + [sym_inlineSection] = STATE(128), + [sym_once] = STATE(128), + [sym_verbatim] = STATE(128), + [sym_stack] = STATE(128), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(128), + [sym_conditional_keyword] = STATE(128), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(128), + [sym_loop] = STATE(128), + [sym_loop_operator] = STATE(128), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(128), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(128), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(128), + [sym_text] = STATE(128), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3993), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [181] = { + [sym__definition] = STATE(111), + [sym_keyword] = STATE(111), + [sym_php_statement] = STATE(111), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(111), + [sym__inline_directive] = STATE(111), + [sym__nested_directive] = STATE(111), + [sym_fragment] = STATE(111), + [sym_section] = STATE(111), + [sym_inlineSection] = STATE(111), + [sym_once] = STATE(111), + [sym_verbatim] = STATE(111), + [sym_stack] = STATE(111), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(111), + [sym_conditional_keyword] = STATE(111), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(111), + [sym_loop] = STATE(111), + [sym_loop_operator] = STATE(111), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(111), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(111), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(111), + [sym_text] = STATE(111), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3995), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), + }, + [182] = { [sym__definition] = STATE(116), - [sym_comment] = STATE(116), [sym_keyword] = STATE(116), [sym_php_statement] = STATE(116), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), [sym_attribute] = STATE(116), [sym__inline_directive] = STATE(116), [sym__nested_directive] = STATE(116), @@ -48378,729 +47818,601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(116), [sym_verbatim] = STATE(116), [sym_stack] = STATE(116), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), [sym_conditional] = STATE(116), [sym_conditional_keyword] = STATE(116), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), [sym_switch] = STATE(116), [sym_loop] = STATE(116), [sym_loop_operator] = STATE(116), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), [sym_envoy] = STATE(116), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), [sym_livewire] = STATE(116), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(116), [sym_text] = STATE(116), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), - }, - [182] = { - [sym__definition] = STATE(143), - [sym_comment] = STATE(143), - [sym_keyword] = STATE(143), - [sym_php_statement] = STATE(143), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(143), - [sym__inline_directive] = STATE(143), - [sym__nested_directive] = STATE(143), - [sym_fragment] = STATE(143), - [sym_section] = STATE(143), - [sym_inlineSection] = STATE(143), - [sym_once] = STATE(143), - [sym_verbatim] = STATE(143), - [sym_stack] = STATE(143), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(143), - [sym_conditional_keyword] = STATE(143), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(143), - [sym_loop] = STATE(143), - [sym_loop_operator] = STATE(143), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(143), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(143), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(143), - [sym_text] = STATE(143), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3997), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [183] = { - [sym__definition] = STATE(112), - [sym_comment] = STATE(112), - [sym_keyword] = STATE(112), - [sym_php_statement] = STATE(112), - [sym__escaped] = STATE(971), - [sym__unescaped] = STATE(971), - [sym__raw] = STATE(971), - [sym__inline_raw] = STATE(971), - [sym__multi_line_raw] = STATE(971), - [sym_attribute] = STATE(112), - [sym__inline_directive] = STATE(112), - [sym__nested_directive] = STATE(112), - [sym_fragment] = STATE(112), - [sym_section] = STATE(112), - [sym_inlineSection] = STATE(112), - [sym_once] = STATE(112), - [sym_verbatim] = STATE(112), - [sym_stack] = STATE(112), - [sym__push] = STATE(967), - [sym__pushOnce] = STATE(967), - [sym__pushIf] = STATE(967), - [sym__prepend] = STATE(967), - [sym__prependOnce] = STATE(967), - [sym_conditional] = STATE(112), - [sym_conditional_keyword] = STATE(112), - [sym__if] = STATE(970), - [sym__unless] = STATE(970), - [sym__isset] = STATE(970), - [sym__empty] = STATE(970), - [sym__auth] = STATE(970), - [sym__guest] = STATE(970), - [sym__production] = STATE(970), - [sym__env] = STATE(970), - [sym__hasSection] = STATE(970), - [sym__sectionMissing] = STATE(970), - [sym__error] = STATE(970), - [sym_authorization] = STATE(970), - [sym__can] = STATE(978), - [sym__cannot] = STATE(978), - [sym__canany] = STATE(978), - [sym__feature] = STATE(970), - [sym__custom] = STATE(970), - [sym_switch] = STATE(112), - [sym_loop] = STATE(112), - [sym_loop_operator] = STATE(112), - [sym__for] = STATE(974), - [sym__foreach] = STATE(974), - [sym__forelse] = STATE(974), - [sym__while] = STATE(974), - [sym_envoy] = STATE(112), - [sym__setup] = STATE(971), - [sym__task] = STATE(975), - [sym__story] = STATE(975), - [sym__hooks] = STATE(971), - [sym__before] = STATE(971), - [sym__after] = STATE(971), - [sym__envoy_error] = STATE(971), - [sym__success] = STATE(971), - [sym__finished] = STATE(971), - [sym_livewire] = STATE(112), - [sym__persist] = STATE(983), - [sym__teleport] = STATE(983), - [sym__volt] = STATE(983), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(112), - [sym_text] = STATE(112), - [sym__text] = STATE(725), - [aux_sym_php_only_repeat1] = STATE(725), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(321), - [aux_sym_keyword_token1] = ACTIONS(323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(327), - [anon_sym_ATphp] = ACTIONS(329), - [aux_sym_attribute_token1] = ACTIONS(331), - [aux_sym__inline_directive_token1] = ACTIONS(333), - [anon_sym_ATfragment] = ACTIONS(335), - [anon_sym_ATsection] = ACTIONS(337), - [anon_sym_ATonce] = ACTIONS(339), - [anon_sym_ATverbatim] = ACTIONS(341), - [anon_sym_ATpush] = ACTIONS(343), - [anon_sym_ATpushOnce] = ACTIONS(345), - [anon_sym_ATpushIf] = ACTIONS(347), - [anon_sym_ATprepend] = ACTIONS(349), - [anon_sym_ATprependOnce] = ACTIONS(351), - [anon_sym_ATelse] = ACTIONS(353), - [aux_sym_conditional_keyword_token1] = ACTIONS(355), - [anon_sym_ATif] = ACTIONS(357), - [anon_sym_ATunless] = ACTIONS(359), - [anon_sym_ATisset] = ACTIONS(361), - [anon_sym_ATempty] = ACTIONS(363), - [anon_sym_ATauth] = ACTIONS(365), - [anon_sym_ATguest] = ACTIONS(367), - [anon_sym_ATproduction] = ACTIONS(369), - [anon_sym_ATenv] = ACTIONS(373), - [anon_sym_AThasSection] = ACTIONS(375), - [anon_sym_ATsectionMissing] = ACTIONS(377), - [anon_sym_ATerror] = ACTIONS(379), - [anon_sym_ATcan] = ACTIONS(381), - [anon_sym_ATcannot] = ACTIONS(383), - [anon_sym_ATcanany] = ACTIONS(385), - [anon_sym_ATfeature] = ACTIONS(387), - [aux_sym__custom_token1] = ACTIONS(389), - [aux_sym__custom_token2] = ACTIONS(391), - [anon_sym_ATswitch] = ACTIONS(393), - [aux_sym_loop_operator_token1] = ACTIONS(395), - [anon_sym_ATfor] = ACTIONS(397), - [anon_sym_ATforeach] = ACTIONS(399), - [anon_sym_ATforelse] = ACTIONS(401), - [anon_sym_ATwhile] = ACTIONS(403), - [anon_sym_ATsetup] = ACTIONS(405), - [anon_sym_ATtask] = ACTIONS(407), - [anon_sym_ATstory] = ACTIONS(409), - [anon_sym_ATbefore] = ACTIONS(411), - [anon_sym_ATafter] = ACTIONS(413), - [anon_sym_ATsuccess] = ACTIONS(415), - [anon_sym_ATfinished] = ACTIONS(417), - [anon_sym_ATpersist] = ACTIONS(419), - [anon_sym_ATteleport] = ACTIONS(421), - [anon_sym_ATvolt] = ACTIONS(423), - [aux_sym__text_token1] = ACTIONS(425), - [aux_sym__text_token2] = ACTIONS(425), - [aux_sym__text_token3] = ACTIONS(427), + [sym__definition] = STATE(73), + [sym_keyword] = STATE(73), + [sym_php_statement] = STATE(73), + [sym__escaped] = STATE(927), + [sym__unescaped] = STATE(927), + [sym__raw] = STATE(927), + [sym__inline_raw] = STATE(927), + [sym__multi_line_raw] = STATE(927), + [sym_attribute] = STATE(73), + [sym__inline_directive] = STATE(73), + [sym__nested_directive] = STATE(73), + [sym_fragment] = STATE(73), + [sym_section] = STATE(73), + [sym_inlineSection] = STATE(73), + [sym_once] = STATE(73), + [sym_verbatim] = STATE(73), + [sym_stack] = STATE(73), + [sym__push] = STATE(937), + [sym__pushOnce] = STATE(937), + [sym__pushIf] = STATE(937), + [sym__prepend] = STATE(937), + [sym__prependOnce] = STATE(937), + [sym_conditional] = STATE(73), + [sym_conditional_keyword] = STATE(73), + [sym__if] = STATE(930), + [sym__unless] = STATE(930), + [sym__isset] = STATE(930), + [sym__empty] = STATE(930), + [sym__auth] = STATE(930), + [sym__guest] = STATE(930), + [sym__production] = STATE(930), + [sym__env] = STATE(930), + [sym__hasSection] = STATE(930), + [sym__sectionMissing] = STATE(930), + [sym__error] = STATE(930), + [sym_authorization] = STATE(930), + [sym__can] = STATE(932), + [sym__cannot] = STATE(932), + [sym__canany] = STATE(932), + [sym__feature] = STATE(930), + [sym__custom] = STATE(930), + [sym_switch] = STATE(73), + [sym_loop] = STATE(73), + [sym_loop_operator] = STATE(73), + [sym__for] = STATE(933), + [sym__foreach] = STATE(933), + [sym__forelse] = STATE(933), + [sym__while] = STATE(933), + [sym_envoy] = STATE(73), + [sym__setup] = STATE(927), + [sym__task] = STATE(935), + [sym__story] = STATE(935), + [sym__hooks] = STATE(927), + [sym__before] = STATE(927), + [sym__after] = STATE(927), + [sym__envoy_error] = STATE(927), + [sym__success] = STATE(927), + [sym__finished] = STATE(927), + [sym_livewire] = STATE(73), + [sym__persist] = STATE(959), + [sym__teleport] = STATE(959), + [sym__volt] = STATE(959), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(73), + [sym_text] = STATE(73), + [sym__text] = STATE(722), + [aux_sym_php_only_repeat1] = STATE(722), + [sym_comment] = ACTIONS(3999), + [aux_sym_keyword_token1] = ACTIONS(327), + [anon_sym_LBRACE_LBRACE] = ACTIONS(329), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(331), + [anon_sym_ATphp] = ACTIONS(333), + [aux_sym_attribute_token1] = ACTIONS(335), + [aux_sym__inline_directive_token1] = ACTIONS(337), + [anon_sym_ATfragment] = ACTIONS(339), + [anon_sym_ATsection] = ACTIONS(341), + [anon_sym_ATonce] = ACTIONS(343), + [anon_sym_ATverbatim] = ACTIONS(345), + [anon_sym_ATpush] = ACTIONS(347), + [anon_sym_ATpushOnce] = ACTIONS(349), + [anon_sym_ATpushIf] = ACTIONS(351), + [anon_sym_ATprepend] = ACTIONS(353), + [anon_sym_ATprependOnce] = ACTIONS(355), + [anon_sym_ATelse] = ACTIONS(357), + [aux_sym_conditional_keyword_token1] = ACTIONS(359), + [anon_sym_ATif] = ACTIONS(361), + [anon_sym_ATunless] = ACTIONS(363), + [anon_sym_ATisset] = ACTIONS(365), + [anon_sym_ATempty] = ACTIONS(367), + [anon_sym_ATauth] = ACTIONS(369), + [anon_sym_ATguest] = ACTIONS(371), + [anon_sym_ATproduction] = ACTIONS(373), + [anon_sym_ATenv] = ACTIONS(377), + [anon_sym_AThasSection] = ACTIONS(379), + [anon_sym_ATsectionMissing] = ACTIONS(381), + [anon_sym_ATerror] = ACTIONS(383), + [anon_sym_ATcan] = ACTIONS(385), + [anon_sym_ATcannot] = ACTIONS(387), + [anon_sym_ATcanany] = ACTIONS(389), + [anon_sym_ATfeature] = ACTIONS(391), + [aux_sym__custom_token1] = ACTIONS(393), + [aux_sym__custom_token2] = ACTIONS(395), + [anon_sym_ATswitch] = ACTIONS(397), + [aux_sym_loop_operator_token1] = ACTIONS(399), + [anon_sym_ATfor] = ACTIONS(401), + [anon_sym_ATforeach] = ACTIONS(403), + [anon_sym_ATforelse] = ACTIONS(405), + [anon_sym_ATwhile] = ACTIONS(407), + [anon_sym_ATsetup] = ACTIONS(409), + [anon_sym_ATtask] = ACTIONS(411), + [anon_sym_ATstory] = ACTIONS(413), + [anon_sym_ATbefore] = ACTIONS(415), + [anon_sym_ATafter] = ACTIONS(417), + [anon_sym_ATsuccess] = ACTIONS(419), + [anon_sym_ATfinished] = ACTIONS(421), + [anon_sym_ATpersist] = ACTIONS(423), + [anon_sym_ATteleport] = ACTIONS(425), + [anon_sym_ATvolt] = ACTIONS(427), + [aux_sym__text_token1] = ACTIONS(429), + [aux_sym__text_token2] = ACTIONS(429), + [aux_sym__text_token3] = ACTIONS(431), }, [184] = { - [sym__definition] = STATE(184), - [sym_comment] = STATE(184), - [sym_keyword] = STATE(184), - [sym_php_statement] = STATE(184), - [sym__escaped] = STATE(2185), - [sym__unescaped] = STATE(2185), - [sym__raw] = STATE(2185), - [sym__inline_raw] = STATE(2185), - [sym__multi_line_raw] = STATE(2185), - [sym_attribute] = STATE(184), - [sym__inline_directive] = STATE(184), - [sym__nested_directive] = STATE(184), - [sym_fragment] = STATE(184), - [sym_section] = STATE(184), - [sym_inlineSection] = STATE(184), - [sym_once] = STATE(184), - [sym_verbatim] = STATE(184), - [sym_stack] = STATE(184), - [sym__push] = STATE(2187), - [sym__pushOnce] = STATE(2187), - [sym__pushIf] = STATE(2187), - [sym__prepend] = STATE(2187), - [sym__prependOnce] = STATE(2187), - [sym_conditional] = STATE(184), - [sym__if] = STATE(2193), - [sym__unless] = STATE(2193), - [sym__isset] = STATE(2193), - [sym__empty] = STATE(2193), - [sym__auth] = STATE(2193), - [sym__guest] = STATE(2193), - [sym__production] = STATE(2193), - [sym__env] = STATE(2193), - [sym__hasSection] = STATE(2193), - [sym__sectionMissing] = STATE(2193), - [sym__error] = STATE(2193), - [sym_authorization] = STATE(2193), - [sym__can] = STATE(2201), - [sym__cannot] = STATE(2201), - [sym__canany] = STATE(2201), - [sym__feature] = STATE(2193), - [sym__custom] = STATE(2193), - [sym_switch] = STATE(184), - [sym_loop] = STATE(184), - [sym_loop_operator] = STATE(184), - [sym__for] = STATE(2202), - [sym__foreach] = STATE(2202), - [sym__forelse] = STATE(2202), - [sym__while] = STATE(2202), - [sym_envoy] = STATE(184), - [sym__setup] = STATE(2185), - [sym__task] = STATE(2205), - [sym__story] = STATE(2205), - [sym__hooks] = STATE(2185), - [sym__before] = STATE(2185), - [sym__after] = STATE(2185), - [sym__envoy_error] = STATE(2185), - [sym__success] = STATE(2185), - [sym__finished] = STATE(2185), - [sym_livewire] = STATE(184), - [sym__persist] = STATE(2222), - [sym__teleport] = STATE(2222), - [sym__volt] = STATE(2222), - [aux_sym__directive_body] = STATE(184), - [sym_text] = STATE(184), - [sym__text] = STATE(819), - [aux_sym_php_only_repeat1] = STATE(819), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3901), - [aux_sym_keyword_token1] = ACTIONS(3904), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3907), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3910), - [anon_sym_ATphp] = ACTIONS(3913), - [aux_sym_attribute_token1] = ACTIONS(3916), - [aux_sym__inline_directive_token1] = ACTIONS(3919), - [anon_sym_ATfragment] = ACTIONS(3922), - [anon_sym_ATendfragment] = ACTIONS(3925), - [anon_sym_ATsection] = ACTIONS(3927), - [anon_sym_ATonce] = ACTIONS(3930), - [anon_sym_ATverbatim] = ACTIONS(3933), - [anon_sym_ATpush] = ACTIONS(3936), - [anon_sym_ATpushOnce] = ACTIONS(3939), - [anon_sym_ATpushIf] = ACTIONS(3942), - [anon_sym_ATprepend] = ACTIONS(3945), - [anon_sym_ATprependOnce] = ACTIONS(3948), - [anon_sym_ATif] = ACTIONS(3951), - [anon_sym_ATunless] = ACTIONS(3954), - [anon_sym_ATisset] = ACTIONS(3957), - [anon_sym_ATempty] = ACTIONS(3960), - [anon_sym_ATauth] = ACTIONS(3963), - [anon_sym_ATguest] = ACTIONS(3966), - [anon_sym_ATproduction] = ACTIONS(3969), - [anon_sym_ATenv] = ACTIONS(3972), - [anon_sym_AThasSection] = ACTIONS(3975), - [anon_sym_ATsectionMissing] = ACTIONS(3978), - [anon_sym_ATerror] = ACTIONS(3981), - [anon_sym_ATcan] = ACTIONS(3984), - [anon_sym_ATcannot] = ACTIONS(3987), - [anon_sym_ATcanany] = ACTIONS(3990), - [anon_sym_ATfeature] = ACTIONS(3993), - [aux_sym__custom_token1] = ACTIONS(3996), - [aux_sym__custom_token2] = ACTIONS(3999), - [anon_sym_ATswitch] = ACTIONS(4002), - [aux_sym_loop_operator_token1] = ACTIONS(4005), - [anon_sym_ATfor] = ACTIONS(4008), - [anon_sym_ATforeach] = ACTIONS(4011), - [anon_sym_ATforelse] = ACTIONS(4014), - [anon_sym_ATwhile] = ACTIONS(4017), - [anon_sym_ATsetup] = ACTIONS(4020), - [anon_sym_ATtask] = ACTIONS(4023), - [anon_sym_ATstory] = ACTIONS(4026), - [anon_sym_ATbefore] = ACTIONS(4029), - [anon_sym_ATafter] = ACTIONS(4032), - [anon_sym_ATsuccess] = ACTIONS(4035), - [anon_sym_ATfinished] = ACTIONS(4038), - [anon_sym_ATpersist] = ACTIONS(4041), - [anon_sym_ATteleport] = ACTIONS(4044), - [anon_sym_ATvolt] = ACTIONS(4047), - [aux_sym__text_token1] = ACTIONS(4050), - [aux_sym__text_token2] = ACTIONS(4050), - [aux_sym__text_token3] = ACTIONS(4053), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4069), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [185] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4078), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(464), + [sym_keyword] = STATE(464), + [sym_php_statement] = STATE(464), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(464), + [sym__inline_directive] = STATE(464), + [sym__nested_directive] = STATE(464), + [sym_fragment] = STATE(464), + [sym_section] = STATE(464), + [sym_inlineSection] = STATE(464), + [sym_once] = STATE(464), + [sym_verbatim] = STATE(464), + [sym_stack] = STATE(464), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(464), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(464), + [sym_loop] = STATE(464), + [sym_loop_operator] = STATE(464), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(464), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(464), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(464), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(464), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4105), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4107), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [186] = { - [sym__definition] = STATE(282), - [sym_comment] = STATE(282), - [sym_keyword] = STATE(282), - [sym_php_statement] = STATE(282), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(282), - [sym__inline_directive] = STATE(282), - [sym__nested_directive] = STATE(282), - [sym_fragment] = STATE(282), - [sym_section] = STATE(282), - [sym_inlineSection] = STATE(282), - [sym_once] = STATE(282), - [sym_verbatim] = STATE(282), - [sym_stack] = STATE(282), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(282), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(282), - [sym_loop] = STATE(282), - [sym_loop_operator] = STATE(282), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(282), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(282), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(282), - [sym_text] = STATE(282), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4160), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(276), + [sym_keyword] = STATE(276), + [sym_php_statement] = STATE(276), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(276), + [sym__inline_directive] = STATE(276), + [sym__nested_directive] = STATE(276), + [sym_fragment] = STATE(276), + [sym_section] = STATE(276), + [sym_inlineSection] = STATE(276), + [sym_once] = STATE(276), + [sym_verbatim] = STATE(276), + [sym_stack] = STATE(276), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(276), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(276), + [sym_loop] = STATE(276), + [sym_loop_operator] = STATE(276), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(276), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(276), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(276), + [sym_text] = STATE(276), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4109), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4131), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [187] = { [sym__definition] = STATE(467), - [sym_comment] = STATE(467), [sym_keyword] = STATE(467), [sym_php_statement] = STATE(467), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(467), [sym__inline_directive] = STATE(467), [sym__nested_directive] = STATE(467), @@ -49110,360 +48422,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(467), [sym_verbatim] = STATE(467), [sym_stack] = STATE(467), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(467), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(467), [sym_loop] = STATE(467), [sym_loop_operator] = STATE(467), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(467), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(467), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(467), [sym_text] = STATE(467), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4182), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4213), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4233), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [188] = { - [sym__definition] = STATE(216), - [sym_comment] = STATE(216), - [sym_keyword] = STATE(216), - [sym_php_statement] = STATE(216), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(216), - [sym__inline_directive] = STATE(216), - [sym__nested_directive] = STATE(216), - [sym_fragment] = STATE(216), - [sym_section] = STATE(216), - [sym_inlineSection] = STATE(216), - [sym_once] = STATE(216), - [sym_verbatim] = STATE(216), - [sym_stack] = STATE(216), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(216), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(216), - [sym_loop] = STATE(216), - [sym_loop_operator] = STATE(216), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(216), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(216), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(216), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(216), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4334), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4317), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [189] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4370), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [190] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -49473,118 +48662,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4390), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4337), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [190] = { + [sym__definition] = STATE(188), + [sym_keyword] = STATE(188), + [sym_php_statement] = STATE(188), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(188), + [sym__inline_directive] = STATE(188), + [sym__nested_directive] = STATE(188), + [sym_fragment] = STATE(188), + [sym_section] = STATE(188), + [sym_inlineSection] = STATE(188), + [sym_once] = STATE(188), + [sym_verbatim] = STATE(188), + [sym_stack] = STATE(188), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(188), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(188), + [sym_loop] = STATE(188), + [sym_loop_operator] = STATE(188), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(188), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(188), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(188), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(188), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4423), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4425), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [191] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4425), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [192] = { [sym__definition] = STATE(189), - [sym_comment] = STATE(189), [sym_keyword] = STATE(189), [sym_php_statement] = STATE(189), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(189), [sym__inline_directive] = STATE(189), [sym__nested_directive] = STATE(189), @@ -49594,360 +49022,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(189), [sym_verbatim] = STATE(189), [sym_stack] = STATE(189), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(189), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(189), [sym_loop] = STATE(189), [sym_loop_operator] = STATE(189), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(189), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(189), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(189), [sym_text] = STATE(189), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(189), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4476), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [192] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4476), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4427), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4429), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [193] = { - [sym__definition] = STATE(190), - [sym_comment] = STATE(190), - [sym_keyword] = STATE(190), - [sym_php_statement] = STATE(190), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(190), - [sym__inline_directive] = STATE(190), - [sym__nested_directive] = STATE(190), - [sym_fragment] = STATE(190), - [sym_section] = STATE(190), - [sym_inlineSection] = STATE(190), - [sym_once] = STATE(190), - [sym_verbatim] = STATE(190), - [sym_stack] = STATE(190), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(190), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(190), - [sym_loop] = STATE(190), - [sym_loop_operator] = STATE(190), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(190), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(190), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(190), - [sym_text] = STATE(190), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4478), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [194] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -49957,602 +49142,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4480), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4431), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [194] = { + [sym__definition] = STATE(191), + [sym_keyword] = STATE(191), + [sym_php_statement] = STATE(191), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(191), + [sym__inline_directive] = STATE(191), + [sym__nested_directive] = STATE(191), + [sym_fragment] = STATE(191), + [sym_section] = STATE(191), + [sym_inlineSection] = STATE(191), + [sym_once] = STATE(191), + [sym_verbatim] = STATE(191), + [sym_stack] = STATE(191), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(191), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(191), + [sym_loop] = STATE(191), + [sym_loop_operator] = STATE(191), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(191), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(191), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(191), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(191), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4433), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4435), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [195] = { - [sym__definition] = STATE(192), - [sym_comment] = STATE(192), - [sym_keyword] = STATE(192), - [sym_php_statement] = STATE(192), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(192), - [sym__inline_directive] = STATE(192), - [sym__nested_directive] = STATE(192), - [sym_fragment] = STATE(192), - [sym_section] = STATE(192), - [sym_inlineSection] = STATE(192), - [sym_once] = STATE(192), - [sym_verbatim] = STATE(192), - [sym_stack] = STATE(192), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(192), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(192), - [sym_loop] = STATE(192), - [sym_loop_operator] = STATE(192), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(192), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(192), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(192), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(192), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4482), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(193), + [sym_keyword] = STATE(193), + [sym_php_statement] = STATE(193), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(193), + [sym__inline_directive] = STATE(193), + [sym__nested_directive] = STATE(193), + [sym_fragment] = STATE(193), + [sym_section] = STATE(193), + [sym_inlineSection] = STATE(193), + [sym_once] = STATE(193), + [sym_verbatim] = STATE(193), + [sym_stack] = STATE(193), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(193), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(193), + [sym_loop] = STATE(193), + [sym_loop_operator] = STATE(193), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(193), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(193), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(193), + [sym_text] = STATE(193), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4437), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4439), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [196] = { - [sym__definition] = STATE(194), - [sym_comment] = STATE(194), - [sym_keyword] = STATE(194), - [sym_php_statement] = STATE(194), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(194), - [sym__inline_directive] = STATE(194), - [sym__nested_directive] = STATE(194), - [sym_fragment] = STATE(194), - [sym_section] = STATE(194), - [sym_inlineSection] = STATE(194), - [sym_once] = STATE(194), - [sym_verbatim] = STATE(194), - [sym_stack] = STATE(194), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(194), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(194), - [sym_loop] = STATE(194), - [sym_loop_operator] = STATE(194), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(194), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(194), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(194), - [sym_text] = STATE(194), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4484), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4443), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [197] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4486), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4447), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [198] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4488), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(196), + [sym_keyword] = STATE(196), + [sym_php_statement] = STATE(196), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(196), + [sym__inline_directive] = STATE(196), + [sym__nested_directive] = STATE(196), + [sym_fragment] = STATE(196), + [sym_section] = STATE(196), + [sym_inlineSection] = STATE(196), + [sym_once] = STATE(196), + [sym_verbatim] = STATE(196), + [sym_stack] = STATE(196), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(196), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(196), + [sym_loop] = STATE(196), + [sym_loop_operator] = STATE(196), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(196), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(196), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(196), + [sym_text] = STATE(196), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4449), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4451), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [199] = { [sym__definition] = STATE(197), - [sym_comment] = STATE(197), [sym_keyword] = STATE(197), [sym_php_statement] = STATE(197), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(197), [sym__inline_directive] = STATE(197), [sym__nested_directive] = STATE(197), @@ -50562,360 +49862,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(197), [sym_verbatim] = STATE(197), [sym_stack] = STATE(197), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(197), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(197), [sym_loop] = STATE(197), [sym_loop_operator] = STATE(197), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(197), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(197), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(197), [sym_text] = STATE(197), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4490), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4453), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4455), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [200] = { - [sym__definition] = STATE(198), - [sym_comment] = STATE(198), - [sym_keyword] = STATE(198), - [sym_php_statement] = STATE(198), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(198), - [sym__inline_directive] = STATE(198), - [sym__nested_directive] = STATE(198), - [sym_fragment] = STATE(198), - [sym_section] = STATE(198), - [sym_inlineSection] = STATE(198), - [sym_once] = STATE(198), - [sym_verbatim] = STATE(198), - [sym_stack] = STATE(198), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(198), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(198), - [sym_loop] = STATE(198), - [sym_loop_operator] = STATE(198), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(198), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(198), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(198), - [sym_text] = STATE(198), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4492), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4457), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [201] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4494), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(654), + [sym_keyword] = STATE(654), + [sym_php_statement] = STATE(654), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(654), + [sym__inline_directive] = STATE(654), + [sym__nested_directive] = STATE(654), + [sym_fragment] = STATE(654), + [sym_section] = STATE(654), + [sym_inlineSection] = STATE(654), + [sym_once] = STATE(654), + [sym_verbatim] = STATE(654), + [sym_stack] = STATE(654), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(654), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(654), + [sym_loop] = STATE(654), + [sym_loop_operator] = STATE(654), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(654), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(654), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(654), + [sym_text] = STATE(654), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4459), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [202] = { + [sym__definition] = STATE(200), + [sym_keyword] = STATE(200), + [sym_php_statement] = STATE(200), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(200), + [sym__inline_directive] = STATE(200), + [sym__nested_directive] = STATE(200), + [sym_fragment] = STATE(200), + [sym_section] = STATE(200), + [sym_inlineSection] = STATE(200), + [sym_once] = STATE(200), + [sym_verbatim] = STATE(200), + [sym_stack] = STATE(200), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(200), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(200), + [sym_loop] = STATE(200), + [sym_loop_operator] = STATE(200), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(200), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(200), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(200), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(200), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4461), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4463), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [203] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4463), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [204] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -50925,118 +50462,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4496), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4465), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [203] = { + [205] = { [sym__definition] = STATE(201), - [sym_comment] = STATE(201), [sym_keyword] = STATE(201), [sym_php_statement] = STATE(201), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(201), [sym__inline_directive] = STATE(201), [sym__nested_directive] = STATE(201), @@ -51046,360 +50582,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(201), [sym_verbatim] = STATE(201), [sym_stack] = STATE(201), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(201), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(201), [sym_loop] = STATE(201), [sym_loop_operator] = STATE(201), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(201), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(201), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(201), [sym_text] = STATE(201), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(201), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4498), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [204] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4498), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [205] = { - [sym__definition] = STATE(202), - [sym_comment] = STATE(202), - [sym_keyword] = STATE(202), - [sym_php_statement] = STATE(202), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(202), - [sym__inline_directive] = STATE(202), - [sym__nested_directive] = STATE(202), - [sym_fragment] = STATE(202), - [sym_section] = STATE(202), - [sym_inlineSection] = STATE(202), - [sym_once] = STATE(202), - [sym_verbatim] = STATE(202), - [sym_stack] = STATE(202), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(202), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(202), - [sym_loop] = STATE(202), - [sym_loop_operator] = STATE(202), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(202), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(202), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(202), - [sym_text] = STATE(202), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4500), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4467), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4469), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [206] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -51409,239 +50702,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4502), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4471), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [207] = { - [sym__definition] = STATE(204), - [sym_comment] = STATE(204), - [sym_keyword] = STATE(204), - [sym_php_statement] = STATE(204), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(204), - [sym__inline_directive] = STATE(204), - [sym__nested_directive] = STATE(204), - [sym_fragment] = STATE(204), - [sym_section] = STATE(204), - [sym_inlineSection] = STATE(204), - [sym_once] = STATE(204), - [sym_verbatim] = STATE(204), - [sym_stack] = STATE(204), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(204), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(204), - [sym_loop] = STATE(204), - [sym_loop_operator] = STATE(204), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(204), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(204), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(204), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(204), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4504), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(203), + [sym_keyword] = STATE(203), + [sym_php_statement] = STATE(203), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(203), + [sym__inline_directive] = STATE(203), + [sym__nested_directive] = STATE(203), + [sym_fragment] = STATE(203), + [sym_section] = STATE(203), + [sym_inlineSection] = STATE(203), + [sym_once] = STATE(203), + [sym_verbatim] = STATE(203), + [sym_stack] = STATE(203), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(203), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(203), + [sym_loop] = STATE(203), + [sym_loop_operator] = STATE(203), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(203), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(203), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(203), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(203), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4473), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4475), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [208] = { + [sym__definition] = STATE(221), + [sym_keyword] = STATE(221), + [sym_php_statement] = STATE(221), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(221), + [sym__inline_directive] = STATE(221), + [sym__nested_directive] = STATE(221), + [sym_fragment] = STATE(221), + [sym_section] = STATE(221), + [sym_inlineSection] = STATE(221), + [sym_once] = STATE(221), + [sym_verbatim] = STATE(221), + [sym_stack] = STATE(221), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(221), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(221), + [sym_loop] = STATE(221), + [sym_loop_operator] = STATE(221), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(221), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(221), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(221), + [sym_text] = STATE(221), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4477), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4479), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [209] = { [sym__definition] = STATE(206), - [sym_comment] = STATE(206), [sym_keyword] = STATE(206), [sym_php_statement] = STATE(206), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(206), [sym__inline_directive] = STATE(206), [sym__nested_directive] = STATE(206), @@ -51651,481 +51062,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(206), [sym_verbatim] = STATE(206), [sym_stack] = STATE(206), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(206), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(206), [sym_loop] = STATE(206), [sym_loop_operator] = STATE(206), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(206), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(206), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(206), [sym_text] = STATE(206), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4506), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [209] = { - [sym__definition] = STATE(654), - [sym_comment] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4508), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4481), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4483), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [210] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4510), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4485), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [211] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4512), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4487), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [212] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4489), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [213] = { [sym__definition] = STATE(225), - [sym_comment] = STATE(225), [sym_keyword] = STATE(225), [sym_php_statement] = STATE(225), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(225), [sym__inline_directive] = STATE(225), [sym__nested_directive] = STATE(225), @@ -52135,118 +51542,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(225), [sym_verbatim] = STATE(225), [sym_stack] = STATE(225), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(225), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(225), [sym_loop] = STATE(225), [sym_loop_operator] = STATE(225), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(225), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(225), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(225), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(225), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4514), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(225), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4491), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4487), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, - [213] = { + [214] = { [sym__definition] = STATE(210), - [sym_comment] = STATE(210), [sym_keyword] = STATE(210), [sym_php_statement] = STATE(210), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(210), [sym__inline_directive] = STATE(210), [sym__nested_directive] = STATE(210), @@ -52256,481 +51662,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(210), [sym_verbatim] = STATE(210), [sym_stack] = STATE(210), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(210), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(210), [sym_loop] = STATE(210), [sym_loop_operator] = STATE(210), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(210), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(210), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(210), [sym_text] = STATE(210), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4516), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [214] = { - [sym__definition] = STATE(211), - [sym_comment] = STATE(211), - [sym_keyword] = STATE(211), - [sym_php_statement] = STATE(211), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(211), - [sym__inline_directive] = STATE(211), - [sym__nested_directive] = STATE(211), - [sym_fragment] = STATE(211), - [sym_section] = STATE(211), - [sym_inlineSection] = STATE(211), - [sym_once] = STATE(211), - [sym_verbatim] = STATE(211), - [sym_stack] = STATE(211), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(211), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(211), - [sym_loop] = STATE(211), - [sym_loop_operator] = STATE(211), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(211), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(211), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(211), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4518), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4493), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4495), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [215] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4520), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(212), + [sym_keyword] = STATE(212), + [sym_php_statement] = STATE(212), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(212), + [sym__inline_directive] = STATE(212), + [sym__nested_directive] = STATE(212), + [sym_fragment] = STATE(212), + [sym_section] = STATE(212), + [sym_inlineSection] = STATE(212), + [sym_once] = STATE(212), + [sym_verbatim] = STATE(212), + [sym_stack] = STATE(212), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(212), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(212), + [sym_loop] = STATE(212), + [sym_loop_operator] = STATE(212), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(212), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(212), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(212), + [sym_text] = STATE(212), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4497), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4499), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [216] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4522), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4501), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [217] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -52740,481 +52022,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4524), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4503), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [218] = { - [sym__definition] = STATE(229), - [sym_comment] = STATE(229), - [sym_keyword] = STATE(229), - [sym_php_statement] = STATE(229), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(229), - [sym__inline_directive] = STATE(229), - [sym__nested_directive] = STATE(229), - [sym_fragment] = STATE(229), - [sym_section] = STATE(229), - [sym_inlineSection] = STATE(229), - [sym_once] = STATE(229), - [sym_verbatim] = STATE(229), - [sym_stack] = STATE(229), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(229), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(229), - [sym_loop] = STATE(229), - [sym_loop_operator] = STATE(229), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(229), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(229), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(229), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(229), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4522), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(216), + [sym_keyword] = STATE(216), + [sym_php_statement] = STATE(216), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(216), + [sym__inline_directive] = STATE(216), + [sym__nested_directive] = STATE(216), + [sym_fragment] = STATE(216), + [sym_section] = STATE(216), + [sym_inlineSection] = STATE(216), + [sym_once] = STATE(216), + [sym_verbatim] = STATE(216), + [sym_stack] = STATE(216), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(216), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(216), + [sym_loop] = STATE(216), + [sym_loop_operator] = STATE(216), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(216), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(216), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(216), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(216), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4505), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4507), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [219] = { - [sym__definition] = STATE(215), - [sym_comment] = STATE(215), - [sym_keyword] = STATE(215), - [sym_php_statement] = STATE(215), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(215), - [sym__inline_directive] = STATE(215), - [sym__nested_directive] = STATE(215), - [sym_fragment] = STATE(215), - [sym_section] = STATE(215), - [sym_inlineSection] = STATE(215), - [sym_once] = STATE(215), - [sym_verbatim] = STATE(215), - [sym_stack] = STATE(215), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(215), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(215), - [sym_loop] = STATE(215), - [sym_loop_operator] = STATE(215), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(215), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(215), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(215), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(215), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4526), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4507), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [220] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4526), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [221] = { [sym__definition] = STATE(217), - [sym_comment] = STATE(217), [sym_keyword] = STATE(217), [sym_php_statement] = STATE(217), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(217), [sym__inline_directive] = STATE(217), [sym__nested_directive] = STATE(217), @@ -53224,118 +52382,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(217), [sym_verbatim] = STATE(217), [sym_stack] = STATE(217), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(217), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(217), [sym_loop] = STATE(217), [sym_loop_operator] = STATE(217), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(217), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(217), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(217), [sym_text] = STATE(217), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4528), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4509), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4511), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [221] = { + [sym__definition] = STATE(654), + [sym_keyword] = STATE(654), + [sym_php_statement] = STATE(654), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(654), + [sym__inline_directive] = STATE(654), + [sym__nested_directive] = STATE(654), + [sym_fragment] = STATE(654), + [sym_section] = STATE(654), + [sym_inlineSection] = STATE(654), + [sym_once] = STATE(654), + [sym_verbatim] = STATE(654), + [sym_stack] = STATE(654), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(654), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(654), + [sym_loop] = STATE(654), + [sym_loop_operator] = STATE(654), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(654), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(654), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(654), + [sym_text] = STATE(654), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4513), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [222] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -53345,239 +52622,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4530), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4515), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [223] = { - [sym__definition] = STATE(220), - [sym_comment] = STATE(220), - [sym_keyword] = STATE(220), - [sym_php_statement] = STATE(220), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(220), - [sym__inline_directive] = STATE(220), - [sym__nested_directive] = STATE(220), - [sym_fragment] = STATE(220), - [sym_section] = STATE(220), - [sym_inlineSection] = STATE(220), - [sym_once] = STATE(220), - [sym_verbatim] = STATE(220), - [sym_stack] = STATE(220), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(220), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(220), - [sym_loop] = STATE(220), - [sym_loop_operator] = STATE(220), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(220), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(220), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(220), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(220), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4532), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(219), + [sym_keyword] = STATE(219), + [sym_php_statement] = STATE(219), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(219), + [sym__inline_directive] = STATE(219), + [sym__nested_directive] = STATE(219), + [sym_fragment] = STATE(219), + [sym_section] = STATE(219), + [sym_inlineSection] = STATE(219), + [sym_once] = STATE(219), + [sym_verbatim] = STATE(219), + [sym_stack] = STATE(219), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(219), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(219), + [sym_loop] = STATE(219), + [sym_loop_operator] = STATE(219), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(219), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(219), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(219), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(219), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4517), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4519), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [224] = { [sym__definition] = STATE(222), - [sym_comment] = STATE(222), [sym_keyword] = STATE(222), [sym_php_statement] = STATE(222), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(222), [sym__inline_directive] = STATE(222), [sym__nested_directive] = STATE(222), @@ -53587,481 +52862,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(222), [sym_verbatim] = STATE(222), [sym_stack] = STATE(222), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(222), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(222), [sym_loop] = STATE(222), [sym_loop_operator] = STATE(222), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(222), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(222), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(222), [sym_text] = STATE(222), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4534), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4521), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4523), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [225] = { - [sym__definition] = STATE(654), - [sym_comment] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4536), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4525), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [226] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4538), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4527), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [227] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4540), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4529), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [228] = { [sym__definition] = STATE(226), - [sym_comment] = STATE(226), [sym_keyword] = STATE(226), [sym_php_statement] = STATE(226), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(226), [sym__inline_directive] = STATE(226), [sym__nested_directive] = STATE(226), @@ -54071,239 +53342,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(226), [sym_verbatim] = STATE(226), [sym_stack] = STATE(226), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(226), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(226), [sym_loop] = STATE(226), [sym_loop_operator] = STATE(226), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(226), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(226), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(226), [sym_text] = STATE(226), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4542), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4531), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4533), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [229] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4544), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [230] = { [sym__definition] = STATE(227), - [sym_comment] = STATE(227), [sym_keyword] = STATE(227), [sym_php_statement] = STATE(227), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(227), [sym__inline_directive] = STATE(227), [sym__nested_directive] = STATE(227), @@ -54313,239 +53462,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(227), [sym_verbatim] = STATE(227), [sym_stack] = STATE(227), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(227), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(227), [sym_loop] = STATE(227), [sym_loop_operator] = STATE(227), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(227), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(227), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(227), [sym_text] = STATE(227), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4546), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4535), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4537), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [230] = { + [sym__definition] = STATE(610), + [sym_keyword] = STATE(610), + [sym_php_statement] = STATE(610), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(610), + [sym__inline_directive] = STATE(610), + [sym__nested_directive] = STATE(610), + [sym_fragment] = STATE(610), + [sym_section] = STATE(610), + [sym_inlineSection] = STATE(610), + [sym_once] = STATE(610), + [sym_verbatim] = STATE(610), + [sym_stack] = STATE(610), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(610), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(610), + [sym_loop] = STATE(610), + [sym_loop_operator] = STATE(610), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(610), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(610), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(610), + [sym_text] = STATE(610), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4539), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4541), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [231] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4548), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4543), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [232] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -54555,118 +53822,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4550), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4545), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [233] = { [sym__definition] = STATE(231), - [sym_comment] = STATE(231), [sym_keyword] = STATE(231), [sym_php_statement] = STATE(231), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(231), [sym__inline_directive] = STATE(231), [sym__nested_directive] = STATE(231), @@ -54676,360 +53942,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(231), [sym_verbatim] = STATE(231), [sym_stack] = STATE(231), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(231), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(231), [sym_loop] = STATE(231), [sym_loop_operator] = STATE(231), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(231), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(231), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(231), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(231), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4552), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4547), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4549), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [234] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4552), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4549), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [235] = { - [sym__definition] = STATE(617), - [sym_comment] = STATE(617), - [sym_keyword] = STATE(617), - [sym_php_statement] = STATE(617), - [sym__escaped] = STATE(2223), - [sym__unescaped] = STATE(2223), - [sym__raw] = STATE(2223), - [sym__inline_raw] = STATE(2223), - [sym__multi_line_raw] = STATE(2223), - [sym_attribute] = STATE(617), - [sym__inline_directive] = STATE(617), - [sym__nested_directive] = STATE(617), - [sym_fragment] = STATE(617), - [sym_section] = STATE(617), - [sym_inlineSection] = STATE(617), - [sym_once] = STATE(617), - [sym_verbatim] = STATE(617), - [sym_stack] = STATE(617), - [sym__push] = STATE(2224), - [sym__pushOnce] = STATE(2224), - [sym__pushIf] = STATE(2224), - [sym__prepend] = STATE(2224), - [sym__prependOnce] = STATE(2224), - [sym_conditional] = STATE(617), - [sym__if] = STATE(2225), - [sym__unless] = STATE(2225), - [sym__isset] = STATE(2225), - [sym__empty] = STATE(2225), - [sym__auth] = STATE(2225), - [sym__guest] = STATE(2225), - [sym__production] = STATE(2225), - [sym__env] = STATE(2225), - [sym__hasSection] = STATE(2225), - [sym__sectionMissing] = STATE(2225), - [sym__error] = STATE(2225), - [sym_authorization] = STATE(2225), - [sym__can] = STATE(2226), - [sym__cannot] = STATE(2226), - [sym__canany] = STATE(2226), - [sym__feature] = STATE(2225), - [sym__custom] = STATE(2225), - [sym_switch] = STATE(617), - [sym_loop] = STATE(617), - [sym_loop_operator] = STATE(617), - [sym__for] = STATE(2227), - [sym__foreach] = STATE(2227), - [sym__forelse] = STATE(2227), - [sym__while] = STATE(2227), - [sym_envoy] = STATE(617), - [sym__setup] = STATE(2223), - [sym__task] = STATE(2228), - [sym__story] = STATE(2228), - [sym__hooks] = STATE(2223), - [sym__before] = STATE(2223), - [sym__after] = STATE(2223), - [sym__envoy_error] = STATE(2223), - [sym__success] = STATE(2223), - [sym__finished] = STATE(2223), - [sym_livewire] = STATE(617), - [sym__persist] = STATE(2229), - [sym__teleport] = STATE(2229), - [sym__volt] = STATE(2229), - [aux_sym__directive_body] = STATE(617), - [sym_text] = STATE(617), - [sym__text] = STATE(989), - [aux_sym_php_only_repeat1] = STATE(989), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4554), - [aux_sym_keyword_token1] = ACTIONS(4556), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4558), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4560), - [anon_sym_ATphp] = ACTIONS(4562), - [aux_sym_attribute_token1] = ACTIONS(4564), - [aux_sym__inline_directive_token1] = ACTIONS(4566), - [anon_sym_ATfragment] = ACTIONS(4568), - [anon_sym_ATsection] = ACTIONS(4570), - [anon_sym_ATonce] = ACTIONS(4572), - [anon_sym_ATverbatim] = ACTIONS(4574), - [anon_sym_ATpush] = ACTIONS(4576), - [anon_sym_ATpushOnce] = ACTIONS(4578), - [anon_sym_ATpushIf] = ACTIONS(4580), - [anon_sym_ATprepend] = ACTIONS(4582), - [anon_sym_ATprependOnce] = ACTIONS(4584), - [anon_sym_ATif] = ACTIONS(4586), - [anon_sym_ATunless] = ACTIONS(4588), - [anon_sym_ATisset] = ACTIONS(4590), - [anon_sym_ATempty] = ACTIONS(4592), - [anon_sym_ATauth] = ACTIONS(4594), - [anon_sym_ATguest] = ACTIONS(4596), - [anon_sym_ATproduction] = ACTIONS(4598), - [anon_sym_ATenv] = ACTIONS(4600), - [anon_sym_AThasSection] = ACTIONS(4602), - [anon_sym_ATsectionMissing] = ACTIONS(4604), - [anon_sym_ATerror] = ACTIONS(4606), - [anon_sym_ATcan] = ACTIONS(4608), - [anon_sym_ATcannot] = ACTIONS(4610), - [anon_sym_ATcanany] = ACTIONS(4612), - [anon_sym_ATfeature] = ACTIONS(4614), - [aux_sym__custom_token1] = ACTIONS(4616), - [aux_sym__custom_token2] = ACTIONS(4618), - [anon_sym_ATswitch] = ACTIONS(4620), - [aux_sym_loop_operator_token1] = ACTIONS(4622), - [anon_sym_ATfor] = ACTIONS(4624), - [anon_sym_ATendfor] = ACTIONS(4626), - [anon_sym_ATforeach] = ACTIONS(4628), - [anon_sym_ATforelse] = ACTIONS(4630), - [anon_sym_ATwhile] = ACTIONS(4632), - [anon_sym_ATsetup] = ACTIONS(4634), - [anon_sym_ATtask] = ACTIONS(4636), - [anon_sym_ATstory] = ACTIONS(4638), - [anon_sym_ATbefore] = ACTIONS(4640), - [anon_sym_ATafter] = ACTIONS(4642), - [anon_sym_ATsuccess] = ACTIONS(4644), - [anon_sym_ATfinished] = ACTIONS(4646), - [anon_sym_ATpersist] = ACTIONS(4648), - [anon_sym_ATteleport] = ACTIONS(4650), - [anon_sym_ATvolt] = ACTIONS(4652), - [aux_sym__text_token1] = ACTIONS(4654), - [aux_sym__text_token2] = ACTIONS(4654), - [aux_sym__text_token3] = ACTIONS(4656), - }, - [236] = { [sym__definition] = STATE(232), - [sym_comment] = STATE(232), [sym_keyword] = STATE(232), [sym_php_statement] = STATE(232), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(232), [sym__inline_directive] = STATE(232), [sym__nested_directive] = STATE(232), @@ -55039,118 +54182,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(232), [sym_verbatim] = STATE(232), [sym_stack] = STATE(232), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(232), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(232), [sym_loop] = STATE(232), [sym_loop_operator] = STATE(232), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(232), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(232), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(232), [sym_text] = STATE(232), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4658), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4551), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4553), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [237] = { + [236] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -55160,118 +54302,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4660), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4555), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [238] = { + [237] = { [sym__definition] = STATE(234), - [sym_comment] = STATE(234), [sym_keyword] = STATE(234), [sym_php_statement] = STATE(234), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(234), [sym__inline_directive] = STATE(234), [sym__nested_directive] = STATE(234), @@ -55281,481 +54422,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(234), [sym_verbatim] = STATE(234), [sym_stack] = STATE(234), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(234), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(234), [sym_loop] = STATE(234), [sym_loop_operator] = STATE(234), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(234), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(234), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(234), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(234), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4662), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4557), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4559), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [238] = { + [sym__definition] = STATE(236), + [sym_keyword] = STATE(236), + [sym_php_statement] = STATE(236), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(236), + [sym__inline_directive] = STATE(236), + [sym__nested_directive] = STATE(236), + [sym_fragment] = STATE(236), + [sym_section] = STATE(236), + [sym_inlineSection] = STATE(236), + [sym_once] = STATE(236), + [sym_verbatim] = STATE(236), + [sym_stack] = STATE(236), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(236), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(236), + [sym_loop] = STATE(236), + [sym_loop_operator] = STATE(236), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(236), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(236), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(236), + [sym_text] = STATE(236), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4561), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4563), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [239] = { - [sym__definition] = STATE(237), - [sym_comment] = STATE(237), - [sym_keyword] = STATE(237), - [sym_php_statement] = STATE(237), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(237), - [sym__inline_directive] = STATE(237), - [sym__nested_directive] = STATE(237), - [sym_fragment] = STATE(237), - [sym_section] = STATE(237), - [sym_inlineSection] = STATE(237), - [sym_once] = STATE(237), - [sym_verbatim] = STATE(237), - [sym_stack] = STATE(237), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(237), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(237), - [sym_loop] = STATE(237), - [sym_loop_operator] = STATE(237), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(237), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(237), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(237), - [sym_text] = STATE(237), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4664), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4565), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [240] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4666), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4567), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [241] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4668), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(239), + [sym_keyword] = STATE(239), + [sym_php_statement] = STATE(239), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(239), + [sym__inline_directive] = STATE(239), + [sym__nested_directive] = STATE(239), + [sym_fragment] = STATE(239), + [sym_section] = STATE(239), + [sym_inlineSection] = STATE(239), + [sym_once] = STATE(239), + [sym_verbatim] = STATE(239), + [sym_stack] = STATE(239), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(239), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(239), + [sym_loop] = STATE(239), + [sym_loop_operator] = STATE(239), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(239), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(239), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(239), + [sym_text] = STATE(239), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4569), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4571), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [242] = { [sym__definition] = STATE(240), - [sym_comment] = STATE(240), [sym_keyword] = STATE(240), [sym_php_statement] = STATE(240), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(240), [sym__inline_directive] = STATE(240), [sym__nested_directive] = STATE(240), @@ -55765,360 +55022,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(240), [sym_verbatim] = STATE(240), [sym_stack] = STATE(240), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(240), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(240), [sym_loop] = STATE(240), [sym_loop_operator] = STATE(240), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(240), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(240), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(240), [sym_text] = STATE(240), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4670), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4573), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4575), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [243] = { - [sym__definition] = STATE(241), - [sym_comment] = STATE(241), - [sym_keyword] = STATE(241), - [sym_php_statement] = STATE(241), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(241), - [sym__inline_directive] = STATE(241), - [sym__nested_directive] = STATE(241), - [sym_fragment] = STATE(241), - [sym_section] = STATE(241), - [sym_inlineSection] = STATE(241), - [sym_once] = STATE(241), - [sym_verbatim] = STATE(241), - [sym_stack] = STATE(241), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(241), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(241), - [sym_loop] = STATE(241), - [sym_loop_operator] = STATE(241), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(241), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(241), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(241), - [sym_text] = STATE(241), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4672), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4577), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [244] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4674), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [245] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -56128,118 +55262,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4676), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4579), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [245] = { + [sym__definition] = STATE(243), + [sym_keyword] = STATE(243), + [sym_php_statement] = STATE(243), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(243), + [sym__inline_directive] = STATE(243), + [sym__nested_directive] = STATE(243), + [sym_fragment] = STATE(243), + [sym_section] = STATE(243), + [sym_inlineSection] = STATE(243), + [sym_once] = STATE(243), + [sym_verbatim] = STATE(243), + [sym_stack] = STATE(243), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(243), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(243), + [sym_loop] = STATE(243), + [sym_loop_operator] = STATE(243), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(243), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(243), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(243), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(243), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4581), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4583), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [246] = { + [sym__definition] = STATE(266), + [sym_keyword] = STATE(266), + [sym_php_statement] = STATE(266), + [sym__escaped] = STATE(3287), + [sym__unescaped] = STATE(3287), + [sym__raw] = STATE(3287), + [sym__inline_raw] = STATE(3287), + [sym__multi_line_raw] = STATE(3287), + [sym_attribute] = STATE(266), + [sym__inline_directive] = STATE(266), + [sym__nested_directive] = STATE(266), + [sym_fragment] = STATE(266), + [sym_section] = STATE(266), + [sym_inlineSection] = STATE(266), + [sym_once] = STATE(266), + [sym_verbatim] = STATE(266), + [sym_stack] = STATE(266), + [sym__push] = STATE(3290), + [sym__pushOnce] = STATE(3290), + [sym__pushIf] = STATE(3290), + [sym__prepend] = STATE(3290), + [sym__prependOnce] = STATE(3290), + [sym_conditional] = STATE(266), + [sym__if] = STATE(3292), + [sym__unless] = STATE(3292), + [sym__isset] = STATE(3292), + [sym__empty] = STATE(3292), + [sym__auth] = STATE(3292), + [sym__guest] = STATE(3292), + [sym__production] = STATE(3292), + [sym__env] = STATE(3292), + [sym__hasSection] = STATE(3292), + [sym__sectionMissing] = STATE(3292), + [sym__error] = STATE(3292), + [sym_authorization] = STATE(3292), + [sym__can] = STATE(3293), + [sym__cannot] = STATE(3293), + [sym__canany] = STATE(3293), + [sym__feature] = STATE(3292), + [sym__custom] = STATE(3292), + [sym_switch] = STATE(266), + [sym_loop] = STATE(266), + [sym_loop_operator] = STATE(266), + [sym__for] = STATE(3295), + [sym__foreach] = STATE(3295), + [sym__forelse] = STATE(3295), + [sym__while] = STATE(3295), + [sym_envoy] = STATE(266), + [sym__setup] = STATE(3287), + [sym__task] = STATE(3297), + [sym__story] = STATE(3297), + [sym__hooks] = STATE(3287), + [sym__before] = STATE(3287), + [sym__after] = STATE(3287), + [sym__envoy_error] = STATE(3287), + [sym__success] = STATE(3287), + [sym__finished] = STATE(3287), + [sym_livewire] = STATE(266), + [sym__persist] = STATE(3303), + [sym__teleport] = STATE(3303), + [sym__volt] = STATE(3303), + [aux_sym__directive_body] = STATE(266), + [sym_text] = STATE(266), + [sym__text] = STATE(895), + [aux_sym_php_only_repeat1] = STATE(895), + [sym_comment] = ACTIONS(4585), + [aux_sym_keyword_token1] = ACTIONS(4587), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4589), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4591), + [anon_sym_ATphp] = ACTIONS(4593), + [aux_sym_attribute_token1] = ACTIONS(4595), + [aux_sym__inline_directive_token1] = ACTIONS(4597), + [anon_sym_ATfragment] = ACTIONS(4599), + [anon_sym_ATsection] = ACTIONS(4601), + [anon_sym_ATonce] = ACTIONS(4603), + [anon_sym_ATverbatim] = ACTIONS(4605), + [anon_sym_ATpush] = ACTIONS(4607), + [anon_sym_ATendpush] = ACTIONS(4609), + [anon_sym_ATpushOnce] = ACTIONS(4611), + [anon_sym_ATpushIf] = ACTIONS(4613), + [anon_sym_ATprepend] = ACTIONS(4615), + [anon_sym_ATprependOnce] = ACTIONS(4617), + [anon_sym_ATif] = ACTIONS(4619), + [anon_sym_ATunless] = ACTIONS(4621), + [anon_sym_ATisset] = ACTIONS(4623), + [anon_sym_ATempty] = ACTIONS(4625), + [anon_sym_ATauth] = ACTIONS(4627), + [anon_sym_ATguest] = ACTIONS(4629), + [anon_sym_ATproduction] = ACTIONS(4631), + [anon_sym_ATenv] = ACTIONS(4633), + [anon_sym_AThasSection] = ACTIONS(4635), + [anon_sym_ATsectionMissing] = ACTIONS(4637), + [anon_sym_ATerror] = ACTIONS(4639), + [anon_sym_ATcan] = ACTIONS(4641), + [anon_sym_ATcannot] = ACTIONS(4643), + [anon_sym_ATcanany] = ACTIONS(4645), + [anon_sym_ATfeature] = ACTIONS(4647), + [aux_sym__custom_token1] = ACTIONS(4649), + [aux_sym__custom_token2] = ACTIONS(4651), + [anon_sym_ATswitch] = ACTIONS(4653), + [aux_sym_loop_operator_token1] = ACTIONS(4655), + [anon_sym_ATfor] = ACTIONS(4657), + [anon_sym_ATforeach] = ACTIONS(4659), + [anon_sym_ATforelse] = ACTIONS(4661), + [anon_sym_ATwhile] = ACTIONS(4663), + [anon_sym_ATsetup] = ACTIONS(4665), + [anon_sym_ATtask] = ACTIONS(4667), + [anon_sym_ATstory] = ACTIONS(4669), + [anon_sym_ATbefore] = ACTIONS(4671), + [anon_sym_ATafter] = ACTIONS(4673), + [anon_sym_ATsuccess] = ACTIONS(4675), + [anon_sym_ATfinished] = ACTIONS(4677), + [anon_sym_ATpersist] = ACTIONS(4679), + [anon_sym_ATteleport] = ACTIONS(4681), + [anon_sym_ATvolt] = ACTIONS(4683), + [aux_sym__text_token1] = ACTIONS(4685), + [aux_sym__text_token2] = ACTIONS(4685), + [aux_sym__text_token3] = ACTIONS(4687), + }, + [247] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4583), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [248] = { [sym__definition] = STATE(244), - [sym_comment] = STATE(244), [sym_keyword] = STATE(244), [sym_php_statement] = STATE(244), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(244), [sym__inline_directive] = STATE(244), [sym__nested_directive] = STATE(244), @@ -56249,360 +55742,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(244), [sym_verbatim] = STATE(244), [sym_stack] = STATE(244), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(244), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(244), [sym_loop] = STATE(244), [sym_loop_operator] = STATE(244), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(244), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(244), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(244), [sym_text] = STATE(244), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(244), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4678), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [247] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4678), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [248] = { - [sym__definition] = STATE(245), - [sym_comment] = STATE(245), - [sym_keyword] = STATE(245), - [sym_php_statement] = STATE(245), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(245), - [sym__inline_directive] = STATE(245), - [sym__nested_directive] = STATE(245), - [sym_fragment] = STATE(245), - [sym_section] = STATE(245), - [sym_inlineSection] = STATE(245), - [sym_once] = STATE(245), - [sym_verbatim] = STATE(245), - [sym_stack] = STATE(245), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(245), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(245), - [sym_loop] = STATE(245), - [sym_loop_operator] = STATE(245), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(245), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(245), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(245), - [sym_text] = STATE(245), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4680), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4689), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4691), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [249] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -56612,118 +55862,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4682), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4693), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [250] = { + [sym__definition] = STATE(328), + [sym_keyword] = STATE(328), + [sym_php_statement] = STATE(328), + [sym__escaped] = STATE(2257), + [sym__unescaped] = STATE(2257), + [sym__raw] = STATE(2257), + [sym__inline_raw] = STATE(2257), + [sym__multi_line_raw] = STATE(2257), + [sym_attribute] = STATE(328), + [sym__inline_directive] = STATE(328), + [sym__nested_directive] = STATE(328), + [sym_fragment] = STATE(328), + [sym_section] = STATE(328), + [sym_inlineSection] = STATE(328), + [sym_once] = STATE(328), + [sym_verbatim] = STATE(328), + [sym_stack] = STATE(328), + [sym__push] = STATE(2258), + [sym__pushOnce] = STATE(2258), + [sym__pushIf] = STATE(2258), + [sym__prepend] = STATE(2258), + [sym__prependOnce] = STATE(2258), + [sym_conditional] = STATE(328), + [sym__if] = STATE(2259), + [sym__unless] = STATE(2259), + [sym__isset] = STATE(2259), + [sym__empty] = STATE(2259), + [sym__auth] = STATE(2259), + [sym__guest] = STATE(2259), + [sym__production] = STATE(2259), + [sym__env] = STATE(2259), + [sym__hasSection] = STATE(2259), + [sym__sectionMissing] = STATE(2259), + [sym__error] = STATE(2259), + [sym_authorization] = STATE(2259), + [sym__can] = STATE(2260), + [sym__cannot] = STATE(2260), + [sym__canany] = STATE(2260), + [sym__feature] = STATE(2259), + [sym__custom] = STATE(2259), + [sym_switch] = STATE(328), + [sym_loop] = STATE(328), + [sym_loop_operator] = STATE(328), + [sym__for] = STATE(2261), + [sym__foreach] = STATE(2261), + [sym__forelse] = STATE(2261), + [sym__while] = STATE(2261), + [sym_envoy] = STATE(328), + [sym__setup] = STATE(2257), + [sym__task] = STATE(2262), + [sym__story] = STATE(2262), + [sym__hooks] = STATE(2257), + [sym__before] = STATE(2257), + [sym__after] = STATE(2257), + [sym__envoy_error] = STATE(2257), + [sym__success] = STATE(2257), + [sym__finished] = STATE(2257), + [sym_livewire] = STATE(328), + [sym__persist] = STATE(2263), + [sym__teleport] = STATE(2263), + [sym__volt] = STATE(2263), + [aux_sym__directive_body] = STATE(328), + [sym_text] = STATE(328), + [sym__text] = STATE(995), + [aux_sym_php_only_repeat1] = STATE(995), + [sym_comment] = ACTIONS(4695), + [aux_sym_keyword_token1] = ACTIONS(4697), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4699), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4701), + [anon_sym_ATphp] = ACTIONS(4703), + [aux_sym_attribute_token1] = ACTIONS(4705), + [aux_sym__inline_directive_token1] = ACTIONS(4707), + [anon_sym_ATfragment] = ACTIONS(4709), + [anon_sym_ATsection] = ACTIONS(4711), + [anon_sym_ATonce] = ACTIONS(4713), + [anon_sym_ATverbatim] = ACTIONS(4715), + [anon_sym_ATpush] = ACTIONS(4717), + [anon_sym_ATpushOnce] = ACTIONS(4719), + [anon_sym_ATpushIf] = ACTIONS(4721), + [anon_sym_ATprepend] = ACTIONS(4723), + [anon_sym_ATprependOnce] = ACTIONS(4725), + [anon_sym_ATif] = ACTIONS(4727), + [anon_sym_ATunless] = ACTIONS(4729), + [anon_sym_ATisset] = ACTIONS(4731), + [anon_sym_ATempty] = ACTIONS(4733), + [anon_sym_ATauth] = ACTIONS(4735), + [anon_sym_ATguest] = ACTIONS(4737), + [anon_sym_ATproduction] = ACTIONS(4739), + [anon_sym_ATenv] = ACTIONS(4741), + [anon_sym_AThasSection] = ACTIONS(4743), + [anon_sym_ATsectionMissing] = ACTIONS(4745), + [anon_sym_ATerror] = ACTIONS(4747), + [anon_sym_ATcan] = ACTIONS(4749), + [anon_sym_ATcannot] = ACTIONS(4751), + [anon_sym_ATcanany] = ACTIONS(4753), + [anon_sym_ATfeature] = ACTIONS(4755), + [aux_sym__custom_token1] = ACTIONS(4757), + [aux_sym__custom_token2] = ACTIONS(4759), + [anon_sym_ATswitch] = ACTIONS(4761), + [aux_sym_loop_operator_token1] = ACTIONS(4763), + [anon_sym_ATfor] = ACTIONS(4765), + [anon_sym_ATforeach] = ACTIONS(4767), + [anon_sym_ATendforeach] = ACTIONS(4609), + [anon_sym_ATforelse] = ACTIONS(4769), + [anon_sym_ATwhile] = ACTIONS(4771), + [anon_sym_ATsetup] = ACTIONS(4773), + [anon_sym_ATtask] = ACTIONS(4775), + [anon_sym_ATstory] = ACTIONS(4777), + [anon_sym_ATbefore] = ACTIONS(4779), + [anon_sym_ATafter] = ACTIONS(4781), + [anon_sym_ATsuccess] = ACTIONS(4783), + [anon_sym_ATfinished] = ACTIONS(4785), + [anon_sym_ATpersist] = ACTIONS(4787), + [anon_sym_ATteleport] = ACTIONS(4789), + [anon_sym_ATvolt] = ACTIONS(4791), + [aux_sym__text_token1] = ACTIONS(4793), + [aux_sym__text_token2] = ACTIONS(4793), + [aux_sym__text_token3] = ACTIONS(4795), + }, + [251] = { [sym__definition] = STATE(247), - [sym_comment] = STATE(247), [sym_keyword] = STATE(247), [sym_php_statement] = STATE(247), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(247), [sym__inline_directive] = STATE(247), [sym__nested_directive] = STATE(247), @@ -56733,118 +56102,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(247), [sym_verbatim] = STATE(247), [sym_stack] = STATE(247), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(247), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(247), [sym_loop] = STATE(247), [sym_loop_operator] = STATE(247), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(247), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(247), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(247), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(247), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4684), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4797), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4799), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, - [251] = { + [252] = { [sym__definition] = STATE(249), - [sym_comment] = STATE(249), [sym_keyword] = STATE(249), [sym_php_statement] = STATE(249), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(249), [sym__inline_directive] = STATE(249), [sym__nested_directive] = STATE(249), @@ -56854,602 +56222,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(249), [sym_verbatim] = STATE(249), [sym_stack] = STATE(249), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(249), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(249), [sym_loop] = STATE(249), [sym_loop_operator] = STATE(249), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(249), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(249), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(249), [sym_text] = STATE(249), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4686), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [252] = { - [sym__definition] = STATE(272), - [sym_comment] = STATE(272), - [sym_keyword] = STATE(272), - [sym_php_statement] = STATE(272), - [sym__escaped] = STATE(3320), - [sym__unescaped] = STATE(3320), - [sym__raw] = STATE(3320), - [sym__inline_raw] = STATE(3320), - [sym__multi_line_raw] = STATE(3320), - [sym_attribute] = STATE(272), - [sym__inline_directive] = STATE(272), - [sym__nested_directive] = STATE(272), - [sym_fragment] = STATE(272), - [sym_section] = STATE(272), - [sym_inlineSection] = STATE(272), - [sym_once] = STATE(272), - [sym_verbatim] = STATE(272), - [sym_stack] = STATE(272), - [sym__push] = STATE(3334), - [sym__pushOnce] = STATE(3334), - [sym__pushIf] = STATE(3334), - [sym__prepend] = STATE(3334), - [sym__prependOnce] = STATE(3334), - [sym_conditional] = STATE(272), - [sym__if] = STATE(3337), - [sym__unless] = STATE(3337), - [sym__isset] = STATE(3337), - [sym__empty] = STATE(3337), - [sym__auth] = STATE(3337), - [sym__guest] = STATE(3337), - [sym__production] = STATE(3337), - [sym__env] = STATE(3337), - [sym__hasSection] = STATE(3337), - [sym__sectionMissing] = STATE(3337), - [sym__error] = STATE(3337), - [sym_authorization] = STATE(3337), - [sym__can] = STATE(3342), - [sym__cannot] = STATE(3342), - [sym__canany] = STATE(3342), - [sym__feature] = STATE(3337), - [sym__custom] = STATE(3337), - [sym_switch] = STATE(272), - [sym_loop] = STATE(272), - [sym_loop_operator] = STATE(272), - [sym__for] = STATE(3345), - [sym__foreach] = STATE(3345), - [sym__forelse] = STATE(3345), - [sym__while] = STATE(3345), - [sym_envoy] = STATE(272), - [sym__setup] = STATE(3320), - [sym__task] = STATE(3346), - [sym__story] = STATE(3346), - [sym__hooks] = STATE(3320), - [sym__before] = STATE(3320), - [sym__after] = STATE(3320), - [sym__envoy_error] = STATE(3320), - [sym__success] = STATE(3320), - [sym__finished] = STATE(3320), - [sym_livewire] = STATE(272), - [sym__persist] = STATE(3498), - [sym__teleport] = STATE(3498), - [sym__volt] = STATE(3498), - [aux_sym__directive_body] = STATE(272), - [sym_text] = STATE(272), - [sym__text] = STATE(1007), - [aux_sym_php_only_repeat1] = STATE(1007), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4688), - [aux_sym_keyword_token1] = ACTIONS(4690), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4692), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4694), - [anon_sym_ATphp] = ACTIONS(4696), - [aux_sym_attribute_token1] = ACTIONS(4698), - [aux_sym__inline_directive_token1] = ACTIONS(4700), - [anon_sym_ATfragment] = ACTIONS(4702), - [anon_sym_ATsection] = ACTIONS(4704), - [anon_sym_ATonce] = ACTIONS(4706), - [anon_sym_ATverbatim] = ACTIONS(4708), - [anon_sym_ATpush] = ACTIONS(4710), - [anon_sym_ATendpush] = ACTIONS(4712), - [anon_sym_ATpushOnce] = ACTIONS(4714), - [anon_sym_ATpushIf] = ACTIONS(4716), - [anon_sym_ATprepend] = ACTIONS(4718), - [anon_sym_ATprependOnce] = ACTIONS(4720), - [anon_sym_ATif] = ACTIONS(4722), - [anon_sym_ATunless] = ACTIONS(4724), - [anon_sym_ATisset] = ACTIONS(4726), - [anon_sym_ATempty] = ACTIONS(4728), - [anon_sym_ATauth] = ACTIONS(4730), - [anon_sym_ATguest] = ACTIONS(4732), - [anon_sym_ATproduction] = ACTIONS(4734), - [anon_sym_ATenv] = ACTIONS(4736), - [anon_sym_AThasSection] = ACTIONS(4738), - [anon_sym_ATsectionMissing] = ACTIONS(4740), - [anon_sym_ATerror] = ACTIONS(4742), - [anon_sym_ATcan] = ACTIONS(4744), - [anon_sym_ATcannot] = ACTIONS(4746), - [anon_sym_ATcanany] = ACTIONS(4748), - [anon_sym_ATfeature] = ACTIONS(4750), - [aux_sym__custom_token1] = ACTIONS(4752), - [aux_sym__custom_token2] = ACTIONS(4754), - [anon_sym_ATswitch] = ACTIONS(4756), - [aux_sym_loop_operator_token1] = ACTIONS(4758), - [anon_sym_ATfor] = ACTIONS(4760), - [anon_sym_ATforeach] = ACTIONS(4762), - [anon_sym_ATforelse] = ACTIONS(4764), - [anon_sym_ATwhile] = ACTIONS(4766), - [anon_sym_ATsetup] = ACTIONS(4768), - [anon_sym_ATtask] = ACTIONS(4770), - [anon_sym_ATstory] = ACTIONS(4772), - [anon_sym_ATbefore] = ACTIONS(4774), - [anon_sym_ATafter] = ACTIONS(4776), - [anon_sym_ATsuccess] = ACTIONS(4778), - [anon_sym_ATfinished] = ACTIONS(4780), - [anon_sym_ATpersist] = ACTIONS(4782), - [anon_sym_ATteleport] = ACTIONS(4784), - [anon_sym_ATvolt] = ACTIONS(4786), - [aux_sym__text_token1] = ACTIONS(4788), - [aux_sym__text_token2] = ACTIONS(4788), - [aux_sym__text_token3] = ACTIONS(4790), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4801), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4803), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [253] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4792), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [254] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4794), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [255] = { - [sym__definition] = STATE(255), - [sym_comment] = STATE(255), - [sym_keyword] = STATE(255), - [sym_php_statement] = STATE(255), - [sym__escaped] = STATE(2133), - [sym__unescaped] = STATE(2133), - [sym__raw] = STATE(2133), - [sym__inline_raw] = STATE(2133), - [sym__multi_line_raw] = STATE(2133), - [sym_attribute] = STATE(255), - [sym__inline_directive] = STATE(255), - [sym__nested_directive] = STATE(255), - [sym_fragment] = STATE(255), - [sym_section] = STATE(255), - [sym_inlineSection] = STATE(255), - [sym_once] = STATE(255), - [sym_verbatim] = STATE(255), - [sym_stack] = STATE(255), - [sym__push] = STATE(2132), - [sym__pushOnce] = STATE(2132), - [sym__pushIf] = STATE(2132), - [sym__prepend] = STATE(2132), - [sym__prependOnce] = STATE(2132), - [sym_conditional] = STATE(255), - [sym__if] = STATE(2131), - [sym__unless] = STATE(2131), - [sym__isset] = STATE(2131), - [sym__empty] = STATE(2131), - [sym__auth] = STATE(2131), - [sym__guest] = STATE(2131), - [sym__production] = STATE(2131), - [sym__env] = STATE(2131), - [sym__hasSection] = STATE(2131), - [sym__sectionMissing] = STATE(2131), - [sym__error] = STATE(2131), - [sym_authorization] = STATE(2131), - [sym__can] = STATE(2130), - [sym__cannot] = STATE(2130), - [sym__canany] = STATE(2130), - [sym__feature] = STATE(2131), - [sym__custom] = STATE(2131), - [sym_switch] = STATE(255), - [sym_loop] = STATE(255), - [sym_loop_operator] = STATE(255), - [sym__for] = STATE(2129), - [sym__foreach] = STATE(2129), - [sym__forelse] = STATE(2129), - [sym__while] = STATE(2129), - [sym_envoy] = STATE(255), - [sym__setup] = STATE(2133), - [sym__task] = STATE(2128), - [sym__story] = STATE(2128), - [sym__hooks] = STATE(2133), - [sym__before] = STATE(2133), - [sym__after] = STATE(2133), - [sym__envoy_error] = STATE(2133), - [sym__success] = STATE(2133), - [sym__finished] = STATE(2133), - [sym_livewire] = STATE(255), - [sym__persist] = STATE(2127), - [sym__teleport] = STATE(2127), - [sym__volt] = STATE(2127), - [aux_sym__directive_body] = STATE(255), - [sym_text] = STATE(255), - [sym__text] = STATE(1282), - [aux_sym_php_only_repeat1] = STATE(1282), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4796), - [aux_sym_keyword_token1] = ACTIONS(4799), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4802), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4805), - [anon_sym_ATphp] = ACTIONS(4808), - [aux_sym_attribute_token1] = ACTIONS(4811), - [aux_sym__inline_directive_token1] = ACTIONS(4814), - [anon_sym_ATfragment] = ACTIONS(4817), - [anon_sym_ATsection] = ACTIONS(4820), - [anon_sym_ATonce] = ACTIONS(4823), - [anon_sym_ATverbatim] = ACTIONS(4826), - [anon_sym_ATpush] = ACTIONS(4829), - [anon_sym_ATpushOnce] = ACTIONS(4832), - [anon_sym_ATpushIf] = ACTIONS(4835), - [anon_sym_ATprepend] = ACTIONS(4838), - [anon_sym_ATendprepend] = ACTIONS(3925), - [anon_sym_ATprependOnce] = ACTIONS(4841), - [anon_sym_ATif] = ACTIONS(4844), - [anon_sym_ATunless] = ACTIONS(4847), - [anon_sym_ATisset] = ACTIONS(4850), - [anon_sym_ATempty] = ACTIONS(4853), - [anon_sym_ATauth] = ACTIONS(4856), - [anon_sym_ATguest] = ACTIONS(4859), - [anon_sym_ATproduction] = ACTIONS(4862), - [anon_sym_ATenv] = ACTIONS(4865), - [anon_sym_AThasSection] = ACTIONS(4868), - [anon_sym_ATsectionMissing] = ACTIONS(4871), - [anon_sym_ATerror] = ACTIONS(4874), - [anon_sym_ATcan] = ACTIONS(4877), - [anon_sym_ATcannot] = ACTIONS(4880), - [anon_sym_ATcanany] = ACTIONS(4883), - [anon_sym_ATfeature] = ACTIONS(4886), - [aux_sym__custom_token1] = ACTIONS(4889), - [aux_sym__custom_token2] = ACTIONS(4892), - [anon_sym_ATswitch] = ACTIONS(4895), - [aux_sym_loop_operator_token1] = ACTIONS(4898), - [anon_sym_ATfor] = ACTIONS(4901), - [anon_sym_ATforeach] = ACTIONS(4904), - [anon_sym_ATforelse] = ACTIONS(4907), - [anon_sym_ATwhile] = ACTIONS(4910), - [anon_sym_ATsetup] = ACTIONS(4913), - [anon_sym_ATtask] = ACTIONS(4916), - [anon_sym_ATstory] = ACTIONS(4919), - [anon_sym_ATbefore] = ACTIONS(4922), - [anon_sym_ATafter] = ACTIONS(4925), - [anon_sym_ATsuccess] = ACTIONS(4928), - [anon_sym_ATfinished] = ACTIONS(4931), - [anon_sym_ATpersist] = ACTIONS(4934), - [anon_sym_ATteleport] = ACTIONS(4937), - [anon_sym_ATvolt] = ACTIONS(4940), - [aux_sym__text_token1] = ACTIONS(4943), - [aux_sym__text_token2] = ACTIONS(4943), - [aux_sym__text_token3] = ACTIONS(4946), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4805), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, - [256] = { + [254] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4807), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [255] = { [sym__definition] = STATE(253), - [sym_comment] = STATE(253), [sym_keyword] = STATE(253), [sym_php_statement] = STATE(253), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(253), [sym__inline_directive] = STATE(253), [sym__nested_directive] = STATE(253), @@ -57459,118 +56582,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(253), [sym_verbatim] = STATE(253), [sym_stack] = STATE(253), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(253), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(253), [sym_loop] = STATE(253), [sym_loop_operator] = STATE(253), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(253), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(253), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(253), [sym_text] = STATE(253), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(4949), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4809), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(4811), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, - [257] = { + [256] = { [sym__definition] = STATE(254), - [sym_comment] = STATE(254), [sym_keyword] = STATE(254), [sym_php_statement] = STATE(254), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(254), [sym__inline_directive] = STATE(254), [sym__nested_directive] = STATE(254), @@ -57580,239 +56702,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(254), [sym_verbatim] = STATE(254), [sym_stack] = STATE(254), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(254), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(254), [sym_loop] = STATE(254), [sym_loop_operator] = STATE(254), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(254), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(254), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(254), [sym_text] = STATE(254), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(4951), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4813), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(4815), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [257] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4817), + [aux_sym_keyword_token1] = ACTIONS(4820), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4823), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4826), + [anon_sym_ATphp] = ACTIONS(4829), + [aux_sym_attribute_token1] = ACTIONS(4832), + [aux_sym__inline_directive_token1] = ACTIONS(4835), + [anon_sym_ATfragment] = ACTIONS(4838), + [anon_sym_ATsection] = ACTIONS(4841), + [anon_sym_ATonce] = ACTIONS(4844), + [anon_sym_ATverbatim] = ACTIONS(4847), + [anon_sym_ATpush] = ACTIONS(4850), + [anon_sym_ATpushOnce] = ACTIONS(4853), + [anon_sym_ATpushIf] = ACTIONS(4856), + [anon_sym_ATprepend] = ACTIONS(4859), + [anon_sym_ATprependOnce] = ACTIONS(4862), + [anon_sym_ATif] = ACTIONS(4865), + [anon_sym_ATunless] = ACTIONS(4868), + [anon_sym_ATisset] = ACTIONS(4871), + [anon_sym_ATempty] = ACTIONS(4874), + [anon_sym_ATauth] = ACTIONS(4877), + [anon_sym_ATguest] = ACTIONS(4880), + [anon_sym_ATproduction] = ACTIONS(4883), + [anon_sym_ATenv] = ACTIONS(4886), + [anon_sym_AThasSection] = ACTIONS(4889), + [anon_sym_ATsectionMissing] = ACTIONS(4892), + [anon_sym_ATerror] = ACTIONS(4895), + [anon_sym_ATcan] = ACTIONS(4898), + [anon_sym_ATcannot] = ACTIONS(4901), + [anon_sym_ATcanany] = ACTIONS(4904), + [anon_sym_ATfeature] = ACTIONS(4907), + [aux_sym__custom_token1] = ACTIONS(4910), + [aux_sym__custom_token2] = ACTIONS(4913), + [anon_sym_ATswitch] = ACTIONS(4916), + [anon_sym_ATendswitch] = ACTIONS(4919), + [aux_sym_loop_operator_token1] = ACTIONS(4921), + [anon_sym_ATfor] = ACTIONS(4924), + [anon_sym_ATforeach] = ACTIONS(4927), + [anon_sym_ATforelse] = ACTIONS(4930), + [anon_sym_ATwhile] = ACTIONS(4933), + [anon_sym_ATsetup] = ACTIONS(4936), + [anon_sym_ATtask] = ACTIONS(4939), + [anon_sym_ATstory] = ACTIONS(4942), + [anon_sym_ATbefore] = ACTIONS(4945), + [anon_sym_ATafter] = ACTIONS(4948), + [anon_sym_ATsuccess] = ACTIONS(4951), + [anon_sym_ATfinished] = ACTIONS(4954), + [anon_sym_ATpersist] = ACTIONS(4957), + [anon_sym_ATteleport] = ACTIONS(4960), + [anon_sym_ATvolt] = ACTIONS(4963), + [aux_sym__text_token1] = ACTIONS(4966), + [aux_sym__text_token2] = ACTIONS(4966), + [aux_sym__text_token3] = ACTIONS(4969), }, [258] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4953), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4972), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [259] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -57822,118 +57062,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4955), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4974), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [260] = { [sym__definition] = STATE(258), - [sym_comment] = STATE(258), [sym_keyword] = STATE(258), [sym_php_statement] = STATE(258), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(258), [sym__inline_directive] = STATE(258), [sym__nested_directive] = STATE(258), @@ -57943,239 +57182,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(258), [sym_verbatim] = STATE(258), [sym_stack] = STATE(258), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(258), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(258), [sym_loop] = STATE(258), [sym_loop_operator] = STATE(258), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(258), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(258), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(258), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(258), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4957), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4976), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4978), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [261] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(4957), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4978), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [262] = { [sym__definition] = STATE(259), - [sym_comment] = STATE(259), [sym_keyword] = STATE(259), [sym_php_statement] = STATE(259), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(259), [sym__inline_directive] = STATE(259), [sym__nested_directive] = STATE(259), @@ -58185,239 +57422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(259), [sym_verbatim] = STATE(259), [sym_stack] = STATE(259), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(259), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(259), [sym_loop] = STATE(259), [sym_loop_operator] = STATE(259), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(259), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(259), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(259), [sym_text] = STATE(259), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(4959), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4980), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4982), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [263] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4961), - [aux_sym_keyword_token1] = ACTIONS(4964), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4967), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4970), - [anon_sym_ATphp] = ACTIONS(4973), - [aux_sym_attribute_token1] = ACTIONS(4976), - [aux_sym__inline_directive_token1] = ACTIONS(4979), - [anon_sym_ATfragment] = ACTIONS(4982), - [anon_sym_ATsection] = ACTIONS(4985), - [anon_sym_ATonce] = ACTIONS(4988), - [anon_sym_ATverbatim] = ACTIONS(4991), - [anon_sym_ATpush] = ACTIONS(4994), - [anon_sym_ATpushOnce] = ACTIONS(4997), - [anon_sym_ATpushIf] = ACTIONS(5000), - [anon_sym_ATprepend] = ACTIONS(5003), - [anon_sym_ATprependOnce] = ACTIONS(5006), - [anon_sym_ATif] = ACTIONS(5009), - [anon_sym_ATunless] = ACTIONS(5012), - [anon_sym_ATisset] = ACTIONS(5015), - [anon_sym_ATempty] = ACTIONS(5018), - [anon_sym_ATauth] = ACTIONS(5021), - [anon_sym_ATguest] = ACTIONS(5024), - [anon_sym_ATproduction] = ACTIONS(5027), - [anon_sym_ATenv] = ACTIONS(5030), - [anon_sym_AThasSection] = ACTIONS(5033), - [anon_sym_ATsectionMissing] = ACTIONS(5036), - [anon_sym_ATerror] = ACTIONS(5039), - [anon_sym_ATcan] = ACTIONS(5042), - [anon_sym_ATcannot] = ACTIONS(5045), - [anon_sym_ATcanany] = ACTIONS(5048), - [anon_sym_ATfeature] = ACTIONS(5051), - [aux_sym__custom_token1] = ACTIONS(5054), - [aux_sym__custom_token2] = ACTIONS(5057), - [anon_sym_ATswitch] = ACTIONS(5060), - [anon_sym_ATendswitch] = ACTIONS(5063), - [aux_sym_loop_operator_token1] = ACTIONS(5065), - [anon_sym_ATfor] = ACTIONS(5068), - [anon_sym_ATforeach] = ACTIONS(5071), - [anon_sym_ATforelse] = ACTIONS(5074), - [anon_sym_ATwhile] = ACTIONS(5077), - [anon_sym_ATsetup] = ACTIONS(5080), - [anon_sym_ATtask] = ACTIONS(5083), - [anon_sym_ATstory] = ACTIONS(5086), - [anon_sym_ATbefore] = ACTIONS(5089), - [anon_sym_ATafter] = ACTIONS(5092), - [anon_sym_ATsuccess] = ACTIONS(5095), - [anon_sym_ATfinished] = ACTIONS(5098), - [anon_sym_ATpersist] = ACTIONS(5101), - [anon_sym_ATteleport] = ACTIONS(5104), - [anon_sym_ATvolt] = ACTIONS(5107), - [aux_sym__text_token1] = ACTIONS(5110), - [aux_sym__text_token2] = ACTIONS(5110), - [aux_sym__text_token3] = ACTIONS(5113), - }, - [264] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -58427,118 +57542,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5116), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4984), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [265] = { + [264] = { [sym__definition] = STATE(261), - [sym_comment] = STATE(261), [sym_keyword] = STATE(261), [sym_php_statement] = STATE(261), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(261), [sym__inline_directive] = STATE(261), [sym__nested_directive] = STATE(261), @@ -58548,602 +57662,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(261), [sym_verbatim] = STATE(261), [sym_stack] = STATE(261), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(261), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(261), [sym_loop] = STATE(261), [sym_loop_operator] = STATE(261), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(261), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(261), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(261), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(261), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5118), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4986), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(4988), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [265] = { + [sym__definition] = STATE(263), + [sym_keyword] = STATE(263), + [sym_php_statement] = STATE(263), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(263), + [sym__inline_directive] = STATE(263), + [sym__nested_directive] = STATE(263), + [sym_fragment] = STATE(263), + [sym_section] = STATE(263), + [sym_inlineSection] = STATE(263), + [sym_once] = STATE(263), + [sym_verbatim] = STATE(263), + [sym_stack] = STATE(263), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(263), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(263), + [sym_loop] = STATE(263), + [sym_loop_operator] = STATE(263), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(263), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(263), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(263), + [sym_text] = STATE(263), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4990), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(4992), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [266] = { - [sym__definition] = STATE(264), - [sym_comment] = STATE(264), - [sym_keyword] = STATE(264), - [sym_php_statement] = STATE(264), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(264), - [sym__inline_directive] = STATE(264), - [sym__nested_directive] = STATE(264), - [sym_fragment] = STATE(264), - [sym_section] = STATE(264), - [sym_inlineSection] = STATE(264), - [sym_once] = STATE(264), - [sym_verbatim] = STATE(264), - [sym_stack] = STATE(264), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(264), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(264), - [sym_loop] = STATE(264), - [sym_loop_operator] = STATE(264), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(264), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(264), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(264), - [sym_text] = STATE(264), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5120), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(460), + [sym_keyword] = STATE(460), + [sym_php_statement] = STATE(460), + [sym__escaped] = STATE(3287), + [sym__unescaped] = STATE(3287), + [sym__raw] = STATE(3287), + [sym__inline_raw] = STATE(3287), + [sym__multi_line_raw] = STATE(3287), + [sym_attribute] = STATE(460), + [sym__inline_directive] = STATE(460), + [sym__nested_directive] = STATE(460), + [sym_fragment] = STATE(460), + [sym_section] = STATE(460), + [sym_inlineSection] = STATE(460), + [sym_once] = STATE(460), + [sym_verbatim] = STATE(460), + [sym_stack] = STATE(460), + [sym__push] = STATE(3290), + [sym__pushOnce] = STATE(3290), + [sym__pushIf] = STATE(3290), + [sym__prepend] = STATE(3290), + [sym__prependOnce] = STATE(3290), + [sym_conditional] = STATE(460), + [sym__if] = STATE(3292), + [sym__unless] = STATE(3292), + [sym__isset] = STATE(3292), + [sym__empty] = STATE(3292), + [sym__auth] = STATE(3292), + [sym__guest] = STATE(3292), + [sym__production] = STATE(3292), + [sym__env] = STATE(3292), + [sym__hasSection] = STATE(3292), + [sym__sectionMissing] = STATE(3292), + [sym__error] = STATE(3292), + [sym_authorization] = STATE(3292), + [sym__can] = STATE(3293), + [sym__cannot] = STATE(3293), + [sym__canany] = STATE(3293), + [sym__feature] = STATE(3292), + [sym__custom] = STATE(3292), + [sym_switch] = STATE(460), + [sym_loop] = STATE(460), + [sym_loop_operator] = STATE(460), + [sym__for] = STATE(3295), + [sym__foreach] = STATE(3295), + [sym__forelse] = STATE(3295), + [sym__while] = STATE(3295), + [sym_envoy] = STATE(460), + [sym__setup] = STATE(3287), + [sym__task] = STATE(3297), + [sym__story] = STATE(3297), + [sym__hooks] = STATE(3287), + [sym__before] = STATE(3287), + [sym__after] = STATE(3287), + [sym__envoy_error] = STATE(3287), + [sym__success] = STATE(3287), + [sym__finished] = STATE(3287), + [sym_livewire] = STATE(460), + [sym__persist] = STATE(3303), + [sym__teleport] = STATE(3303), + [sym__volt] = STATE(3303), + [aux_sym__directive_body] = STATE(460), + [sym_text] = STATE(460), + [sym__text] = STATE(895), + [aux_sym_php_only_repeat1] = STATE(895), + [sym_comment] = ACTIONS(4994), + [aux_sym_keyword_token1] = ACTIONS(4587), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4589), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4591), + [anon_sym_ATphp] = ACTIONS(4593), + [aux_sym_attribute_token1] = ACTIONS(4595), + [aux_sym__inline_directive_token1] = ACTIONS(4597), + [anon_sym_ATfragment] = ACTIONS(4599), + [anon_sym_ATsection] = ACTIONS(4601), + [anon_sym_ATonce] = ACTIONS(4603), + [anon_sym_ATverbatim] = ACTIONS(4605), + [anon_sym_ATpush] = ACTIONS(4607), + [anon_sym_ATendpush] = ACTIONS(4996), + [anon_sym_ATpushOnce] = ACTIONS(4611), + [anon_sym_ATpushIf] = ACTIONS(4613), + [anon_sym_ATprepend] = ACTIONS(4615), + [anon_sym_ATprependOnce] = ACTIONS(4617), + [anon_sym_ATif] = ACTIONS(4619), + [anon_sym_ATunless] = ACTIONS(4621), + [anon_sym_ATisset] = ACTIONS(4623), + [anon_sym_ATempty] = ACTIONS(4625), + [anon_sym_ATauth] = ACTIONS(4627), + [anon_sym_ATguest] = ACTIONS(4629), + [anon_sym_ATproduction] = ACTIONS(4631), + [anon_sym_ATenv] = ACTIONS(4633), + [anon_sym_AThasSection] = ACTIONS(4635), + [anon_sym_ATsectionMissing] = ACTIONS(4637), + [anon_sym_ATerror] = ACTIONS(4639), + [anon_sym_ATcan] = ACTIONS(4641), + [anon_sym_ATcannot] = ACTIONS(4643), + [anon_sym_ATcanany] = ACTIONS(4645), + [anon_sym_ATfeature] = ACTIONS(4647), + [aux_sym__custom_token1] = ACTIONS(4649), + [aux_sym__custom_token2] = ACTIONS(4651), + [anon_sym_ATswitch] = ACTIONS(4653), + [aux_sym_loop_operator_token1] = ACTIONS(4655), + [anon_sym_ATfor] = ACTIONS(4657), + [anon_sym_ATforeach] = ACTIONS(4659), + [anon_sym_ATforelse] = ACTIONS(4661), + [anon_sym_ATwhile] = ACTIONS(4663), + [anon_sym_ATsetup] = ACTIONS(4665), + [anon_sym_ATtask] = ACTIONS(4667), + [anon_sym_ATstory] = ACTIONS(4669), + [anon_sym_ATbefore] = ACTIONS(4671), + [anon_sym_ATafter] = ACTIONS(4673), + [anon_sym_ATsuccess] = ACTIONS(4675), + [anon_sym_ATfinished] = ACTIONS(4677), + [anon_sym_ATpersist] = ACTIONS(4679), + [anon_sym_ATteleport] = ACTIONS(4681), + [anon_sym_ATvolt] = ACTIONS(4683), + [aux_sym__text_token1] = ACTIONS(4685), + [aux_sym__text_token2] = ACTIONS(4685), + [aux_sym__text_token3] = ACTIONS(4687), }, [267] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5122), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(374), + [sym_keyword] = STATE(374), + [sym_php_statement] = STATE(374), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(374), + [sym__inline_directive] = STATE(374), + [sym__nested_directive] = STATE(374), + [sym_fragment] = STATE(374), + [sym_section] = STATE(374), + [sym_inlineSection] = STATE(374), + [sym_once] = STATE(374), + [sym_verbatim] = STATE(374), + [sym_stack] = STATE(374), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(374), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(374), + [sym_loop] = STATE(374), + [sym_loop_operator] = STATE(374), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(374), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(374), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(374), + [sym_text] = STATE(374), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4998), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5000), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [268] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5124), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5002), + [aux_sym_keyword_token1] = ACTIONS(5005), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5008), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5011), + [anon_sym_ATphp] = ACTIONS(5014), + [aux_sym_attribute_token1] = ACTIONS(5017), + [aux_sym__inline_directive_token1] = ACTIONS(5020), + [anon_sym_ATfragment] = ACTIONS(5023), + [anon_sym_ATsection] = ACTIONS(5026), + [anon_sym_ATonce] = ACTIONS(5029), + [anon_sym_ATverbatim] = ACTIONS(5032), + [anon_sym_ATendverbatim] = ACTIONS(5035), + [anon_sym_ATpush] = ACTIONS(5037), + [anon_sym_ATpushOnce] = ACTIONS(5040), + [anon_sym_ATpushIf] = ACTIONS(5043), + [anon_sym_ATprepend] = ACTIONS(5046), + [anon_sym_ATprependOnce] = ACTIONS(5049), + [anon_sym_ATif] = ACTIONS(5052), + [anon_sym_ATunless] = ACTIONS(5055), + [anon_sym_ATisset] = ACTIONS(5058), + [anon_sym_ATempty] = ACTIONS(5061), + [anon_sym_ATauth] = ACTIONS(5064), + [anon_sym_ATguest] = ACTIONS(5067), + [anon_sym_ATproduction] = ACTIONS(5070), + [anon_sym_ATenv] = ACTIONS(5073), + [anon_sym_AThasSection] = ACTIONS(5076), + [anon_sym_ATsectionMissing] = ACTIONS(5079), + [anon_sym_ATerror] = ACTIONS(5082), + [anon_sym_ATcan] = ACTIONS(5085), + [anon_sym_ATcannot] = ACTIONS(5088), + [anon_sym_ATcanany] = ACTIONS(5091), + [anon_sym_ATfeature] = ACTIONS(5094), + [aux_sym__custom_token1] = ACTIONS(5097), + [aux_sym__custom_token2] = ACTIONS(5100), + [anon_sym_ATswitch] = ACTIONS(5103), + [aux_sym_loop_operator_token1] = ACTIONS(5106), + [anon_sym_ATfor] = ACTIONS(5109), + [anon_sym_ATforeach] = ACTIONS(5112), + [anon_sym_ATforelse] = ACTIONS(5115), + [anon_sym_ATwhile] = ACTIONS(5118), + [anon_sym_ATsetup] = ACTIONS(5121), + [anon_sym_ATtask] = ACTIONS(5124), + [anon_sym_ATstory] = ACTIONS(5127), + [anon_sym_ATbefore] = ACTIONS(5130), + [anon_sym_ATafter] = ACTIONS(5133), + [anon_sym_ATsuccess] = ACTIONS(5136), + [anon_sym_ATfinished] = ACTIONS(5139), + [anon_sym_ATpersist] = ACTIONS(5142), + [anon_sym_ATteleport] = ACTIONS(5145), + [anon_sym_ATvolt] = ACTIONS(5148), + [aux_sym__text_token1] = ACTIONS(5151), + [aux_sym__text_token2] = ACTIONS(5151), + [aux_sym__text_token3] = ACTIONS(5154), }, [269] = { - [sym__definition] = STATE(267), - [sym_comment] = STATE(267), - [sym_keyword] = STATE(267), - [sym_php_statement] = STATE(267), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(267), - [sym__inline_directive] = STATE(267), - [sym__nested_directive] = STATE(267), - [sym_fragment] = STATE(267), - [sym_section] = STATE(267), - [sym_inlineSection] = STATE(267), - [sym_once] = STATE(267), - [sym_verbatim] = STATE(267), - [sym_stack] = STATE(267), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(267), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(267), - [sym_loop] = STATE(267), - [sym_loop_operator] = STATE(267), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(267), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(267), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(267), - [sym_text] = STATE(267), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5126), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [270] = { [sym__definition] = STATE(268), - [sym_comment] = STATE(268), [sym_keyword] = STATE(268), [sym_php_statement] = STATE(268), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(268), [sym__inline_directive] = STATE(268), [sym__nested_directive] = STATE(268), @@ -59153,360 +58262,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(268), [sym_verbatim] = STATE(268), [sym_stack] = STATE(268), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(268), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(268), [sym_loop] = STATE(268), [sym_loop_operator] = STATE(268), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(268), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(268), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(268), [sym_text] = STATE(268), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5128), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5157), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [270] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5159), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [271] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5130), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(269), + [sym_keyword] = STATE(269), + [sym_php_statement] = STATE(269), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(269), + [sym__inline_directive] = STATE(269), + [sym__nested_directive] = STATE(269), + [sym_fragment] = STATE(269), + [sym_section] = STATE(269), + [sym_inlineSection] = STATE(269), + [sym_once] = STATE(269), + [sym_verbatim] = STATE(269), + [sym_stack] = STATE(269), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(269), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(269), + [sym_loop] = STATE(269), + [sym_loop_operator] = STATE(269), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(269), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(269), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(269), + [sym_text] = STATE(269), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5161), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5163), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [272] = { - [sym__definition] = STATE(470), - [sym_comment] = STATE(470), - [sym_keyword] = STATE(470), - [sym_php_statement] = STATE(470), - [sym__escaped] = STATE(3320), - [sym__unescaped] = STATE(3320), - [sym__raw] = STATE(3320), - [sym__inline_raw] = STATE(3320), - [sym__multi_line_raw] = STATE(3320), - [sym_attribute] = STATE(470), - [sym__inline_directive] = STATE(470), - [sym__nested_directive] = STATE(470), - [sym_fragment] = STATE(470), - [sym_section] = STATE(470), - [sym_inlineSection] = STATE(470), - [sym_once] = STATE(470), - [sym_verbatim] = STATE(470), - [sym_stack] = STATE(470), - [sym__push] = STATE(3334), - [sym__pushOnce] = STATE(3334), - [sym__pushIf] = STATE(3334), - [sym__prepend] = STATE(3334), - [sym__prependOnce] = STATE(3334), - [sym_conditional] = STATE(470), - [sym__if] = STATE(3337), - [sym__unless] = STATE(3337), - [sym__isset] = STATE(3337), - [sym__empty] = STATE(3337), - [sym__auth] = STATE(3337), - [sym__guest] = STATE(3337), - [sym__production] = STATE(3337), - [sym__env] = STATE(3337), - [sym__hasSection] = STATE(3337), - [sym__sectionMissing] = STATE(3337), - [sym__error] = STATE(3337), - [sym_authorization] = STATE(3337), - [sym__can] = STATE(3342), - [sym__cannot] = STATE(3342), - [sym__canany] = STATE(3342), - [sym__feature] = STATE(3337), - [sym__custom] = STATE(3337), - [sym_switch] = STATE(470), - [sym_loop] = STATE(470), - [sym_loop_operator] = STATE(470), - [sym__for] = STATE(3345), - [sym__foreach] = STATE(3345), - [sym__forelse] = STATE(3345), - [sym__while] = STATE(3345), - [sym_envoy] = STATE(470), - [sym__setup] = STATE(3320), - [sym__task] = STATE(3346), - [sym__story] = STATE(3346), - [sym__hooks] = STATE(3320), - [sym__before] = STATE(3320), - [sym__after] = STATE(3320), - [sym__envoy_error] = STATE(3320), - [sym__success] = STATE(3320), - [sym__finished] = STATE(3320), - [sym_livewire] = STATE(470), - [sym__persist] = STATE(3498), - [sym__teleport] = STATE(3498), - [sym__volt] = STATE(3498), - [aux_sym__directive_body] = STATE(470), - [sym_text] = STATE(470), - [sym__text] = STATE(1007), - [aux_sym_php_only_repeat1] = STATE(1007), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4688), - [aux_sym_keyword_token1] = ACTIONS(4690), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4692), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4694), - [anon_sym_ATphp] = ACTIONS(4696), - [aux_sym_attribute_token1] = ACTIONS(4698), - [aux_sym__inline_directive_token1] = ACTIONS(4700), - [anon_sym_ATfragment] = ACTIONS(4702), - [anon_sym_ATsection] = ACTIONS(4704), - [anon_sym_ATonce] = ACTIONS(4706), - [anon_sym_ATverbatim] = ACTIONS(4708), - [anon_sym_ATpush] = ACTIONS(4710), - [anon_sym_ATendpush] = ACTIONS(4626), - [anon_sym_ATpushOnce] = ACTIONS(4714), - [anon_sym_ATpushIf] = ACTIONS(4716), - [anon_sym_ATprepend] = ACTIONS(4718), - [anon_sym_ATprependOnce] = ACTIONS(4720), - [anon_sym_ATif] = ACTIONS(4722), - [anon_sym_ATunless] = ACTIONS(4724), - [anon_sym_ATisset] = ACTIONS(4726), - [anon_sym_ATempty] = ACTIONS(4728), - [anon_sym_ATauth] = ACTIONS(4730), - [anon_sym_ATguest] = ACTIONS(4732), - [anon_sym_ATproduction] = ACTIONS(4734), - [anon_sym_ATenv] = ACTIONS(4736), - [anon_sym_AThasSection] = ACTIONS(4738), - [anon_sym_ATsectionMissing] = ACTIONS(4740), - [anon_sym_ATerror] = ACTIONS(4742), - [anon_sym_ATcan] = ACTIONS(4744), - [anon_sym_ATcannot] = ACTIONS(4746), - [anon_sym_ATcanany] = ACTIONS(4748), - [anon_sym_ATfeature] = ACTIONS(4750), - [aux_sym__custom_token1] = ACTIONS(4752), - [aux_sym__custom_token2] = ACTIONS(4754), - [anon_sym_ATswitch] = ACTIONS(4756), - [aux_sym_loop_operator_token1] = ACTIONS(4758), - [anon_sym_ATfor] = ACTIONS(4760), - [anon_sym_ATforeach] = ACTIONS(4762), - [anon_sym_ATforelse] = ACTIONS(4764), - [anon_sym_ATwhile] = ACTIONS(4766), - [anon_sym_ATsetup] = ACTIONS(4768), - [anon_sym_ATtask] = ACTIONS(4770), - [anon_sym_ATstory] = ACTIONS(4772), - [anon_sym_ATbefore] = ACTIONS(4774), - [anon_sym_ATafter] = ACTIONS(4776), - [anon_sym_ATsuccess] = ACTIONS(4778), - [anon_sym_ATfinished] = ACTIONS(4780), - [anon_sym_ATpersist] = ACTIONS(4782), - [anon_sym_ATteleport] = ACTIONS(4784), - [anon_sym_ATvolt] = ACTIONS(4786), - [aux_sym__text_token1] = ACTIONS(4788), - [aux_sym__text_token2] = ACTIONS(4788), - [aux_sym__text_token3] = ACTIONS(4790), + [sym__definition] = STATE(270), + [sym_keyword] = STATE(270), + [sym_php_statement] = STATE(270), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(270), + [sym__inline_directive] = STATE(270), + [sym__nested_directive] = STATE(270), + [sym_fragment] = STATE(270), + [sym_section] = STATE(270), + [sym_inlineSection] = STATE(270), + [sym_once] = STATE(270), + [sym_verbatim] = STATE(270), + [sym_stack] = STATE(270), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(270), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(270), + [sym_loop] = STATE(270), + [sym_loop_operator] = STATE(270), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(270), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(270), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(270), + [sym_text] = STATE(270), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5165), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5167), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [273] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5169), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [274] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -59516,481 +58862,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5132), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [274] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5134), - [aux_sym_keyword_token1] = ACTIONS(5137), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5140), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5143), - [anon_sym_ATphp] = ACTIONS(5146), - [aux_sym_attribute_token1] = ACTIONS(5149), - [aux_sym__inline_directive_token1] = ACTIONS(5152), - [anon_sym_ATfragment] = ACTIONS(5155), - [anon_sym_ATsection] = ACTIONS(5158), - [anon_sym_ATonce] = ACTIONS(5161), - [anon_sym_ATverbatim] = ACTIONS(5164), - [anon_sym_ATendverbatim] = ACTIONS(3925), - [anon_sym_ATpush] = ACTIONS(5167), - [anon_sym_ATpushOnce] = ACTIONS(5170), - [anon_sym_ATpushIf] = ACTIONS(5173), - [anon_sym_ATprepend] = ACTIONS(5176), - [anon_sym_ATprependOnce] = ACTIONS(5179), - [anon_sym_ATif] = ACTIONS(5182), - [anon_sym_ATunless] = ACTIONS(5185), - [anon_sym_ATisset] = ACTIONS(5188), - [anon_sym_ATempty] = ACTIONS(5191), - [anon_sym_ATauth] = ACTIONS(5194), - [anon_sym_ATguest] = ACTIONS(5197), - [anon_sym_ATproduction] = ACTIONS(5200), - [anon_sym_ATenv] = ACTIONS(5203), - [anon_sym_AThasSection] = ACTIONS(5206), - [anon_sym_ATsectionMissing] = ACTIONS(5209), - [anon_sym_ATerror] = ACTIONS(5212), - [anon_sym_ATcan] = ACTIONS(5215), - [anon_sym_ATcannot] = ACTIONS(5218), - [anon_sym_ATcanany] = ACTIONS(5221), - [anon_sym_ATfeature] = ACTIONS(5224), - [aux_sym__custom_token1] = ACTIONS(5227), - [aux_sym__custom_token2] = ACTIONS(5230), - [anon_sym_ATswitch] = ACTIONS(5233), - [aux_sym_loop_operator_token1] = ACTIONS(5236), - [anon_sym_ATfor] = ACTIONS(5239), - [anon_sym_ATforeach] = ACTIONS(5242), - [anon_sym_ATforelse] = ACTIONS(5245), - [anon_sym_ATwhile] = ACTIONS(5248), - [anon_sym_ATsetup] = ACTIONS(5251), - [anon_sym_ATtask] = ACTIONS(5254), - [anon_sym_ATstory] = ACTIONS(5257), - [anon_sym_ATbefore] = ACTIONS(5260), - [anon_sym_ATafter] = ACTIONS(5263), - [anon_sym_ATsuccess] = ACTIONS(5266), - [anon_sym_ATfinished] = ACTIONS(5269), - [anon_sym_ATpersist] = ACTIONS(5272), - [anon_sym_ATteleport] = ACTIONS(5275), - [anon_sym_ATvolt] = ACTIONS(5278), - [aux_sym__text_token1] = ACTIONS(5281), - [aux_sym__text_token2] = ACTIONS(5281), - [aux_sym__text_token3] = ACTIONS(5284), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5171), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [275] = { - [sym__definition] = STATE(271), - [sym_comment] = STATE(271), - [sym_keyword] = STATE(271), - [sym_php_statement] = STATE(271), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(271), - [sym__inline_directive] = STATE(271), - [sym__nested_directive] = STATE(271), - [sym_fragment] = STATE(271), - [sym_section] = STATE(271), - [sym_inlineSection] = STATE(271), - [sym_once] = STATE(271), - [sym_verbatim] = STATE(271), - [sym_stack] = STATE(271), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(271), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(271), - [sym_loop] = STATE(271), - [sym_loop_operator] = STATE(271), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(271), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(271), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(271), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(271), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5287), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [276] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5287), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [277] = { [sym__definition] = STATE(273), - [sym_comment] = STATE(273), [sym_keyword] = STATE(273), [sym_php_statement] = STATE(273), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(273), [sym__inline_directive] = STATE(273), [sym__nested_directive] = STATE(273), @@ -60000,118 +58982,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(273), [sym_verbatim] = STATE(273), [sym_stack] = STATE(273), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(273), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(273), [sym_loop] = STATE(273), [sym_loop_operator] = STATE(273), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(273), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(273), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(273), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(273), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5289), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(273), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5173), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5175), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [276] = { + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5177), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [277] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5175), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [278] = { + [sym__definition] = STATE(274), + [sym_keyword] = STATE(274), + [sym_php_statement] = STATE(274), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(274), + [sym__inline_directive] = STATE(274), + [sym__nested_directive] = STATE(274), + [sym_fragment] = STATE(274), + [sym_section] = STATE(274), + [sym_inlineSection] = STATE(274), + [sym_once] = STATE(274), + [sym_verbatim] = STATE(274), + [sym_stack] = STATE(274), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(274), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(274), + [sym_loop] = STATE(274), + [sym_loop_operator] = STATE(274), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(274), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(274), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(274), + [sym_text] = STATE(274), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5179), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5181), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [279] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -60121,1207 +59462,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5291), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [279] = { - [sym__definition] = STATE(276), - [sym_comment] = STATE(276), - [sym_keyword] = STATE(276), - [sym_php_statement] = STATE(276), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(276), - [sym__inline_directive] = STATE(276), - [sym__nested_directive] = STATE(276), - [sym_fragment] = STATE(276), - [sym_section] = STATE(276), - [sym_inlineSection] = STATE(276), - [sym_once] = STATE(276), - [sym_verbatim] = STATE(276), - [sym_stack] = STATE(276), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(276), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(276), - [sym_loop] = STATE(276), - [sym_loop_operator] = STATE(276), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(276), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(276), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(276), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(276), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5293), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5183), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [280] = { - [sym__definition] = STATE(278), - [sym_comment] = STATE(278), - [sym_keyword] = STATE(278), - [sym_php_statement] = STATE(278), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(278), - [sym__inline_directive] = STATE(278), - [sym__nested_directive] = STATE(278), - [sym_fragment] = STATE(278), - [sym_section] = STATE(278), - [sym_inlineSection] = STATE(278), - [sym_once] = STATE(278), - [sym_verbatim] = STATE(278), - [sym_stack] = STATE(278), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(278), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(278), - [sym_loop] = STATE(278), - [sym_loop_operator] = STATE(278), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(278), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(278), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(278), - [sym_text] = STATE(278), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5295), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(277), + [sym_keyword] = STATE(277), + [sym_php_statement] = STATE(277), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(277), + [sym__inline_directive] = STATE(277), + [sym__nested_directive] = STATE(277), + [sym_fragment] = STATE(277), + [sym_section] = STATE(277), + [sym_inlineSection] = STATE(277), + [sym_once] = STATE(277), + [sym_verbatim] = STATE(277), + [sym_stack] = STATE(277), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(277), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(277), + [sym_loop] = STATE(277), + [sym_loop_operator] = STATE(277), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(277), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(277), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(277), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(277), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5185), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5187), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [281] = { - [sym__definition] = STATE(381), - [sym_comment] = STATE(381), - [sym_keyword] = STATE(381), - [sym_php_statement] = STATE(381), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(381), - [sym__inline_directive] = STATE(381), - [sym__nested_directive] = STATE(381), - [sym_fragment] = STATE(381), - [sym_section] = STATE(381), - [sym_inlineSection] = STATE(381), - [sym_once] = STATE(381), - [sym_verbatim] = STATE(381), - [sym_stack] = STATE(381), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(381), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(381), - [sym_loop] = STATE(381), - [sym_loop_operator] = STATE(381), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(381), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(381), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(381), - [sym_text] = STATE(381), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5297), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(279), + [sym_keyword] = STATE(279), + [sym_php_statement] = STATE(279), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(279), + [sym__inline_directive] = STATE(279), + [sym__nested_directive] = STATE(279), + [sym_fragment] = STATE(279), + [sym_section] = STATE(279), + [sym_inlineSection] = STATE(279), + [sym_once] = STATE(279), + [sym_verbatim] = STATE(279), + [sym_stack] = STATE(279), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(279), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(279), + [sym_loop] = STATE(279), + [sym_loop_operator] = STATE(279), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(279), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(279), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(279), + [sym_text] = STATE(279), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5189), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5191), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [282] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5299), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(211), + [sym_keyword] = STATE(211), + [sym_php_statement] = STATE(211), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(211), + [sym__inline_directive] = STATE(211), + [sym__nested_directive] = STATE(211), + [sym_fragment] = STATE(211), + [sym_section] = STATE(211), + [sym_inlineSection] = STATE(211), + [sym_once] = STATE(211), + [sym_verbatim] = STATE(211), + [sym_stack] = STATE(211), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(211), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(211), + [sym_loop] = STATE(211), + [sym_loop_operator] = STATE(211), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(211), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(211), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(211), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(211), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5193), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5195), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [283] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5301), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [284] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5303), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [285] = { - [sym__definition] = STATE(283), - [sym_comment] = STATE(283), - [sym_keyword] = STATE(283), - [sym_php_statement] = STATE(283), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(283), - [sym__inline_directive] = STATE(283), - [sym__nested_directive] = STATE(283), - [sym_fragment] = STATE(283), - [sym_section] = STATE(283), - [sym_inlineSection] = STATE(283), - [sym_once] = STATE(283), - [sym_verbatim] = STATE(283), - [sym_stack] = STATE(283), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(283), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(283), - [sym_loop] = STATE(283), - [sym_loop_operator] = STATE(283), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(283), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(283), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(283), - [sym_text] = STATE(283), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5305), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [286] = { - [sym__definition] = STATE(284), - [sym_comment] = STATE(284), - [sym_keyword] = STATE(284), - [sym_php_statement] = STATE(284), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(284), - [sym__inline_directive] = STATE(284), - [sym__nested_directive] = STATE(284), - [sym_fragment] = STATE(284), - [sym_section] = STATE(284), - [sym_inlineSection] = STATE(284), - [sym_once] = STATE(284), - [sym_verbatim] = STATE(284), - [sym_stack] = STATE(284), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(284), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(284), - [sym_loop] = STATE(284), - [sym_loop_operator] = STATE(284), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(284), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(284), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(284), - [sym_text] = STATE(284), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5307), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [287] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5309), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [288] = { [sym__definition] = STATE(297), - [sym_comment] = STATE(297), [sym_keyword] = STATE(297), [sym_php_statement] = STATE(297), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(297), [sym__inline_directive] = STATE(297), [sym__nested_directive] = STATE(297), @@ -61331,118 +59942,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(297), [sym_verbatim] = STATE(297), [sym_stack] = STATE(297), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(297), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(297), [sym_loop] = STATE(297), [sym_loop_operator] = STATE(297), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(297), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(297), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(297), [sym_text] = STATE(297), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5311), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5197), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5199), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [289] = { + [284] = { [sym__definition] = STATE(323), - [sym_comment] = STATE(323), [sym_keyword] = STATE(323), [sym_php_statement] = STATE(323), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(323), [sym__inline_directive] = STATE(323), [sym__nested_directive] = STATE(323), @@ -61452,118 +60062,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(323), [sym_verbatim] = STATE(323), [sym_stack] = STATE(323), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(323), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(323), [sym_loop] = STATE(323), [sym_loop_operator] = STATE(323), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(323), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(323), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(323), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(323), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5313), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5201), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5203), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [285] = { + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5205), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [286] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5207), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [287] = { + [sym__definition] = STATE(285), + [sym_keyword] = STATE(285), + [sym_php_statement] = STATE(285), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(285), + [sym__inline_directive] = STATE(285), + [sym__nested_directive] = STATE(285), + [sym_fragment] = STATE(285), + [sym_section] = STATE(285), + [sym_inlineSection] = STATE(285), + [sym_once] = STATE(285), + [sym_verbatim] = STATE(285), + [sym_stack] = STATE(285), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(285), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(285), + [sym_loop] = STATE(285), + [sym_loop_operator] = STATE(285), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(285), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(285), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(285), + [sym_text] = STATE(285), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5209), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5211), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [288] = { + [sym__definition] = STATE(286), + [sym_keyword] = STATE(286), + [sym_php_statement] = STATE(286), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(286), + [sym__inline_directive] = STATE(286), + [sym__nested_directive] = STATE(286), + [sym_fragment] = STATE(286), + [sym_section] = STATE(286), + [sym_inlineSection] = STATE(286), + [sym_once] = STATE(286), + [sym_verbatim] = STATE(286), + [sym_stack] = STATE(286), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(286), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(286), + [sym_loop] = STATE(286), + [sym_loop_operator] = STATE(286), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(286), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(286), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(286), + [sym_text] = STATE(286), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5213), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5215), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [289] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5217), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [290] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -61573,360 +60782,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5315), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5219), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [291] = { - [sym__definition] = STATE(287), - [sym_comment] = STATE(287), - [sym_keyword] = STATE(287), - [sym_php_statement] = STATE(287), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(287), - [sym__inline_directive] = STATE(287), - [sym__nested_directive] = STATE(287), - [sym_fragment] = STATE(287), - [sym_section] = STATE(287), - [sym_inlineSection] = STATE(287), - [sym_once] = STATE(287), - [sym_verbatim] = STATE(287), - [sym_stack] = STATE(287), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(287), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(287), - [sym_loop] = STATE(287), - [sym_loop_operator] = STATE(287), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(287), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(287), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(287), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(287), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5317), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(289), + [sym_keyword] = STATE(289), + [sym_php_statement] = STATE(289), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(289), + [sym__inline_directive] = STATE(289), + [sym__nested_directive] = STATE(289), + [sym_fragment] = STATE(289), + [sym_section] = STATE(289), + [sym_inlineSection] = STATE(289), + [sym_once] = STATE(289), + [sym_verbatim] = STATE(289), + [sym_stack] = STATE(289), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(289), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(289), + [sym_loop] = STATE(289), + [sym_loop_operator] = STATE(289), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(289), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(289), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(289), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(289), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5221), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5223), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [292] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5317), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5223), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [293] = { [sym__definition] = STATE(290), - [sym_comment] = STATE(290), [sym_keyword] = STATE(290), [sym_php_statement] = STATE(290), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(290), [sym__inline_directive] = STATE(290), [sym__nested_directive] = STATE(290), @@ -61936,118 +61142,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(290), [sym_verbatim] = STATE(290), [sym_stack] = STATE(290), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(290), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(290), [sym_loop] = STATE(290), [sym_loop_operator] = STATE(290), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(290), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(290), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(290), [sym_text] = STATE(290), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5319), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5225), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5227), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [294] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -62057,118 +61262,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5321), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5229), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [295] = { [sym__definition] = STATE(292), - [sym_comment] = STATE(292), [sym_keyword] = STATE(292), [sym_php_statement] = STATE(292), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(292), [sym__inline_directive] = STATE(292), [sym__nested_directive] = STATE(292), @@ -62178,118 +61382,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(292), [sym_verbatim] = STATE(292), [sym_stack] = STATE(292), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(292), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(292), [sym_loop] = STATE(292), [sym_loop_operator] = STATE(292), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(292), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(292), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(292), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(292), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5323), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5231), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5233), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [296] = { [sym__definition] = STATE(294), - [sym_comment] = STATE(294), [sym_keyword] = STATE(294), [sym_php_statement] = STATE(294), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(294), [sym__inline_directive] = STATE(294), [sym__nested_directive] = STATE(294), @@ -62299,118 +61502,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(294), [sym_verbatim] = STATE(294), [sym_stack] = STATE(294), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(294), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(294), [sym_loop] = STATE(294), [sym_loop_operator] = STATE(294), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(294), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(294), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(294), [sym_text] = STATE(294), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5325), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5235), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5237), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [297] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -62420,360 +61622,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5327), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5239), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [298] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5329), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5241), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [299] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5331), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5243), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [300] = { [sym__definition] = STATE(298), - [sym_comment] = STATE(298), [sym_keyword] = STATE(298), [sym_php_statement] = STATE(298), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(298), [sym__inline_directive] = STATE(298), [sym__nested_directive] = STATE(298), @@ -62783,118 +61982,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(298), [sym_verbatim] = STATE(298), [sym_stack] = STATE(298), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(298), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(298), [sym_loop] = STATE(298), [sym_loop_operator] = STATE(298), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(298), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(298), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(298), [sym_text] = STATE(298), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5333), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5245), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5247), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [301] = { [sym__definition] = STATE(299), - [sym_comment] = STATE(299), [sym_keyword] = STATE(299), [sym_php_statement] = STATE(299), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(299), [sym__inline_directive] = STATE(299), [sym__nested_directive] = STATE(299), @@ -62904,239 +62102,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(299), [sym_verbatim] = STATE(299), [sym_stack] = STATE(299), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(299), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(299), [sym_loop] = STATE(299), [sym_loop_operator] = STATE(299), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(299), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(299), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(299), [sym_text] = STATE(299), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5335), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5249), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5251), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [302] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5337), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5253), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [303] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -63146,118 +62342,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5339), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5255), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [304] = { [sym__definition] = STATE(302), - [sym_comment] = STATE(302), [sym_keyword] = STATE(302), [sym_php_statement] = STATE(302), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(302), [sym__inline_directive] = STATE(302), [sym__nested_directive] = STATE(302), @@ -63267,239 +62462,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(302), [sym_verbatim] = STATE(302), [sym_stack] = STATE(302), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(302), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(302), [sym_loop] = STATE(302), [sym_loop_operator] = STATE(302), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(302), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(302), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(302), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(302), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5341), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5257), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5259), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [305] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5341), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5259), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [306] = { [sym__definition] = STATE(303), - [sym_comment] = STATE(303), [sym_keyword] = STATE(303), [sym_php_statement] = STATE(303), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(303), [sym__inline_directive] = STATE(303), [sym__nested_directive] = STATE(303), @@ -63509,118 +62702,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(303), [sym_verbatim] = STATE(303), [sym_stack] = STATE(303), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(303), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(303), [sym_loop] = STATE(303), [sym_loop_operator] = STATE(303), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(303), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(303), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(303), [sym_text] = STATE(303), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5343), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5261), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5263), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [307] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -63630,118 +62822,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5345), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5265), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [308] = { [sym__definition] = STATE(305), - [sym_comment] = STATE(305), [sym_keyword] = STATE(305), [sym_php_statement] = STATE(305), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(305), [sym__inline_directive] = STATE(305), [sym__nested_directive] = STATE(305), @@ -63751,118 +62942,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(305), [sym_verbatim] = STATE(305), [sym_stack] = STATE(305), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(305), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(305), [sym_loop] = STATE(305), [sym_loop_operator] = STATE(305), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(305), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(305), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(305), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(305), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5347), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5267), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5269), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [309] = { [sym__definition] = STATE(307), - [sym_comment] = STATE(307), [sym_keyword] = STATE(307), [sym_php_statement] = STATE(307), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(307), [sym__inline_directive] = STATE(307), [sym__nested_directive] = STATE(307), @@ -63872,481 +63062,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(307), [sym_verbatim] = STATE(307), [sym_stack] = STATE(307), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(307), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(307), [sym_loop] = STATE(307), [sym_loop_operator] = STATE(307), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(307), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(307), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(307), [sym_text] = STATE(307), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5349), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5271), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5273), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [310] = { - [sym__definition] = STATE(350), - [sym_comment] = STATE(350), - [sym_keyword] = STATE(350), - [sym_php_statement] = STATE(350), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(350), - [sym__inline_directive] = STATE(350), - [sym__nested_directive] = STATE(350), - [sym_fragment] = STATE(350), - [sym_section] = STATE(350), - [sym_inlineSection] = STATE(350), - [sym_once] = STATE(350), - [sym_verbatim] = STATE(350), - [sym_stack] = STATE(350), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(350), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(350), - [sym_loop] = STATE(350), - [sym_loop_operator] = STATE(350), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(350), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(350), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(350), - [sym_text] = STATE(350), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5351), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(348), + [sym_keyword] = STATE(348), + [sym_php_statement] = STATE(348), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(348), + [sym__inline_directive] = STATE(348), + [sym__nested_directive] = STATE(348), + [sym_fragment] = STATE(348), + [sym_section] = STATE(348), + [sym_inlineSection] = STATE(348), + [sym_once] = STATE(348), + [sym_verbatim] = STATE(348), + [sym_stack] = STATE(348), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(348), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(348), + [sym_loop] = STATE(348), + [sym_loop_operator] = STATE(348), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(348), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(348), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(348), + [sym_text] = STATE(348), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5275), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5277), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [311] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5353), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5279), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [312] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5355), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5281), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [313] = { [sym__definition] = STATE(311), - [sym_comment] = STATE(311), [sym_keyword] = STATE(311), [sym_php_statement] = STATE(311), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(311), [sym__inline_directive] = STATE(311), [sym__nested_directive] = STATE(311), @@ -64356,118 +63542,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(311), [sym_verbatim] = STATE(311), [sym_stack] = STATE(311), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(311), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(311), [sym_loop] = STATE(311), [sym_loop_operator] = STATE(311), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(311), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(311), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(311), [sym_text] = STATE(311), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5357), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5283), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5285), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [314] = { [sym__definition] = STATE(312), - [sym_comment] = STATE(312), [sym_keyword] = STATE(312), [sym_php_statement] = STATE(312), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(312), [sym__inline_directive] = STATE(312), [sym__nested_directive] = STATE(312), @@ -64477,239 +63662,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(312), [sym_verbatim] = STATE(312), [sym_stack] = STATE(312), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(312), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(312), [sym_loop] = STATE(312), [sym_loop_operator] = STATE(312), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(312), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(312), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(312), [sym_text] = STATE(312), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5359), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5287), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5289), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [315] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5361), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5291), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [316] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -64719,118 +63902,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5363), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5293), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [317] = { [sym__definition] = STATE(315), - [sym_comment] = STATE(315), [sym_keyword] = STATE(315), [sym_php_statement] = STATE(315), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(315), [sym__inline_directive] = STATE(315), [sym__nested_directive] = STATE(315), @@ -64840,239 +64022,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(315), [sym_verbatim] = STATE(315), [sym_stack] = STATE(315), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(315), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(315), [sym_loop] = STATE(315), [sym_loop_operator] = STATE(315), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(315), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(315), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(315), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(315), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5365), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5295), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5297), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [318] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5365), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5297), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [319] = { [sym__definition] = STATE(316), - [sym_comment] = STATE(316), [sym_keyword] = STATE(316), [sym_php_statement] = STATE(316), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(316), [sym__inline_directive] = STATE(316), [sym__nested_directive] = STATE(316), @@ -65082,118 +64262,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(316), [sym_verbatim] = STATE(316), [sym_stack] = STATE(316), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(316), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(316), [sym_loop] = STATE(316), [sym_loop_operator] = STATE(316), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(316), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(316), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(316), [sym_text] = STATE(316), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5367), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5299), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5301), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [320] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -65203,118 +64382,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5369), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5303), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [321] = { [sym__definition] = STATE(318), - [sym_comment] = STATE(318), [sym_keyword] = STATE(318), [sym_php_statement] = STATE(318), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(318), [sym__inline_directive] = STATE(318), [sym__nested_directive] = STATE(318), @@ -65324,118 +64502,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(318), [sym_verbatim] = STATE(318), [sym_stack] = STATE(318), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(318), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(318), [sym_loop] = STATE(318), [sym_loop_operator] = STATE(318), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(318), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(318), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(318), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(318), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5371), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5305), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5307), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [322] = { [sym__definition] = STATE(320), - [sym_comment] = STATE(320), [sym_keyword] = STATE(320), [sym_php_statement] = STATE(320), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(320), [sym__inline_directive] = STATE(320), [sym__nested_directive] = STATE(320), @@ -65445,481 +64622,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(320), [sym_verbatim] = STATE(320), [sym_stack] = STATE(320), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(320), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(320), [sym_loop] = STATE(320), [sym_loop_operator] = STATE(320), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(320), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(320), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(320), [sym_text] = STATE(320), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5373), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5309), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5311), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [323] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5375), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5313), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [324] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5377), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5315), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [325] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5379), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5317), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [326] = { [sym__definition] = STATE(324), - [sym_comment] = STATE(324), [sym_keyword] = STATE(324), [sym_php_statement] = STATE(324), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(324), [sym__inline_directive] = STATE(324), [sym__nested_directive] = STATE(324), @@ -65929,118 +65102,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(324), [sym_verbatim] = STATE(324), [sym_stack] = STATE(324), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(324), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(324), [sym_loop] = STATE(324), [sym_loop_operator] = STATE(324), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(324), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(324), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(324), [sym_text] = STATE(324), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5381), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5319), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5321), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [327] = { [sym__definition] = STATE(325), - [sym_comment] = STATE(325), [sym_keyword] = STATE(325), [sym_php_statement] = STATE(325), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(325), [sym__inline_directive] = STATE(325), [sym__nested_directive] = STATE(325), @@ -66050,239 +65222,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(325), [sym_verbatim] = STATE(325), [sym_stack] = STATE(325), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(325), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(325), [sym_loop] = STATE(325), [sym_loop_operator] = STATE(325), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(325), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(325), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(325), [sym_text] = STATE(325), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5383), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5323), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5325), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [328] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5385), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(622), + [sym_keyword] = STATE(622), + [sym_php_statement] = STATE(622), + [sym__escaped] = STATE(2257), + [sym__unescaped] = STATE(2257), + [sym__raw] = STATE(2257), + [sym__inline_raw] = STATE(2257), + [sym__multi_line_raw] = STATE(2257), + [sym_attribute] = STATE(622), + [sym__inline_directive] = STATE(622), + [sym__nested_directive] = STATE(622), + [sym_fragment] = STATE(622), + [sym_section] = STATE(622), + [sym_inlineSection] = STATE(622), + [sym_once] = STATE(622), + [sym_verbatim] = STATE(622), + [sym_stack] = STATE(622), + [sym__push] = STATE(2258), + [sym__pushOnce] = STATE(2258), + [sym__pushIf] = STATE(2258), + [sym__prepend] = STATE(2258), + [sym__prependOnce] = STATE(2258), + [sym_conditional] = STATE(622), + [sym__if] = STATE(2259), + [sym__unless] = STATE(2259), + [sym__isset] = STATE(2259), + [sym__empty] = STATE(2259), + [sym__auth] = STATE(2259), + [sym__guest] = STATE(2259), + [sym__production] = STATE(2259), + [sym__env] = STATE(2259), + [sym__hasSection] = STATE(2259), + [sym__sectionMissing] = STATE(2259), + [sym__error] = STATE(2259), + [sym_authorization] = STATE(2259), + [sym__can] = STATE(2260), + [sym__cannot] = STATE(2260), + [sym__canany] = STATE(2260), + [sym__feature] = STATE(2259), + [sym__custom] = STATE(2259), + [sym_switch] = STATE(622), + [sym_loop] = STATE(622), + [sym_loop_operator] = STATE(622), + [sym__for] = STATE(2261), + [sym__foreach] = STATE(2261), + [sym__forelse] = STATE(2261), + [sym__while] = STATE(2261), + [sym_envoy] = STATE(622), + [sym__setup] = STATE(2257), + [sym__task] = STATE(2262), + [sym__story] = STATE(2262), + [sym__hooks] = STATE(2257), + [sym__before] = STATE(2257), + [sym__after] = STATE(2257), + [sym__envoy_error] = STATE(2257), + [sym__success] = STATE(2257), + [sym__finished] = STATE(2257), + [sym_livewire] = STATE(622), + [sym__persist] = STATE(2263), + [sym__teleport] = STATE(2263), + [sym__volt] = STATE(2263), + [aux_sym__directive_body] = STATE(622), + [sym_text] = STATE(622), + [sym__text] = STATE(995), + [aux_sym_php_only_repeat1] = STATE(995), + [sym_comment] = ACTIONS(5327), + [aux_sym_keyword_token1] = ACTIONS(4697), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4699), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4701), + [anon_sym_ATphp] = ACTIONS(4703), + [aux_sym_attribute_token1] = ACTIONS(4705), + [aux_sym__inline_directive_token1] = ACTIONS(4707), + [anon_sym_ATfragment] = ACTIONS(4709), + [anon_sym_ATsection] = ACTIONS(4711), + [anon_sym_ATonce] = ACTIONS(4713), + [anon_sym_ATverbatim] = ACTIONS(4715), + [anon_sym_ATpush] = ACTIONS(4717), + [anon_sym_ATpushOnce] = ACTIONS(4719), + [anon_sym_ATpushIf] = ACTIONS(4721), + [anon_sym_ATprepend] = ACTIONS(4723), + [anon_sym_ATprependOnce] = ACTIONS(4725), + [anon_sym_ATif] = ACTIONS(4727), + [anon_sym_ATunless] = ACTIONS(4729), + [anon_sym_ATisset] = ACTIONS(4731), + [anon_sym_ATempty] = ACTIONS(4733), + [anon_sym_ATauth] = ACTIONS(4735), + [anon_sym_ATguest] = ACTIONS(4737), + [anon_sym_ATproduction] = ACTIONS(4739), + [anon_sym_ATenv] = ACTIONS(4741), + [anon_sym_AThasSection] = ACTIONS(4743), + [anon_sym_ATsectionMissing] = ACTIONS(4745), + [anon_sym_ATerror] = ACTIONS(4747), + [anon_sym_ATcan] = ACTIONS(4749), + [anon_sym_ATcannot] = ACTIONS(4751), + [anon_sym_ATcanany] = ACTIONS(4753), + [anon_sym_ATfeature] = ACTIONS(4755), + [aux_sym__custom_token1] = ACTIONS(4757), + [aux_sym__custom_token2] = ACTIONS(4759), + [anon_sym_ATswitch] = ACTIONS(4761), + [aux_sym_loop_operator_token1] = ACTIONS(4763), + [anon_sym_ATfor] = ACTIONS(4765), + [anon_sym_ATforeach] = ACTIONS(4767), + [anon_sym_ATendforeach] = ACTIONS(4996), + [anon_sym_ATforelse] = ACTIONS(4769), + [anon_sym_ATwhile] = ACTIONS(4771), + [anon_sym_ATsetup] = ACTIONS(4773), + [anon_sym_ATtask] = ACTIONS(4775), + [anon_sym_ATstory] = ACTIONS(4777), + [anon_sym_ATbefore] = ACTIONS(4779), + [anon_sym_ATafter] = ACTIONS(4781), + [anon_sym_ATsuccess] = ACTIONS(4783), + [anon_sym_ATfinished] = ACTIONS(4785), + [anon_sym_ATpersist] = ACTIONS(4787), + [anon_sym_ATteleport] = ACTIONS(4789), + [anon_sym_ATvolt] = ACTIONS(4791), + [aux_sym__text_token1] = ACTIONS(4793), + [aux_sym__text_token2] = ACTIONS(4793), + [aux_sym__text_token3] = ACTIONS(4795), }, [329] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5329), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [330] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -66292,360 +65582,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5387), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [330] = { - [sym__definition] = STATE(328), - [sym_comment] = STATE(328), - [sym_keyword] = STATE(328), - [sym_php_statement] = STATE(328), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(328), - [sym__inline_directive] = STATE(328), - [sym__nested_directive] = STATE(328), - [sym_fragment] = STATE(328), - [sym_section] = STATE(328), - [sym_inlineSection] = STATE(328), - [sym_once] = STATE(328), - [sym_verbatim] = STATE(328), - [sym_stack] = STATE(328), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(328), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(328), - [sym_loop] = STATE(328), - [sym_loop_operator] = STATE(328), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(328), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(328), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(328), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(328), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5389), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5331), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [331] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5389), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [332] = { [sym__definition] = STATE(329), - [sym_comment] = STATE(329), [sym_keyword] = STATE(329), [sym_php_statement] = STATE(329), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(329), [sym__inline_directive] = STATE(329), [sym__nested_directive] = STATE(329), @@ -66655,118 +65702,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(329), [sym_verbatim] = STATE(329), [sym_stack] = STATE(329), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(329), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(329), [sym_loop] = STATE(329), [sym_loop_operator] = STATE(329), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(329), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(329), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(329), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(329), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5391), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(329), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5333), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5335), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [332] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5335), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [333] = { + [sym__definition] = STATE(330), + [sym_keyword] = STATE(330), + [sym_php_statement] = STATE(330), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(330), + [sym__inline_directive] = STATE(330), + [sym__nested_directive] = STATE(330), + [sym_fragment] = STATE(330), + [sym_section] = STATE(330), + [sym_inlineSection] = STATE(330), + [sym_once] = STATE(330), + [sym_verbatim] = STATE(330), + [sym_stack] = STATE(330), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(330), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(330), + [sym_loop] = STATE(330), + [sym_loop_operator] = STATE(330), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(330), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(330), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(330), + [sym_text] = STATE(330), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5337), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5339), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [334] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -66776,844 +66062,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5393), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [334] = { - [sym__definition] = STATE(615), - [sym_comment] = STATE(615), - [sym_keyword] = STATE(615), - [sym_php_statement] = STATE(615), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(615), - [sym__inline_directive] = STATE(615), - [sym__nested_directive] = STATE(615), - [sym_fragment] = STATE(615), - [sym_section] = STATE(615), - [sym_inlineSection] = STATE(615), - [sym_once] = STATE(615), - [sym_verbatim] = STATE(615), - [sym_stack] = STATE(615), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(615), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(615), - [sym_loop] = STATE(615), - [sym_loop_operator] = STATE(615), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(615), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(615), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(615), - [sym_text] = STATE(615), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5395), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5341), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [335] = { - [sym__definition] = STATE(331), - [sym_comment] = STATE(331), - [sym_keyword] = STATE(331), - [sym_php_statement] = STATE(331), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(331), - [sym__inline_directive] = STATE(331), - [sym__nested_directive] = STATE(331), - [sym_fragment] = STATE(331), - [sym_section] = STATE(331), - [sym_inlineSection] = STATE(331), - [sym_once] = STATE(331), - [sym_verbatim] = STATE(331), - [sym_stack] = STATE(331), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(331), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(331), - [sym_loop] = STATE(331), - [sym_loop_operator] = STATE(331), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(331), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(331), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(331), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(331), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5397), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(332), + [sym_keyword] = STATE(332), + [sym_php_statement] = STATE(332), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(332), + [sym__inline_directive] = STATE(332), + [sym__nested_directive] = STATE(332), + [sym_fragment] = STATE(332), + [sym_section] = STATE(332), + [sym_inlineSection] = STATE(332), + [sym_once] = STATE(332), + [sym_verbatim] = STATE(332), + [sym_stack] = STATE(332), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(332), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(332), + [sym_loop] = STATE(332), + [sym_loop_operator] = STATE(332), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(332), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(332), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(332), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(332), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5343), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5345), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [336] = { - [sym__definition] = STATE(333), - [sym_comment] = STATE(333), - [sym_keyword] = STATE(333), - [sym_php_statement] = STATE(333), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(333), - [sym__inline_directive] = STATE(333), - [sym__nested_directive] = STATE(333), - [sym_fragment] = STATE(333), - [sym_section] = STATE(333), - [sym_inlineSection] = STATE(333), - [sym_once] = STATE(333), - [sym_verbatim] = STATE(333), - [sym_stack] = STATE(333), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(333), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(333), - [sym_loop] = STATE(333), - [sym_loop_operator] = STATE(333), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(333), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(333), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(333), - [sym_text] = STATE(333), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5399), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(334), + [sym_keyword] = STATE(334), + [sym_php_statement] = STATE(334), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(334), + [sym__inline_directive] = STATE(334), + [sym__nested_directive] = STATE(334), + [sym_fragment] = STATE(334), + [sym_section] = STATE(334), + [sym_inlineSection] = STATE(334), + [sym_once] = STATE(334), + [sym_verbatim] = STATE(334), + [sym_stack] = STATE(334), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(334), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(334), + [sym_loop] = STATE(334), + [sym_loop_operator] = STATE(334), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(334), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(334), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(334), + [sym_text] = STATE(334), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5347), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5349), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [337] = { - [sym__definition] = STATE(355), - [sym_comment] = STATE(355), - [sym_keyword] = STATE(355), - [sym_php_statement] = STATE(355), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(355), - [sym__inline_directive] = STATE(355), - [sym__nested_directive] = STATE(355), - [sym_fragment] = STATE(355), - [sym_section] = STATE(355), - [sym_inlineSection] = STATE(355), - [sym_once] = STATE(355), - [sym_verbatim] = STATE(355), - [sym_stack] = STATE(355), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(355), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(355), - [sym_loop] = STATE(355), - [sym_loop_operator] = STATE(355), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(355), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(355), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(355), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(355), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5375), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(353), + [sym_keyword] = STATE(353), + [sym_php_statement] = STATE(353), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(353), + [sym__inline_directive] = STATE(353), + [sym__nested_directive] = STATE(353), + [sym_fragment] = STATE(353), + [sym_section] = STATE(353), + [sym_inlineSection] = STATE(353), + [sym_once] = STATE(353), + [sym_verbatim] = STATE(353), + [sym_stack] = STATE(353), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(353), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(353), + [sym_loop] = STATE(353), + [sym_loop_operator] = STATE(353), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(353), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(353), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(353), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(353), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5351), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5313), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [338] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5401), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5353), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [339] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5403), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5355), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [340] = { [sym__definition] = STATE(338), - [sym_comment] = STATE(338), [sym_keyword] = STATE(338), [sym_php_statement] = STATE(338), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(338), [sym__inline_directive] = STATE(338), [sym__nested_directive] = STATE(338), @@ -67623,118 +66782,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(338), [sym_verbatim] = STATE(338), [sym_stack] = STATE(338), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(338), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(338), [sym_loop] = STATE(338), [sym_loop_operator] = STATE(338), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(338), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(338), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(338), [sym_text] = STATE(338), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5405), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5357), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5359), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [341] = { [sym__definition] = STATE(339), - [sym_comment] = STATE(339), [sym_keyword] = STATE(339), [sym_php_statement] = STATE(339), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(339), [sym__inline_directive] = STATE(339), [sym__nested_directive] = STATE(339), @@ -67744,239 +66902,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(339), [sym_verbatim] = STATE(339), [sym_stack] = STATE(339), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(339), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(339), [sym_loop] = STATE(339), [sym_loop_operator] = STATE(339), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(339), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(339), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(339), [sym_text] = STATE(339), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5407), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5361), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5363), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [342] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5409), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5365), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [343] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -67986,118 +67142,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5411), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5367), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [344] = { [sym__definition] = STATE(342), - [sym_comment] = STATE(342), [sym_keyword] = STATE(342), [sym_php_statement] = STATE(342), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(342), [sym__inline_directive] = STATE(342), [sym__nested_directive] = STATE(342), @@ -68107,239 +67262,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(342), [sym_verbatim] = STATE(342), [sym_stack] = STATE(342), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(342), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(342), [sym_loop] = STATE(342), [sym_loop_operator] = STATE(342), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(342), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(342), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(342), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(342), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5413), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5369), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5371), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [345] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5413), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(364), + [sym_keyword] = STATE(364), + [sym_php_statement] = STATE(364), + [sym__escaped] = STATE(3461), + [sym__unescaped] = STATE(3461), + [sym__raw] = STATE(3461), + [sym__inline_raw] = STATE(3461), + [sym__multi_line_raw] = STATE(3461), + [sym_attribute] = STATE(364), + [sym__inline_directive] = STATE(364), + [sym__nested_directive] = STATE(364), + [sym_fragment] = STATE(364), + [sym_section] = STATE(364), + [sym_inlineSection] = STATE(364), + [sym_once] = STATE(364), + [sym_verbatim] = STATE(364), + [sym_stack] = STATE(364), + [sym__push] = STATE(3319), + [sym__pushOnce] = STATE(3319), + [sym__pushIf] = STATE(3319), + [sym__prepend] = STATE(3319), + [sym__prependOnce] = STATE(3319), + [sym_conditional] = STATE(364), + [sym__if] = STATE(3420), + [sym__unless] = STATE(3420), + [sym__isset] = STATE(3420), + [sym__empty] = STATE(3420), + [sym__auth] = STATE(3420), + [sym__guest] = STATE(3420), + [sym__production] = STATE(3420), + [sym__env] = STATE(3420), + [sym__hasSection] = STATE(3420), + [sym__sectionMissing] = STATE(3420), + [sym__error] = STATE(3420), + [sym_authorization] = STATE(3420), + [sym__can] = STATE(3408), + [sym__cannot] = STATE(3408), + [sym__canany] = STATE(3408), + [sym__feature] = STATE(3420), + [sym__custom] = STATE(3420), + [sym_switch] = STATE(364), + [sym_loop] = STATE(364), + [sym_loop_operator] = STATE(364), + [sym__for] = STATE(3401), + [sym__foreach] = STATE(3401), + [sym__forelse] = STATE(3401), + [sym__while] = STATE(3401), + [sym_envoy] = STATE(364), + [sym__setup] = STATE(3461), + [sym__task] = STATE(3399), + [sym__story] = STATE(3399), + [sym__hooks] = STATE(3461), + [sym__before] = STATE(3461), + [sym__after] = STATE(3461), + [sym__envoy_error] = STATE(3461), + [sym__success] = STATE(3461), + [sym__finished] = STATE(3461), + [sym_livewire] = STATE(364), + [sym__persist] = STATE(3398), + [sym__teleport] = STATE(3398), + [sym__volt] = STATE(3398), + [aux_sym__directive_body] = STATE(364), + [sym_text] = STATE(364), + [sym__text] = STATE(987), + [aux_sym_php_only_repeat1] = STATE(987), + [sym_comment] = ACTIONS(5373), + [aux_sym_keyword_token1] = ACTIONS(5375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5379), + [anon_sym_ATphp] = ACTIONS(5381), + [aux_sym_attribute_token1] = ACTIONS(5383), + [aux_sym__inline_directive_token1] = ACTIONS(5385), + [anon_sym_ATfragment] = ACTIONS(5387), + [anon_sym_ATsection] = ACTIONS(5389), + [anon_sym_ATonce] = ACTIONS(5391), + [anon_sym_ATverbatim] = ACTIONS(5393), + [anon_sym_ATpush] = ACTIONS(5395), + [anon_sym_ATpushOnce] = ACTIONS(5397), + [anon_sym_ATendPushOnce] = ACTIONS(4609), + [anon_sym_ATpushIf] = ACTIONS(5399), + [anon_sym_ATprepend] = ACTIONS(5401), + [anon_sym_ATprependOnce] = ACTIONS(5403), + [anon_sym_ATif] = ACTIONS(5405), + [anon_sym_ATunless] = ACTIONS(5407), + [anon_sym_ATisset] = ACTIONS(5409), + [anon_sym_ATempty] = ACTIONS(5411), + [anon_sym_ATauth] = ACTIONS(5413), + [anon_sym_ATguest] = ACTIONS(5415), + [anon_sym_ATproduction] = ACTIONS(5417), + [anon_sym_ATenv] = ACTIONS(5419), + [anon_sym_AThasSection] = ACTIONS(5421), + [anon_sym_ATsectionMissing] = ACTIONS(5423), + [anon_sym_ATerror] = ACTIONS(5425), + [anon_sym_ATcan] = ACTIONS(5427), + [anon_sym_ATcannot] = ACTIONS(5429), + [anon_sym_ATcanany] = ACTIONS(5431), + [anon_sym_ATfeature] = ACTIONS(5433), + [aux_sym__custom_token1] = ACTIONS(5435), + [aux_sym__custom_token2] = ACTIONS(5437), + [anon_sym_ATswitch] = ACTIONS(5439), + [aux_sym_loop_operator_token1] = ACTIONS(5441), + [anon_sym_ATfor] = ACTIONS(5443), + [anon_sym_ATforeach] = ACTIONS(5445), + [anon_sym_ATforelse] = ACTIONS(5447), + [anon_sym_ATwhile] = ACTIONS(5449), + [anon_sym_ATsetup] = ACTIONS(5451), + [anon_sym_ATtask] = ACTIONS(5453), + [anon_sym_ATstory] = ACTIONS(5455), + [anon_sym_ATbefore] = ACTIONS(5457), + [anon_sym_ATafter] = ACTIONS(5459), + [anon_sym_ATsuccess] = ACTIONS(5461), + [anon_sym_ATfinished] = ACTIONS(5463), + [anon_sym_ATpersist] = ACTIONS(5465), + [anon_sym_ATteleport] = ACTIONS(5467), + [anon_sym_ATvolt] = ACTIONS(5469), + [aux_sym__text_token1] = ACTIONS(5471), + [aux_sym__text_token2] = ACTIONS(5471), + [aux_sym__text_token3] = ACTIONS(5473), }, [346] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5371), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [347] = { [sym__definition] = STATE(343), - [sym_comment] = STATE(343), [sym_keyword] = STATE(343), [sym_php_statement] = STATE(343), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(343), [sym__inline_directive] = STATE(343), [sym__nested_directive] = STATE(343), @@ -68349,118 +67622,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(343), [sym_verbatim] = STATE(343), [sym_stack] = STATE(343), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(343), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(343), [sym_loop] = STATE(343), [sym_loop_operator] = STATE(343), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(343), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(343), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(343), [sym_text] = STATE(343), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5415), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5475), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5477), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [347] = { + [348] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -68470,360 +67742,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5417), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [348] = { - [sym__definition] = STATE(345), - [sym_comment] = STATE(345), - [sym_keyword] = STATE(345), - [sym_php_statement] = STATE(345), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(345), - [sym__inline_directive] = STATE(345), - [sym__nested_directive] = STATE(345), - [sym_fragment] = STATE(345), - [sym_section] = STATE(345), - [sym_inlineSection] = STATE(345), - [sym_once] = STATE(345), - [sym_verbatim] = STATE(345), - [sym_stack] = STATE(345), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(345), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(345), - [sym_loop] = STATE(345), - [sym_loop_operator] = STATE(345), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(345), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(345), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(345), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(345), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5419), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5479), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [349] = { - [sym__definition] = STATE(347), - [sym_comment] = STATE(347), - [sym_keyword] = STATE(347), - [sym_php_statement] = STATE(347), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(347), - [sym__inline_directive] = STATE(347), - [sym__nested_directive] = STATE(347), - [sym_fragment] = STATE(347), - [sym_section] = STATE(347), - [sym_inlineSection] = STATE(347), - [sym_once] = STATE(347), - [sym_verbatim] = STATE(347), - [sym_stack] = STATE(347), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(347), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(347), - [sym_loop] = STATE(347), - [sym_loop_operator] = STATE(347), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(347), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(347), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(347), - [sym_text] = STATE(347), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5421), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [350] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -68833,1086 +67862,1197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5423), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5481), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [350] = { + [sym__definition] = STATE(350), + [sym_keyword] = STATE(350), + [sym_php_statement] = STATE(350), + [sym__escaped] = STATE(2024), + [sym__unescaped] = STATE(2024), + [sym__raw] = STATE(2024), + [sym__inline_raw] = STATE(2024), + [sym__multi_line_raw] = STATE(2024), + [sym_attribute] = STATE(350), + [sym__inline_directive] = STATE(350), + [sym__nested_directive] = STATE(350), + [sym_fragment] = STATE(350), + [sym_section] = STATE(350), + [sym_inlineSection] = STATE(350), + [sym_once] = STATE(350), + [sym_verbatim] = STATE(350), + [sym_stack] = STATE(350), + [sym__push] = STATE(2023), + [sym__pushOnce] = STATE(2023), + [sym__pushIf] = STATE(2023), + [sym__prepend] = STATE(2023), + [sym__prependOnce] = STATE(2023), + [sym_conditional] = STATE(350), + [sym__if] = STATE(2022), + [sym__unless] = STATE(2022), + [sym__isset] = STATE(2022), + [sym__empty] = STATE(2022), + [sym__auth] = STATE(2022), + [sym__guest] = STATE(2022), + [sym__production] = STATE(2022), + [sym__env] = STATE(2022), + [sym__hasSection] = STATE(2022), + [sym__sectionMissing] = STATE(2022), + [sym__error] = STATE(2022), + [sym_authorization] = STATE(2022), + [sym__can] = STATE(2021), + [sym__cannot] = STATE(2021), + [sym__canany] = STATE(2021), + [sym__feature] = STATE(2022), + [sym__custom] = STATE(2022), + [sym_switch] = STATE(350), + [sym_loop] = STATE(350), + [sym_loop_operator] = STATE(350), + [sym__for] = STATE(2020), + [sym__foreach] = STATE(2020), + [sym__forelse] = STATE(2020), + [sym__while] = STATE(2020), + [sym_envoy] = STATE(350), + [sym__setup] = STATE(2024), + [sym__task] = STATE(2019), + [sym__story] = STATE(2019), + [sym__hooks] = STATE(2024), + [sym__before] = STATE(2024), + [sym__after] = STATE(2024), + [sym__envoy_error] = STATE(2024), + [sym__success] = STATE(2024), + [sym__finished] = STATE(2024), + [sym_livewire] = STATE(350), + [sym__persist] = STATE(2018), + [sym__teleport] = STATE(2018), + [sym__volt] = STATE(2018), + [aux_sym__directive_body] = STATE(350), + [sym_text] = STATE(350), + [sym__text] = STATE(1258), + [aux_sym_php_only_repeat1] = STATE(1258), + [sym_comment] = ACTIONS(5483), + [aux_sym_keyword_token1] = ACTIONS(5486), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5489), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5492), + [anon_sym_ATphp] = ACTIONS(5495), + [aux_sym_attribute_token1] = ACTIONS(5498), + [aux_sym__inline_directive_token1] = ACTIONS(5501), + [anon_sym_ATfragment] = ACTIONS(5504), + [anon_sym_ATsection] = ACTIONS(5507), + [anon_sym_ATonce] = ACTIONS(5510), + [anon_sym_ATverbatim] = ACTIONS(5513), + [anon_sym_ATpush] = ACTIONS(5516), + [anon_sym_ATpushOnce] = ACTIONS(5519), + [anon_sym_ATpushIf] = ACTIONS(5522), + [anon_sym_ATprepend] = ACTIONS(5525), + [anon_sym_ATprependOnce] = ACTIONS(5528), + [anon_sym_ATendPrependOnce] = ACTIONS(5035), + [anon_sym_ATif] = ACTIONS(5531), + [anon_sym_ATunless] = ACTIONS(5534), + [anon_sym_ATisset] = ACTIONS(5537), + [anon_sym_ATempty] = ACTIONS(5540), + [anon_sym_ATauth] = ACTIONS(5543), + [anon_sym_ATguest] = ACTIONS(5546), + [anon_sym_ATproduction] = ACTIONS(5549), + [anon_sym_ATenv] = ACTIONS(5552), + [anon_sym_AThasSection] = ACTIONS(5555), + [anon_sym_ATsectionMissing] = ACTIONS(5558), + [anon_sym_ATerror] = ACTIONS(5561), + [anon_sym_ATcan] = ACTIONS(5564), + [anon_sym_ATcannot] = ACTIONS(5567), + [anon_sym_ATcanany] = ACTIONS(5570), + [anon_sym_ATfeature] = ACTIONS(5573), + [aux_sym__custom_token1] = ACTIONS(5576), + [aux_sym__custom_token2] = ACTIONS(5579), + [anon_sym_ATswitch] = ACTIONS(5582), + [aux_sym_loop_operator_token1] = ACTIONS(5585), + [anon_sym_ATfor] = ACTIONS(5588), + [anon_sym_ATforeach] = ACTIONS(5591), + [anon_sym_ATforelse] = ACTIONS(5594), + [anon_sym_ATwhile] = ACTIONS(5597), + [anon_sym_ATsetup] = ACTIONS(5600), + [anon_sym_ATtask] = ACTIONS(5603), + [anon_sym_ATstory] = ACTIONS(5606), + [anon_sym_ATbefore] = ACTIONS(5609), + [anon_sym_ATafter] = ACTIONS(5612), + [anon_sym_ATsuccess] = ACTIONS(5615), + [anon_sym_ATfinished] = ACTIONS(5618), + [anon_sym_ATpersist] = ACTIONS(5621), + [anon_sym_ATteleport] = ACTIONS(5624), + [anon_sym_ATvolt] = ACTIONS(5627), + [aux_sym__text_token1] = ACTIONS(5630), + [aux_sym__text_token2] = ACTIONS(5630), + [aux_sym__text_token3] = ACTIONS(5633), }, [351] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5425), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(346), + [sym_keyword] = STATE(346), + [sym_php_statement] = STATE(346), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(346), + [sym__inline_directive] = STATE(346), + [sym__nested_directive] = STATE(346), + [sym_fragment] = STATE(346), + [sym_section] = STATE(346), + [sym_inlineSection] = STATE(346), + [sym_once] = STATE(346), + [sym_verbatim] = STATE(346), + [sym_stack] = STATE(346), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(346), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(346), + [sym_loop] = STATE(346), + [sym_loop_operator] = STATE(346), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(346), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(346), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(346), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(346), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5636), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5638), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [352] = { - [sym__definition] = STATE(372), - [sym_comment] = STATE(372), - [sym_keyword] = STATE(372), - [sym_php_statement] = STATE(372), - [sym__escaped] = STATE(3404), - [sym__unescaped] = STATE(3404), - [sym__raw] = STATE(3404), - [sym__inline_raw] = STATE(3404), - [sym__multi_line_raw] = STATE(3404), - [sym_attribute] = STATE(372), - [sym__inline_directive] = STATE(372), - [sym__nested_directive] = STATE(372), - [sym_fragment] = STATE(372), - [sym_section] = STATE(372), - [sym_inlineSection] = STATE(372), - [sym_once] = STATE(372), - [sym_verbatim] = STATE(372), - [sym_stack] = STATE(372), - [sym__push] = STATE(3403), - [sym__pushOnce] = STATE(3403), - [sym__pushIf] = STATE(3403), - [sym__prepend] = STATE(3403), - [sym__prependOnce] = STATE(3403), - [sym_conditional] = STATE(372), - [sym__if] = STATE(3401), - [sym__unless] = STATE(3401), - [sym__isset] = STATE(3401), - [sym__empty] = STATE(3401), - [sym__auth] = STATE(3401), - [sym__guest] = STATE(3401), - [sym__production] = STATE(3401), - [sym__env] = STATE(3401), - [sym__hasSection] = STATE(3401), - [sym__sectionMissing] = STATE(3401), - [sym__error] = STATE(3401), - [sym_authorization] = STATE(3401), - [sym__can] = STATE(3399), - [sym__cannot] = STATE(3399), - [sym__canany] = STATE(3399), - [sym__feature] = STATE(3401), - [sym__custom] = STATE(3401), - [sym_switch] = STATE(372), - [sym_loop] = STATE(372), - [sym_loop_operator] = STATE(372), - [sym__for] = STATE(3397), - [sym__foreach] = STATE(3397), - [sym__forelse] = STATE(3397), - [sym__while] = STATE(3397), - [sym_envoy] = STATE(372), - [sym__setup] = STATE(3404), - [sym__task] = STATE(3243), - [sym__story] = STATE(3243), - [sym__hooks] = STATE(3404), - [sym__before] = STATE(3404), - [sym__after] = STATE(3404), - [sym__envoy_error] = STATE(3404), - [sym__success] = STATE(3404), - [sym__finished] = STATE(3404), - [sym_livewire] = STATE(372), - [sym__persist] = STATE(3367), - [sym__teleport] = STATE(3367), - [sym__volt] = STATE(3367), - [aux_sym__directive_body] = STATE(372), - [sym_text] = STATE(372), - [sym__text] = STATE(1100), - [aux_sym_php_only_repeat1] = STATE(1100), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5427), - [aux_sym_keyword_token1] = ACTIONS(5429), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5431), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5433), - [anon_sym_ATphp] = ACTIONS(5435), - [aux_sym_attribute_token1] = ACTIONS(5437), - [aux_sym__inline_directive_token1] = ACTIONS(5439), - [anon_sym_ATfragment] = ACTIONS(5441), - [anon_sym_ATsection] = ACTIONS(5443), - [anon_sym_ATonce] = ACTIONS(5445), - [anon_sym_ATverbatim] = ACTIONS(5447), - [anon_sym_ATpush] = ACTIONS(5449), - [anon_sym_ATpushOnce] = ACTIONS(5451), - [anon_sym_ATendPushOnce] = ACTIONS(4712), - [anon_sym_ATpushIf] = ACTIONS(5453), - [anon_sym_ATprepend] = ACTIONS(5455), - [anon_sym_ATprependOnce] = ACTIONS(5457), - [anon_sym_ATif] = ACTIONS(5459), - [anon_sym_ATunless] = ACTIONS(5461), - [anon_sym_ATisset] = ACTIONS(5463), - [anon_sym_ATempty] = ACTIONS(5465), - [anon_sym_ATauth] = ACTIONS(5467), - [anon_sym_ATguest] = ACTIONS(5469), - [anon_sym_ATproduction] = ACTIONS(5471), - [anon_sym_ATenv] = ACTIONS(5473), - [anon_sym_AThasSection] = ACTIONS(5475), - [anon_sym_ATsectionMissing] = ACTIONS(5477), - [anon_sym_ATerror] = ACTIONS(5479), - [anon_sym_ATcan] = ACTIONS(5481), - [anon_sym_ATcannot] = ACTIONS(5483), - [anon_sym_ATcanany] = ACTIONS(5485), - [anon_sym_ATfeature] = ACTIONS(5487), - [aux_sym__custom_token1] = ACTIONS(5489), - [aux_sym__custom_token2] = ACTIONS(5491), - [anon_sym_ATswitch] = ACTIONS(5493), - [aux_sym_loop_operator_token1] = ACTIONS(5495), - [anon_sym_ATfor] = ACTIONS(5497), - [anon_sym_ATforeach] = ACTIONS(5499), - [anon_sym_ATforelse] = ACTIONS(5501), - [anon_sym_ATwhile] = ACTIONS(5503), - [anon_sym_ATsetup] = ACTIONS(5505), - [anon_sym_ATtask] = ACTIONS(5507), - [anon_sym_ATstory] = ACTIONS(5509), - [anon_sym_ATbefore] = ACTIONS(5511), - [anon_sym_ATafter] = ACTIONS(5513), - [anon_sym_ATsuccess] = ACTIONS(5515), - [anon_sym_ATfinished] = ACTIONS(5517), - [anon_sym_ATpersist] = ACTIONS(5519), - [anon_sym_ATteleport] = ACTIONS(5521), - [anon_sym_ATvolt] = ACTIONS(5523), - [aux_sym__text_token1] = ACTIONS(5525), - [aux_sym__text_token2] = ACTIONS(5525), - [aux_sym__text_token3] = ACTIONS(5527), + [sym__definition] = STATE(349), + [sym_keyword] = STATE(349), + [sym_php_statement] = STATE(349), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(349), + [sym__inline_directive] = STATE(349), + [sym__nested_directive] = STATE(349), + [sym_fragment] = STATE(349), + [sym_section] = STATE(349), + [sym_inlineSection] = STATE(349), + [sym_once] = STATE(349), + [sym_verbatim] = STATE(349), + [sym_stack] = STATE(349), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(349), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(349), + [sym_loop] = STATE(349), + [sym_loop_operator] = STATE(349), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(349), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(349), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(349), + [sym_text] = STATE(349), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5640), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5642), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [353] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5529), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5644), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [354] = { - [sym__definition] = STATE(351), - [sym_comment] = STATE(351), - [sym_keyword] = STATE(351), - [sym_php_statement] = STATE(351), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(351), - [sym__inline_directive] = STATE(351), - [sym__nested_directive] = STATE(351), - [sym_fragment] = STATE(351), - [sym_section] = STATE(351), - [sym_inlineSection] = STATE(351), - [sym_once] = STATE(351), - [sym_verbatim] = STATE(351), - [sym_stack] = STATE(351), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(351), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(351), - [sym_loop] = STATE(351), - [sym_loop_operator] = STATE(351), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(351), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(351), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(351), - [sym_text] = STATE(351), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5531), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5646), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [355] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5533), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5648), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [356] = { - [sym__definition] = STATE(353), - [sym_comment] = STATE(353), - [sym_keyword] = STATE(353), - [sym_php_statement] = STATE(353), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(353), - [sym__inline_directive] = STATE(353), - [sym__nested_directive] = STATE(353), - [sym_fragment] = STATE(353), - [sym_section] = STATE(353), - [sym_inlineSection] = STATE(353), - [sym_once] = STATE(353), - [sym_verbatim] = STATE(353), - [sym_stack] = STATE(353), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(353), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(353), - [sym_loop] = STATE(353), - [sym_loop_operator] = STATE(353), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(353), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(353), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(353), - [sym_text] = STATE(353), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5535), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(354), + [sym_keyword] = STATE(354), + [sym_php_statement] = STATE(354), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(354), + [sym__inline_directive] = STATE(354), + [sym__nested_directive] = STATE(354), + [sym_fragment] = STATE(354), + [sym_section] = STATE(354), + [sym_inlineSection] = STATE(354), + [sym_once] = STATE(354), + [sym_verbatim] = STATE(354), + [sym_stack] = STATE(354), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(354), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(354), + [sym_loop] = STATE(354), + [sym_loop_operator] = STATE(354), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(354), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(354), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(354), + [sym_text] = STATE(354), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5650), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5652), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [357] = { - [sym__definition] = STATE(430), - [sym_comment] = STATE(430), - [sym_keyword] = STATE(430), - [sym_php_statement] = STATE(430), - [sym__escaped] = STATE(2307), - [sym__unescaped] = STATE(2307), - [sym__raw] = STATE(2307), - [sym__inline_raw] = STATE(2307), - [sym__multi_line_raw] = STATE(2307), - [sym_attribute] = STATE(430), - [sym__inline_directive] = STATE(430), - [sym__nested_directive] = STATE(430), - [sym_fragment] = STATE(430), - [sym_section] = STATE(430), - [sym_inlineSection] = STATE(430), - [sym_once] = STATE(430), - [sym_verbatim] = STATE(430), - [sym_stack] = STATE(430), - [sym__push] = STATE(2308), - [sym__pushOnce] = STATE(2308), - [sym__pushIf] = STATE(2308), - [sym__prepend] = STATE(2308), - [sym__prependOnce] = STATE(2308), - [sym_conditional] = STATE(430), - [sym__if] = STATE(2309), - [sym__unless] = STATE(2309), - [sym__isset] = STATE(2309), - [sym__empty] = STATE(2309), - [sym__auth] = STATE(2309), - [sym__guest] = STATE(2309), - [sym__production] = STATE(2309), - [sym__env] = STATE(2309), - [sym__hasSection] = STATE(2309), - [sym__sectionMissing] = STATE(2309), - [sym__error] = STATE(2309), - [sym_authorization] = STATE(2309), - [sym__can] = STATE(2310), - [sym__cannot] = STATE(2310), - [sym__canany] = STATE(2310), - [sym__feature] = STATE(2309), - [sym__custom] = STATE(2309), - [sym_switch] = STATE(430), - [sym_loop] = STATE(430), - [sym_loop_operator] = STATE(430), - [sym__for] = STATE(2311), - [sym__foreach] = STATE(2311), - [sym__forelse] = STATE(2311), - [sym__while] = STATE(2311), - [sym_envoy] = STATE(430), - [sym__setup] = STATE(2307), - [sym__task] = STATE(2312), - [sym__story] = STATE(2312), - [sym__hooks] = STATE(2307), - [sym__before] = STATE(2307), - [sym__after] = STATE(2307), - [sym__envoy_error] = STATE(2307), - [sym__success] = STATE(2307), - [sym__finished] = STATE(2307), - [sym_livewire] = STATE(430), - [sym__persist] = STATE(2313), - [sym__teleport] = STATE(2313), - [sym__volt] = STATE(2313), - [aux_sym__directive_body] = STATE(430), - [sym_text] = STATE(430), - [sym__text] = STATE(984), - [aux_sym_php_only_repeat1] = STATE(984), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5537), - [aux_sym_keyword_token1] = ACTIONS(5539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5541), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5543), - [anon_sym_ATphp] = ACTIONS(5545), - [aux_sym_attribute_token1] = ACTIONS(5547), - [aux_sym__inline_directive_token1] = ACTIONS(5549), - [anon_sym_ATfragment] = ACTIONS(5551), - [anon_sym_ATsection] = ACTIONS(5553), - [anon_sym_ATonce] = ACTIONS(5555), - [anon_sym_ATverbatim] = ACTIONS(5557), - [anon_sym_ATpush] = ACTIONS(5559), - [anon_sym_ATpushOnce] = ACTIONS(5561), - [anon_sym_ATpushIf] = ACTIONS(5563), - [anon_sym_ATprepend] = ACTIONS(5565), - [anon_sym_ATprependOnce] = ACTIONS(5567), - [anon_sym_ATif] = ACTIONS(5569), - [anon_sym_ATunless] = ACTIONS(5571), - [anon_sym_ATisset] = ACTIONS(5573), - [anon_sym_ATempty] = ACTIONS(5575), - [anon_sym_ATauth] = ACTIONS(5577), - [anon_sym_ATguest] = ACTIONS(5579), - [anon_sym_ATproduction] = ACTIONS(5581), - [anon_sym_ATenv] = ACTIONS(5583), - [anon_sym_AThasSection] = ACTIONS(5585), - [anon_sym_ATsectionMissing] = ACTIONS(5587), - [anon_sym_ATerror] = ACTIONS(5589), - [anon_sym_ATcan] = ACTIONS(5591), - [anon_sym_ATcannot] = ACTIONS(5593), - [anon_sym_ATcanany] = ACTIONS(5595), - [anon_sym_ATfeature] = ACTIONS(5597), - [aux_sym__custom_token1] = ACTIONS(5599), - [aux_sym__custom_token2] = ACTIONS(5601), - [anon_sym_ATswitch] = ACTIONS(5603), - [aux_sym_loop_operator_token1] = ACTIONS(5605), - [anon_sym_ATfor] = ACTIONS(5607), - [anon_sym_ATforeach] = ACTIONS(5609), - [anon_sym_ATendforeach] = ACTIONS(4712), - [anon_sym_ATforelse] = ACTIONS(5611), - [anon_sym_ATwhile] = ACTIONS(5613), - [anon_sym_ATsetup] = ACTIONS(5615), - [anon_sym_ATtask] = ACTIONS(5617), - [anon_sym_ATstory] = ACTIONS(5619), - [anon_sym_ATbefore] = ACTIONS(5621), - [anon_sym_ATafter] = ACTIONS(5623), - [anon_sym_ATsuccess] = ACTIONS(5625), - [anon_sym_ATfinished] = ACTIONS(5627), - [anon_sym_ATpersist] = ACTIONS(5629), - [anon_sym_ATteleport] = ACTIONS(5631), - [anon_sym_ATvolt] = ACTIONS(5633), - [aux_sym__text_token1] = ACTIONS(5635), - [aux_sym__text_token2] = ACTIONS(5635), - [aux_sym__text_token3] = ACTIONS(5637), + [sym__definition] = STATE(355), + [sym_keyword] = STATE(355), + [sym_php_statement] = STATE(355), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(355), + [sym__inline_directive] = STATE(355), + [sym__nested_directive] = STATE(355), + [sym_fragment] = STATE(355), + [sym_section] = STATE(355), + [sym_inlineSection] = STATE(355), + [sym_once] = STATE(355), + [sym_verbatim] = STATE(355), + [sym_stack] = STATE(355), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(355), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(355), + [sym_loop] = STATE(355), + [sym_loop_operator] = STATE(355), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(355), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(355), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(355), + [sym_text] = STATE(355), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5654), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5656), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [358] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5639), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5658), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [359] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -69922,118 +69062,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5641), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5660), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [360] = { [sym__definition] = STATE(358), - [sym_comment] = STATE(358), [sym_keyword] = STATE(358), [sym_php_statement] = STATE(358), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(358), [sym__inline_directive] = STATE(358), [sym__nested_directive] = STATE(358), @@ -70043,239 +69182,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(358), [sym_verbatim] = STATE(358), [sym_stack] = STATE(358), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(358), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(358), [sym_loop] = STATE(358), [sym_loop_operator] = STATE(358), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(358), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(358), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(358), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(358), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5643), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5662), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5664), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [361] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5643), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5664), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [362] = { [sym__definition] = STATE(359), - [sym_comment] = STATE(359), [sym_keyword] = STATE(359), [sym_php_statement] = STATE(359), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(359), [sym__inline_directive] = STATE(359), [sym__nested_directive] = STATE(359), @@ -70285,118 +69422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(359), [sym_verbatim] = STATE(359), [sym_stack] = STATE(359), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(359), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(359), [sym_loop] = STATE(359), [sym_loop_operator] = STATE(359), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(359), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(359), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(359), [sym_text] = STATE(359), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5645), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5666), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5668), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [363] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -70406,118 +69542,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5647), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5670), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [364] = { + [sym__definition] = STATE(554), + [sym_keyword] = STATE(554), + [sym_php_statement] = STATE(554), + [sym__escaped] = STATE(3461), + [sym__unescaped] = STATE(3461), + [sym__raw] = STATE(3461), + [sym__inline_raw] = STATE(3461), + [sym__multi_line_raw] = STATE(3461), + [sym_attribute] = STATE(554), + [sym__inline_directive] = STATE(554), + [sym__nested_directive] = STATE(554), + [sym_fragment] = STATE(554), + [sym_section] = STATE(554), + [sym_inlineSection] = STATE(554), + [sym_once] = STATE(554), + [sym_verbatim] = STATE(554), + [sym_stack] = STATE(554), + [sym__push] = STATE(3319), + [sym__pushOnce] = STATE(3319), + [sym__pushIf] = STATE(3319), + [sym__prepend] = STATE(3319), + [sym__prependOnce] = STATE(3319), + [sym_conditional] = STATE(554), + [sym__if] = STATE(3420), + [sym__unless] = STATE(3420), + [sym__isset] = STATE(3420), + [sym__empty] = STATE(3420), + [sym__auth] = STATE(3420), + [sym__guest] = STATE(3420), + [sym__production] = STATE(3420), + [sym__env] = STATE(3420), + [sym__hasSection] = STATE(3420), + [sym__sectionMissing] = STATE(3420), + [sym__error] = STATE(3420), + [sym_authorization] = STATE(3420), + [sym__can] = STATE(3408), + [sym__cannot] = STATE(3408), + [sym__canany] = STATE(3408), + [sym__feature] = STATE(3420), + [sym__custom] = STATE(3420), + [sym_switch] = STATE(554), + [sym_loop] = STATE(554), + [sym_loop_operator] = STATE(554), + [sym__for] = STATE(3401), + [sym__foreach] = STATE(3401), + [sym__forelse] = STATE(3401), + [sym__while] = STATE(3401), + [sym_envoy] = STATE(554), + [sym__setup] = STATE(3461), + [sym__task] = STATE(3399), + [sym__story] = STATE(3399), + [sym__hooks] = STATE(3461), + [sym__before] = STATE(3461), + [sym__after] = STATE(3461), + [sym__envoy_error] = STATE(3461), + [sym__success] = STATE(3461), + [sym__finished] = STATE(3461), + [sym_livewire] = STATE(554), + [sym__persist] = STATE(3398), + [sym__teleport] = STATE(3398), + [sym__volt] = STATE(3398), + [aux_sym__directive_body] = STATE(554), + [sym_text] = STATE(554), + [sym__text] = STATE(987), + [aux_sym_php_only_repeat1] = STATE(987), + [sym_comment] = ACTIONS(5672), + [aux_sym_keyword_token1] = ACTIONS(5375), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5377), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5379), + [anon_sym_ATphp] = ACTIONS(5381), + [aux_sym_attribute_token1] = ACTIONS(5383), + [aux_sym__inline_directive_token1] = ACTIONS(5385), + [anon_sym_ATfragment] = ACTIONS(5387), + [anon_sym_ATsection] = ACTIONS(5389), + [anon_sym_ATonce] = ACTIONS(5391), + [anon_sym_ATverbatim] = ACTIONS(5393), + [anon_sym_ATpush] = ACTIONS(5395), + [anon_sym_ATpushOnce] = ACTIONS(5397), + [anon_sym_ATendPushOnce] = ACTIONS(4996), + [anon_sym_ATpushIf] = ACTIONS(5399), + [anon_sym_ATprepend] = ACTIONS(5401), + [anon_sym_ATprependOnce] = ACTIONS(5403), + [anon_sym_ATif] = ACTIONS(5405), + [anon_sym_ATunless] = ACTIONS(5407), + [anon_sym_ATisset] = ACTIONS(5409), + [anon_sym_ATempty] = ACTIONS(5411), + [anon_sym_ATauth] = ACTIONS(5413), + [anon_sym_ATguest] = ACTIONS(5415), + [anon_sym_ATproduction] = ACTIONS(5417), + [anon_sym_ATenv] = ACTIONS(5419), + [anon_sym_AThasSection] = ACTIONS(5421), + [anon_sym_ATsectionMissing] = ACTIONS(5423), + [anon_sym_ATerror] = ACTIONS(5425), + [anon_sym_ATcan] = ACTIONS(5427), + [anon_sym_ATcannot] = ACTIONS(5429), + [anon_sym_ATcanany] = ACTIONS(5431), + [anon_sym_ATfeature] = ACTIONS(5433), + [aux_sym__custom_token1] = ACTIONS(5435), + [aux_sym__custom_token2] = ACTIONS(5437), + [anon_sym_ATswitch] = ACTIONS(5439), + [aux_sym_loop_operator_token1] = ACTIONS(5441), + [anon_sym_ATfor] = ACTIONS(5443), + [anon_sym_ATforeach] = ACTIONS(5445), + [anon_sym_ATforelse] = ACTIONS(5447), + [anon_sym_ATwhile] = ACTIONS(5449), + [anon_sym_ATsetup] = ACTIONS(5451), + [anon_sym_ATtask] = ACTIONS(5453), + [anon_sym_ATstory] = ACTIONS(5455), + [anon_sym_ATbefore] = ACTIONS(5457), + [anon_sym_ATafter] = ACTIONS(5459), + [anon_sym_ATsuccess] = ACTIONS(5461), + [anon_sym_ATfinished] = ACTIONS(5463), + [anon_sym_ATpersist] = ACTIONS(5465), + [anon_sym_ATteleport] = ACTIONS(5467), + [anon_sym_ATvolt] = ACTIONS(5469), + [aux_sym__text_token1] = ACTIONS(5471), + [aux_sym__text_token2] = ACTIONS(5471), + [aux_sym__text_token3] = ACTIONS(5473), + }, + [365] = { [sym__definition] = STATE(361), - [sym_comment] = STATE(361), [sym_keyword] = STATE(361), [sym_php_statement] = STATE(361), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(361), [sym__inline_directive] = STATE(361), [sym__nested_directive] = STATE(361), @@ -70527,118 +69782,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(361), [sym_verbatim] = STATE(361), [sym_stack] = STATE(361), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(361), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(361), [sym_loop] = STATE(361), [sym_loop_operator] = STATE(361), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(361), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(361), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(361), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(361), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5649), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5674), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5676), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, - [365] = { + [366] = { + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(1993), + [sym__unescaped] = STATE(1993), + [sym__raw] = STATE(1993), + [sym__inline_raw] = STATE(1993), + [sym__multi_line_raw] = STATE(1993), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(2111), + [sym__pushOnce] = STATE(2111), + [sym__pushIf] = STATE(2111), + [sym__prepend] = STATE(2111), + [sym__prependOnce] = STATE(2111), + [sym_conditional] = STATE(366), + [sym__if] = STATE(2008), + [sym__unless] = STATE(2008), + [sym__isset] = STATE(2008), + [sym__empty] = STATE(2008), + [sym__auth] = STATE(2008), + [sym__guest] = STATE(2008), + [sym__production] = STATE(2008), + [sym__env] = STATE(2008), + [sym__hasSection] = STATE(2008), + [sym__sectionMissing] = STATE(2008), + [sym__error] = STATE(2008), + [sym_authorization] = STATE(2008), + [sym__can] = STATE(2011), + [sym__cannot] = STATE(2011), + [sym__canany] = STATE(2011), + [sym__feature] = STATE(2008), + [sym__custom] = STATE(2008), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(2025), + [sym__foreach] = STATE(2025), + [sym__forelse] = STATE(2025), + [sym__while] = STATE(2025), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(1993), + [sym__task] = STATE(2065), + [sym__story] = STATE(2065), + [sym__hooks] = STATE(1993), + [sym__before] = STATE(1993), + [sym__after] = STATE(1993), + [sym__envoy_error] = STATE(1993), + [sym__success] = STATE(1993), + [sym__finished] = STATE(1993), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(2070), + [sym__teleport] = STATE(2070), + [sym__volt] = STATE(2070), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(1106), + [aux_sym_php_only_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(5678), + [aux_sym_keyword_token1] = ACTIONS(5681), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5684), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5687), + [anon_sym_ATphp] = ACTIONS(5690), + [aux_sym_attribute_token1] = ACTIONS(5693), + [aux_sym__inline_directive_token1] = ACTIONS(5696), + [anon_sym_ATfragment] = ACTIONS(5699), + [anon_sym_ATendfragment] = ACTIONS(5035), + [anon_sym_ATsection] = ACTIONS(5702), + [anon_sym_ATonce] = ACTIONS(5705), + [anon_sym_ATverbatim] = ACTIONS(5708), + [anon_sym_ATpush] = ACTIONS(5711), + [anon_sym_ATpushOnce] = ACTIONS(5714), + [anon_sym_ATpushIf] = ACTIONS(5717), + [anon_sym_ATprepend] = ACTIONS(5720), + [anon_sym_ATprependOnce] = ACTIONS(5723), + [anon_sym_ATif] = ACTIONS(5726), + [anon_sym_ATunless] = ACTIONS(5729), + [anon_sym_ATisset] = ACTIONS(5732), + [anon_sym_ATempty] = ACTIONS(5735), + [anon_sym_ATauth] = ACTIONS(5738), + [anon_sym_ATguest] = ACTIONS(5741), + [anon_sym_ATproduction] = ACTIONS(5744), + [anon_sym_ATenv] = ACTIONS(5747), + [anon_sym_AThasSection] = ACTIONS(5750), + [anon_sym_ATsectionMissing] = ACTIONS(5753), + [anon_sym_ATerror] = ACTIONS(5756), + [anon_sym_ATcan] = ACTIONS(5759), + [anon_sym_ATcannot] = ACTIONS(5762), + [anon_sym_ATcanany] = ACTIONS(5765), + [anon_sym_ATfeature] = ACTIONS(5768), + [aux_sym__custom_token1] = ACTIONS(5771), + [aux_sym__custom_token2] = ACTIONS(5774), + [anon_sym_ATswitch] = ACTIONS(5777), + [aux_sym_loop_operator_token1] = ACTIONS(5780), + [anon_sym_ATfor] = ACTIONS(5783), + [anon_sym_ATforeach] = ACTIONS(5786), + [anon_sym_ATforelse] = ACTIONS(5789), + [anon_sym_ATwhile] = ACTIONS(5792), + [anon_sym_ATsetup] = ACTIONS(5795), + [anon_sym_ATtask] = ACTIONS(5798), + [anon_sym_ATstory] = ACTIONS(5801), + [anon_sym_ATbefore] = ACTIONS(5804), + [anon_sym_ATafter] = ACTIONS(5807), + [anon_sym_ATsuccess] = ACTIONS(5810), + [anon_sym_ATfinished] = ACTIONS(5813), + [anon_sym_ATpersist] = ACTIONS(5816), + [anon_sym_ATteleport] = ACTIONS(5819), + [anon_sym_ATvolt] = ACTIONS(5822), + [aux_sym__text_token1] = ACTIONS(5825), + [aux_sym__text_token2] = ACTIONS(5825), + [aux_sym__text_token3] = ACTIONS(5828), + }, + [367] = { [sym__definition] = STATE(363), - [sym_comment] = STATE(363), [sym_keyword] = STATE(363), [sym_php_statement] = STATE(363), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(363), [sym__inline_directive] = STATE(363), [sym__nested_directive] = STATE(363), @@ -70648,965 +70022,957 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(363), [sym_verbatim] = STATE(363), [sym_stack] = STATE(363), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(363), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(363), [sym_loop] = STATE(363), [sym_loop_operator] = STATE(363), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(363), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(363), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(363), [sym_text] = STATE(363), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5651), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [366] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5653), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [367] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5655), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5831), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5833), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [368] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5657), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5835), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [369] = { - [sym__definition] = STATE(367), - [sym_comment] = STATE(367), - [sym_keyword] = STATE(367), - [sym_php_statement] = STATE(367), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(367), - [sym__inline_directive] = STATE(367), - [sym__nested_directive] = STATE(367), - [sym_fragment] = STATE(367), - [sym_section] = STATE(367), - [sym_inlineSection] = STATE(367), - [sym_once] = STATE(367), - [sym_verbatim] = STATE(367), - [sym_stack] = STATE(367), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(367), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(367), - [sym_loop] = STATE(367), - [sym_loop_operator] = STATE(367), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(367), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(367), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(367), - [sym_text] = STATE(367), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5659), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5837), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [370] = { - [sym__definition] = STATE(368), - [sym_comment] = STATE(368), - [sym_keyword] = STATE(368), - [sym_php_statement] = STATE(368), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(368), - [sym__inline_directive] = STATE(368), - [sym__nested_directive] = STATE(368), - [sym_fragment] = STATE(368), - [sym_section] = STATE(368), - [sym_inlineSection] = STATE(368), - [sym_once] = STATE(368), - [sym_verbatim] = STATE(368), - [sym_stack] = STATE(368), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(368), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(368), - [sym_loop] = STATE(368), - [sym_loop_operator] = STATE(368), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(368), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(368), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(368), - [sym_text] = STATE(368), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5661), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5839), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [371] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5663), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(369), + [sym_keyword] = STATE(369), + [sym_php_statement] = STATE(369), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(369), + [sym__inline_directive] = STATE(369), + [sym__nested_directive] = STATE(369), + [sym_fragment] = STATE(369), + [sym_section] = STATE(369), + [sym_inlineSection] = STATE(369), + [sym_once] = STATE(369), + [sym_verbatim] = STATE(369), + [sym_stack] = STATE(369), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(369), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(369), + [sym_loop] = STATE(369), + [sym_loop_operator] = STATE(369), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(369), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(369), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(369), + [sym_text] = STATE(369), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5841), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5843), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [372] = { - [sym__definition] = STATE(566), - [sym_comment] = STATE(566), - [sym_keyword] = STATE(566), - [sym_php_statement] = STATE(566), - [sym__escaped] = STATE(3404), - [sym__unescaped] = STATE(3404), - [sym__raw] = STATE(3404), - [sym__inline_raw] = STATE(3404), - [sym__multi_line_raw] = STATE(3404), - [sym_attribute] = STATE(566), - [sym__inline_directive] = STATE(566), - [sym__nested_directive] = STATE(566), - [sym_fragment] = STATE(566), - [sym_section] = STATE(566), - [sym_inlineSection] = STATE(566), - [sym_once] = STATE(566), - [sym_verbatim] = STATE(566), - [sym_stack] = STATE(566), - [sym__push] = STATE(3403), - [sym__pushOnce] = STATE(3403), - [sym__pushIf] = STATE(3403), - [sym__prepend] = STATE(3403), - [sym__prependOnce] = STATE(3403), - [sym_conditional] = STATE(566), - [sym__if] = STATE(3401), - [sym__unless] = STATE(3401), - [sym__isset] = STATE(3401), - [sym__empty] = STATE(3401), - [sym__auth] = STATE(3401), - [sym__guest] = STATE(3401), - [sym__production] = STATE(3401), - [sym__env] = STATE(3401), - [sym__hasSection] = STATE(3401), - [sym__sectionMissing] = STATE(3401), - [sym__error] = STATE(3401), - [sym_authorization] = STATE(3401), - [sym__can] = STATE(3399), - [sym__cannot] = STATE(3399), - [sym__canany] = STATE(3399), - [sym__feature] = STATE(3401), - [sym__custom] = STATE(3401), - [sym_switch] = STATE(566), - [sym_loop] = STATE(566), - [sym_loop_operator] = STATE(566), - [sym__for] = STATE(3397), - [sym__foreach] = STATE(3397), - [sym__forelse] = STATE(3397), - [sym__while] = STATE(3397), - [sym_envoy] = STATE(566), - [sym__setup] = STATE(3404), - [sym__task] = STATE(3243), - [sym__story] = STATE(3243), - [sym__hooks] = STATE(3404), - [sym__before] = STATE(3404), - [sym__after] = STATE(3404), - [sym__envoy_error] = STATE(3404), - [sym__success] = STATE(3404), - [sym__finished] = STATE(3404), - [sym_livewire] = STATE(566), - [sym__persist] = STATE(3367), - [sym__teleport] = STATE(3367), - [sym__volt] = STATE(3367), - [aux_sym__directive_body] = STATE(566), - [sym_text] = STATE(566), - [sym__text] = STATE(1100), - [aux_sym_php_only_repeat1] = STATE(1100), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5427), - [aux_sym_keyword_token1] = ACTIONS(5429), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5431), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5433), - [anon_sym_ATphp] = ACTIONS(5435), - [aux_sym_attribute_token1] = ACTIONS(5437), - [aux_sym__inline_directive_token1] = ACTIONS(5439), - [anon_sym_ATfragment] = ACTIONS(5441), - [anon_sym_ATsection] = ACTIONS(5443), - [anon_sym_ATonce] = ACTIONS(5445), - [anon_sym_ATverbatim] = ACTIONS(5447), - [anon_sym_ATpush] = ACTIONS(5449), - [anon_sym_ATpushOnce] = ACTIONS(5451), - [anon_sym_ATendPushOnce] = ACTIONS(4626), - [anon_sym_ATpushIf] = ACTIONS(5453), - [anon_sym_ATprepend] = ACTIONS(5455), - [anon_sym_ATprependOnce] = ACTIONS(5457), - [anon_sym_ATif] = ACTIONS(5459), - [anon_sym_ATunless] = ACTIONS(5461), - [anon_sym_ATisset] = ACTIONS(5463), - [anon_sym_ATempty] = ACTIONS(5465), - [anon_sym_ATauth] = ACTIONS(5467), - [anon_sym_ATguest] = ACTIONS(5469), - [anon_sym_ATproduction] = ACTIONS(5471), - [anon_sym_ATenv] = ACTIONS(5473), - [anon_sym_AThasSection] = ACTIONS(5475), - [anon_sym_ATsectionMissing] = ACTIONS(5477), - [anon_sym_ATerror] = ACTIONS(5479), - [anon_sym_ATcan] = ACTIONS(5481), - [anon_sym_ATcannot] = ACTIONS(5483), - [anon_sym_ATcanany] = ACTIONS(5485), - [anon_sym_ATfeature] = ACTIONS(5487), - [aux_sym__custom_token1] = ACTIONS(5489), - [aux_sym__custom_token2] = ACTIONS(5491), - [anon_sym_ATswitch] = ACTIONS(5493), - [aux_sym_loop_operator_token1] = ACTIONS(5495), - [anon_sym_ATfor] = ACTIONS(5497), - [anon_sym_ATforeach] = ACTIONS(5499), - [anon_sym_ATforelse] = ACTIONS(5501), - [anon_sym_ATwhile] = ACTIONS(5503), - [anon_sym_ATsetup] = ACTIONS(5505), - [anon_sym_ATtask] = ACTIONS(5507), - [anon_sym_ATstory] = ACTIONS(5509), - [anon_sym_ATbefore] = ACTIONS(5511), - [anon_sym_ATafter] = ACTIONS(5513), - [anon_sym_ATsuccess] = ACTIONS(5515), - [anon_sym_ATfinished] = ACTIONS(5517), - [anon_sym_ATpersist] = ACTIONS(5519), - [anon_sym_ATteleport] = ACTIONS(5521), - [anon_sym_ATvolt] = ACTIONS(5523), - [aux_sym__text_token1] = ACTIONS(5525), - [aux_sym__text_token2] = ACTIONS(5525), - [aux_sym__text_token3] = ACTIONS(5527), + [sym__definition] = STATE(370), + [sym_keyword] = STATE(370), + [sym_php_statement] = STATE(370), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(370), + [sym__inline_directive] = STATE(370), + [sym__nested_directive] = STATE(370), + [sym_fragment] = STATE(370), + [sym_section] = STATE(370), + [sym_inlineSection] = STATE(370), + [sym_once] = STATE(370), + [sym_verbatim] = STATE(370), + [sym_stack] = STATE(370), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(370), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(370), + [sym_loop] = STATE(370), + [sym_loop_operator] = STATE(370), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(370), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(370), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(370), + [sym_text] = STATE(370), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5845), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5847), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [373] = { + [sym__definition] = STATE(380), + [sym_keyword] = STATE(380), + [sym_php_statement] = STATE(380), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(380), + [sym__inline_directive] = STATE(380), + [sym__nested_directive] = STATE(380), + [sym_fragment] = STATE(380), + [sym_section] = STATE(380), + [sym_inlineSection] = STATE(380), + [sym_once] = STATE(380), + [sym_verbatim] = STATE(380), + [sym_stack] = STATE(380), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(380), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(380), + [sym_loop] = STATE(380), + [sym_loop_operator] = STATE(380), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(380), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(380), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(380), + [sym_text] = STATE(380), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5849), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5851), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [374] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5853), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [375] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -71616,602 +70982,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5665), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [374] = { - [sym__definition] = STATE(382), - [sym_comment] = STATE(382), - [sym_keyword] = STATE(382), - [sym_php_statement] = STATE(382), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(382), - [sym__inline_directive] = STATE(382), - [sym__nested_directive] = STATE(382), - [sym_fragment] = STATE(382), - [sym_section] = STATE(382), - [sym_inlineSection] = STATE(382), - [sym_once] = STATE(382), - [sym_verbatim] = STATE(382), - [sym_stack] = STATE(382), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(382), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(382), - [sym_loop] = STATE(382), - [sym_loop_operator] = STATE(382), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(382), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(382), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(382), - [sym_text] = STATE(382), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5667), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [375] = { - [sym__definition] = STATE(371), - [sym_comment] = STATE(371), - [sym_keyword] = STATE(371), - [sym_php_statement] = STATE(371), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(371), - [sym__inline_directive] = STATE(371), - [sym__nested_directive] = STATE(371), - [sym_fragment] = STATE(371), - [sym_section] = STATE(371), - [sym_inlineSection] = STATE(371), - [sym_once] = STATE(371), - [sym_verbatim] = STATE(371), - [sym_stack] = STATE(371), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(371), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(371), - [sym_loop] = STATE(371), - [sym_loop_operator] = STATE(371), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(371), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(371), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(371), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(371), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5669), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5855), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [376] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5669), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(184), + [sym_keyword] = STATE(184), + [sym_php_statement] = STATE(184), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(184), + [sym__inline_directive] = STATE(184), + [sym__nested_directive] = STATE(184), + [sym_fragment] = STATE(184), + [sym_section] = STATE(184), + [sym_inlineSection] = STATE(184), + [sym_once] = STATE(184), + [sym_verbatim] = STATE(184), + [sym_stack] = STATE(184), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(184), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(184), + [sym_loop] = STATE(184), + [sym_loop_operator] = STATE(184), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(184), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(184), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(184), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(184), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5857), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5859), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [377] = { - [sym__definition] = STATE(373), - [sym_comment] = STATE(373), - [sym_keyword] = STATE(373), - [sym_php_statement] = STATE(373), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(373), - [sym__inline_directive] = STATE(373), - [sym__nested_directive] = STATE(373), - [sym_fragment] = STATE(373), - [sym_section] = STATE(373), - [sym_inlineSection] = STATE(373), - [sym_once] = STATE(373), - [sym_verbatim] = STATE(373), - [sym_stack] = STATE(373), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(373), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(373), - [sym_loop] = STATE(373), - [sym_loop_operator] = STATE(373), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(373), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(373), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(373), - [sym_text] = STATE(373), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5671), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5859), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [378] = { + [sym__definition] = STATE(375), + [sym_keyword] = STATE(375), + [sym_php_statement] = STATE(375), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(375), + [sym__inline_directive] = STATE(375), + [sym__nested_directive] = STATE(375), + [sym_fragment] = STATE(375), + [sym_section] = STATE(375), + [sym_inlineSection] = STATE(375), + [sym_once] = STATE(375), + [sym_verbatim] = STATE(375), + [sym_stack] = STATE(375), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(375), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(375), + [sym_loop] = STATE(375), + [sym_loop_operator] = STATE(375), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(375), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(375), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(375), + [sym_text] = STATE(375), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5861), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5863), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [379] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -72221,965 +71462,837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5673), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [379] = { - [sym__definition] = STATE(376), - [sym_comment] = STATE(376), - [sym_keyword] = STATE(376), - [sym_php_statement] = STATE(376), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(376), - [sym__inline_directive] = STATE(376), - [sym__nested_directive] = STATE(376), - [sym_fragment] = STATE(376), - [sym_section] = STATE(376), - [sym_inlineSection] = STATE(376), - [sym_once] = STATE(376), - [sym_verbatim] = STATE(376), - [sym_stack] = STATE(376), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(376), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(376), - [sym_loop] = STATE(376), - [sym_loop_operator] = STATE(376), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(376), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(376), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(376), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(376), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5675), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5865), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [380] = { - [sym__definition] = STATE(378), - [sym_comment] = STATE(378), - [sym_keyword] = STATE(378), - [sym_php_statement] = STATE(378), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(378), - [sym__inline_directive] = STATE(378), - [sym__nested_directive] = STATE(378), - [sym_fragment] = STATE(378), - [sym_section] = STATE(378), - [sym_inlineSection] = STATE(378), - [sym_once] = STATE(378), - [sym_verbatim] = STATE(378), - [sym_stack] = STATE(378), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(378), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(378), - [sym_loop] = STATE(378), - [sym_loop_operator] = STATE(378), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(378), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(378), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(378), - [sym_text] = STATE(378), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5677), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5867), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [381] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5679), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(377), + [sym_keyword] = STATE(377), + [sym_php_statement] = STATE(377), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(377), + [sym__inline_directive] = STATE(377), + [sym__nested_directive] = STATE(377), + [sym_fragment] = STATE(377), + [sym_section] = STATE(377), + [sym_inlineSection] = STATE(377), + [sym_once] = STATE(377), + [sym_verbatim] = STATE(377), + [sym_stack] = STATE(377), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(377), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(377), + [sym_loop] = STATE(377), + [sym_loop_operator] = STATE(377), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(377), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(377), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(377), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(377), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5869), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5871), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [382] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5681), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(379), + [sym_keyword] = STATE(379), + [sym_php_statement] = STATE(379), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(379), + [sym__inline_directive] = STATE(379), + [sym__nested_directive] = STATE(379), + [sym_fragment] = STATE(379), + [sym_section] = STATE(379), + [sym_inlineSection] = STATE(379), + [sym_once] = STATE(379), + [sym_verbatim] = STATE(379), + [sym_stack] = STATE(379), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(379), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(379), + [sym_loop] = STATE(379), + [sym_loop_operator] = STATE(379), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(379), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(379), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(379), + [sym_text] = STATE(379), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5873), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5875), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [383] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5683), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(409), + [sym_keyword] = STATE(409), + [sym_php_statement] = STATE(409), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(409), + [sym__inline_directive] = STATE(409), + [sym__nested_directive] = STATE(409), + [sym_fragment] = STATE(409), + [sym_section] = STATE(409), + [sym_inlineSection] = STATE(409), + [sym_once] = STATE(409), + [sym_verbatim] = STATE(409), + [sym_stack] = STATE(409), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(409), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(409), + [sym_loop] = STATE(409), + [sym_loop_operator] = STATE(409), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(409), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(409), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(409), + [sym_text] = STATE(409), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5877), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5879), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [384] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5685), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5881), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [385] = { - [sym__definition] = STATE(383), - [sym_comment] = STATE(383), - [sym_keyword] = STATE(383), - [sym_php_statement] = STATE(383), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(383), - [sym__inline_directive] = STATE(383), - [sym__nested_directive] = STATE(383), - [sym_fragment] = STATE(383), - [sym_section] = STATE(383), - [sym_inlineSection] = STATE(383), - [sym_once] = STATE(383), - [sym_verbatim] = STATE(383), - [sym_stack] = STATE(383), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(383), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(383), - [sym_loop] = STATE(383), - [sym_loop_operator] = STATE(383), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(383), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(383), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(383), - [sym_text] = STATE(383), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5687), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5883), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [386] = { [sym__definition] = STATE(384), - [sym_comment] = STATE(384), [sym_keyword] = STATE(384), [sym_php_statement] = STATE(384), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(384), [sym__inline_directive] = STATE(384), [sym__nested_directive] = STATE(384), @@ -73189,360 +72302,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(384), [sym_verbatim] = STATE(384), [sym_stack] = STATE(384), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(384), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(384), [sym_loop] = STATE(384), [sym_loop_operator] = STATE(384), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(384), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(384), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(384), [sym_text] = STATE(384), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5689), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5885), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5887), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [387] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5691), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(385), + [sym_keyword] = STATE(385), + [sym_php_statement] = STATE(385), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(385), + [sym__inline_directive] = STATE(385), + [sym__nested_directive] = STATE(385), + [sym_fragment] = STATE(385), + [sym_section] = STATE(385), + [sym_inlineSection] = STATE(385), + [sym_once] = STATE(385), + [sym_verbatim] = STATE(385), + [sym_stack] = STATE(385), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(385), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(385), + [sym_loop] = STATE(385), + [sym_loop_operator] = STATE(385), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(385), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(385), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(385), + [sym_text] = STATE(385), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5889), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5891), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [388] = { - [sym__definition] = STATE(409), - [sym_comment] = STATE(409), - [sym_keyword] = STATE(409), - [sym_php_statement] = STATE(409), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(409), - [sym__inline_directive] = STATE(409), - [sym__nested_directive] = STATE(409), - [sym_fragment] = STATE(409), - [sym_section] = STATE(409), - [sym_inlineSection] = STATE(409), - [sym_once] = STATE(409), - [sym_verbatim] = STATE(409), - [sym_stack] = STATE(409), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(409), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(409), - [sym_loop] = STATE(409), - [sym_loop_operator] = STATE(409), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(409), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(409), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(409), - [sym_text] = STATE(409), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5693), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5893), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [389] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -73552,360 +72662,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5695), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5895), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [390] = { - [sym__definition] = STATE(387), - [sym_comment] = STATE(387), - [sym_keyword] = STATE(387), - [sym_php_statement] = STATE(387), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(387), - [sym__inline_directive] = STATE(387), - [sym__nested_directive] = STATE(387), - [sym_fragment] = STATE(387), - [sym_section] = STATE(387), - [sym_inlineSection] = STATE(387), - [sym_once] = STATE(387), - [sym_verbatim] = STATE(387), - [sym_stack] = STATE(387), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(387), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(387), - [sym_loop] = STATE(387), - [sym_loop_operator] = STATE(387), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(387), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(387), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(387), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(387), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5697), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(388), + [sym_keyword] = STATE(388), + [sym_php_statement] = STATE(388), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(388), + [sym__inline_directive] = STATE(388), + [sym__nested_directive] = STATE(388), + [sym_fragment] = STATE(388), + [sym_section] = STATE(388), + [sym_inlineSection] = STATE(388), + [sym_once] = STATE(388), + [sym_verbatim] = STATE(388), + [sym_stack] = STATE(388), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(388), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(388), + [sym_loop] = STATE(388), + [sym_loop_operator] = STATE(388), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(388), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(388), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(388), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(388), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5897), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5899), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [391] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5697), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5899), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [392] = { [sym__definition] = STATE(389), - [sym_comment] = STATE(389), [sym_keyword] = STATE(389), [sym_php_statement] = STATE(389), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(389), [sym__inline_directive] = STATE(389), [sym__nested_directive] = STATE(389), @@ -73915,118 +73022,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(389), [sym_verbatim] = STATE(389), [sym_stack] = STATE(389), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(389), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(389), [sym_loop] = STATE(389), [sym_loop_operator] = STATE(389), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(389), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(389), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(389), [sym_text] = STATE(389), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5699), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5901), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5903), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [393] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -74036,118 +73142,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5701), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5905), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [394] = { [sym__definition] = STATE(391), - [sym_comment] = STATE(391), [sym_keyword] = STATE(391), [sym_php_statement] = STATE(391), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(391), [sym__inline_directive] = STATE(391), [sym__nested_directive] = STATE(391), @@ -74157,118 +73262,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(391), [sym_verbatim] = STATE(391), [sym_stack] = STATE(391), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(391), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(391), [sym_loop] = STATE(391), [sym_loop_operator] = STATE(391), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(391), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(391), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(391), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(391), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5703), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5907), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5909), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [395] = { [sym__definition] = STATE(393), - [sym_comment] = STATE(393), [sym_keyword] = STATE(393), [sym_php_statement] = STATE(393), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(393), [sym__inline_directive] = STATE(393), [sym__nested_directive] = STATE(393), @@ -74278,481 +73382,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(393), [sym_verbatim] = STATE(393), [sym_stack] = STATE(393), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(393), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(393), [sym_loop] = STATE(393), [sym_loop_operator] = STATE(393), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(393), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(393), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(393), [sym_text] = STATE(393), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5705), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5911), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5913), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [396] = { - [sym__definition] = STATE(437), - [sym_comment] = STATE(437), - [sym_keyword] = STATE(437), - [sym_php_statement] = STATE(437), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(437), - [sym__inline_directive] = STATE(437), - [sym__nested_directive] = STATE(437), - [sym_fragment] = STATE(437), - [sym_section] = STATE(437), - [sym_inlineSection] = STATE(437), - [sym_once] = STATE(437), - [sym_verbatim] = STATE(437), - [sym_stack] = STATE(437), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(437), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(437), - [sym_loop] = STATE(437), - [sym_loop_operator] = STATE(437), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(437), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(437), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(437), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(437), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5707), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(438), + [sym_keyword] = STATE(438), + [sym_php_statement] = STATE(438), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(438), + [sym__inline_directive] = STATE(438), + [sym__nested_directive] = STATE(438), + [sym_fragment] = STATE(438), + [sym_section] = STATE(438), + [sym_inlineSection] = STATE(438), + [sym_once] = STATE(438), + [sym_verbatim] = STATE(438), + [sym_stack] = STATE(438), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(438), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(438), + [sym_loop] = STATE(438), + [sym_loop_operator] = STATE(438), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(438), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(438), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(438), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(438), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5915), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5917), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [397] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5709), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5919), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [398] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5711), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5921), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [399] = { [sym__definition] = STATE(397), - [sym_comment] = STATE(397), [sym_keyword] = STATE(397), [sym_php_statement] = STATE(397), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(397), [sym__inline_directive] = STATE(397), [sym__nested_directive] = STATE(397), @@ -74762,118 +73862,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(397), [sym_verbatim] = STATE(397), [sym_stack] = STATE(397), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(397), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(397), [sym_loop] = STATE(397), [sym_loop_operator] = STATE(397), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(397), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(397), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(397), [sym_text] = STATE(397), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5713), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5923), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5925), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [400] = { [sym__definition] = STATE(398), - [sym_comment] = STATE(398), [sym_keyword] = STATE(398), [sym_php_statement] = STATE(398), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(398), [sym__inline_directive] = STATE(398), [sym__nested_directive] = STATE(398), @@ -74883,239 +73982,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(398), [sym_verbatim] = STATE(398), [sym_stack] = STATE(398), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(398), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(398), [sym_loop] = STATE(398), [sym_loop_operator] = STATE(398), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(398), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(398), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(398), [sym_text] = STATE(398), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5715), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5927), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5929), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [401] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5717), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5931), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [402] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -75125,118 +74222,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5719), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5933), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [403] = { [sym__definition] = STATE(401), - [sym_comment] = STATE(401), [sym_keyword] = STATE(401), [sym_php_statement] = STATE(401), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(401), [sym__inline_directive] = STATE(401), [sym__nested_directive] = STATE(401), @@ -75246,239 +74342,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(401), [sym_verbatim] = STATE(401), [sym_stack] = STATE(401), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(401), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(401), [sym_loop] = STATE(401), [sym_loop_operator] = STATE(401), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(401), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(401), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(401), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(401), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5721), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5935), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5937), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [404] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5721), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5937), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [405] = { [sym__definition] = STATE(402), - [sym_comment] = STATE(402), [sym_keyword] = STATE(402), [sym_php_statement] = STATE(402), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(402), [sym__inline_directive] = STATE(402), [sym__nested_directive] = STATE(402), @@ -75488,118 +74582,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(402), [sym_verbatim] = STATE(402), [sym_stack] = STATE(402), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(402), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(402), [sym_loop] = STATE(402), [sym_loop_operator] = STATE(402), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(402), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(402), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(402), [sym_text] = STATE(402), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5723), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5939), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5941), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [406] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -75609,118 +74702,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5725), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5943), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [407] = { [sym__definition] = STATE(404), - [sym_comment] = STATE(404), [sym_keyword] = STATE(404), [sym_php_statement] = STATE(404), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(404), [sym__inline_directive] = STATE(404), [sym__nested_directive] = STATE(404), @@ -75730,118 +74822,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(404), [sym_verbatim] = STATE(404), [sym_stack] = STATE(404), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(404), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(404), [sym_loop] = STATE(404), [sym_loop_operator] = STATE(404), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(404), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(404), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(404), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(404), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5727), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5945), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5947), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [408] = { [sym__definition] = STATE(406), - [sym_comment] = STATE(406), [sym_keyword] = STATE(406), [sym_php_statement] = STATE(406), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(406), [sym__inline_directive] = STATE(406), [sym__nested_directive] = STATE(406), @@ -75851,118 +74942,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(406), [sym_verbatim] = STATE(406), [sym_stack] = STATE(406), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(406), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(406), [sym_loop] = STATE(406), [sym_loop_operator] = STATE(406), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(406), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(406), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(406), [sym_text] = STATE(406), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5729), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5949), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5951), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [409] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -75972,360 +75062,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5731), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5953), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [410] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5733), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5955), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [411] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5735), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5957), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [412] = { [sym__definition] = STATE(410), - [sym_comment] = STATE(410), [sym_keyword] = STATE(410), [sym_php_statement] = STATE(410), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(410), [sym__inline_directive] = STATE(410), [sym__nested_directive] = STATE(410), @@ -76335,118 +75422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(410), [sym_verbatim] = STATE(410), [sym_stack] = STATE(410), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(410), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(410), [sym_loop] = STATE(410), [sym_loop_operator] = STATE(410), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(410), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(410), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(410), [sym_text] = STATE(410), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5737), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(5959), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(5961), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [413] = { [sym__definition] = STATE(411), - [sym_comment] = STATE(411), [sym_keyword] = STATE(411), [sym_php_statement] = STATE(411), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(411), [sym__inline_directive] = STATE(411), [sym__nested_directive] = STATE(411), @@ -76456,239 +75542,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(411), [sym_verbatim] = STATE(411), [sym_stack] = STATE(411), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(411), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(411), [sym_loop] = STATE(411), [sym_loop_operator] = STATE(411), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(411), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(411), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(411), [sym_text] = STATE(411), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5739), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(5963), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(5965), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [414] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5741), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5967), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [415] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -76698,118 +75782,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5743), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5969), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [416] = { [sym__definition] = STATE(414), - [sym_comment] = STATE(414), [sym_keyword] = STATE(414), [sym_php_statement] = STATE(414), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(414), [sym__inline_directive] = STATE(414), [sym__nested_directive] = STATE(414), @@ -76819,239 +75902,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(414), [sym_verbatim] = STATE(414), [sym_stack] = STATE(414), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(414), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(414), [sym_loop] = STATE(414), [sym_loop_operator] = STATE(414), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(414), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(414), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(414), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(414), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5745), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5971), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5973), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [417] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5745), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5973), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [418] = { [sym__definition] = STATE(415), - [sym_comment] = STATE(415), [sym_keyword] = STATE(415), [sym_php_statement] = STATE(415), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(415), [sym__inline_directive] = STATE(415), [sym__nested_directive] = STATE(415), @@ -77061,118 +76142,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(415), [sym_verbatim] = STATE(415), [sym_stack] = STATE(415), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(415), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(415), [sym_loop] = STATE(415), [sym_loop_operator] = STATE(415), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(415), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(415), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(415), [sym_text] = STATE(415), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5747), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5975), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5977), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [419] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -77182,118 +76262,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5749), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5979), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [420] = { [sym__definition] = STATE(417), - [sym_comment] = STATE(417), [sym_keyword] = STATE(417), [sym_php_statement] = STATE(417), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(417), [sym__inline_directive] = STATE(417), [sym__nested_directive] = STATE(417), @@ -77303,118 +76382,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(417), [sym_verbatim] = STATE(417), [sym_stack] = STATE(417), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(417), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(417), [sym_loop] = STATE(417), [sym_loop_operator] = STATE(417), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(417), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(417), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(417), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(417), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5751), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(5981), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(5983), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [421] = { [sym__definition] = STATE(419), - [sym_comment] = STATE(419), [sym_keyword] = STATE(419), [sym_php_statement] = STATE(419), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(419), [sym__inline_directive] = STATE(419), [sym__nested_directive] = STATE(419), @@ -77424,844 +76502,1077 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(419), [sym_verbatim] = STATE(419), [sym_stack] = STATE(419), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(419), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(419), [sym_loop] = STATE(419), [sym_loop_operator] = STATE(419), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(419), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(419), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(419), [sym_text] = STATE(419), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5753), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(5985), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(5987), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [422] = { - [sym__definition] = STATE(452), - [sym_comment] = STATE(452), - [sym_keyword] = STATE(452), - [sym_php_statement] = STATE(452), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(452), - [sym__inline_directive] = STATE(452), - [sym__nested_directive] = STATE(452), - [sym_fragment] = STATE(452), - [sym_section] = STATE(452), - [sym_inlineSection] = STATE(452), - [sym_once] = STATE(452), - [sym_verbatim] = STATE(452), - [sym_stack] = STATE(452), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(452), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(452), - [sym_loop] = STATE(452), - [sym_loop_operator] = STATE(452), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(452), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(452), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(452), - [sym_text] = STATE(452), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5755), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(422), + [sym_keyword] = STATE(422), + [sym_php_statement] = STATE(422), + [sym__escaped] = STATE(2110), + [sym__unescaped] = STATE(2110), + [sym__raw] = STATE(2110), + [sym__inline_raw] = STATE(2110), + [sym__multi_line_raw] = STATE(2110), + [sym_attribute] = STATE(422), + [sym__inline_directive] = STATE(422), + [sym__nested_directive] = STATE(422), + [sym_fragment] = STATE(422), + [sym_section] = STATE(422), + [sym_inlineSection] = STATE(422), + [sym_once] = STATE(422), + [sym_verbatim] = STATE(422), + [sym_stack] = STATE(422), + [sym__push] = STATE(2109), + [sym__pushOnce] = STATE(2109), + [sym__pushIf] = STATE(2109), + [sym__prepend] = STATE(2109), + [sym__prependOnce] = STATE(2109), + [sym_conditional] = STATE(422), + [sym__if] = STATE(2108), + [sym__unless] = STATE(2108), + [sym__isset] = STATE(2108), + [sym__empty] = STATE(2108), + [sym__auth] = STATE(2108), + [sym__guest] = STATE(2108), + [sym__production] = STATE(2108), + [sym__env] = STATE(2108), + [sym__hasSection] = STATE(2108), + [sym__sectionMissing] = STATE(2108), + [sym__error] = STATE(2108), + [sym_authorization] = STATE(2108), + [sym__can] = STATE(2107), + [sym__cannot] = STATE(2107), + [sym__canany] = STATE(2107), + [sym__feature] = STATE(2108), + [sym__custom] = STATE(2108), + [sym_switch] = STATE(422), + [sym_loop] = STATE(422), + [sym_loop_operator] = STATE(422), + [sym__for] = STATE(2106), + [sym__foreach] = STATE(2106), + [sym__forelse] = STATE(2106), + [sym__while] = STATE(2106), + [sym_envoy] = STATE(422), + [sym__setup] = STATE(2110), + [sym__task] = STATE(2105), + [sym__story] = STATE(2105), + [sym__hooks] = STATE(2110), + [sym__before] = STATE(2110), + [sym__after] = STATE(2110), + [sym__envoy_error] = STATE(2110), + [sym__success] = STATE(2110), + [sym__finished] = STATE(2110), + [sym_livewire] = STATE(422), + [sym__persist] = STATE(2104), + [sym__teleport] = STATE(2104), + [sym__volt] = STATE(2104), + [aux_sym__directive_body] = STATE(422), + [sym_text] = STATE(422), + [sym__text] = STATE(1169), + [aux_sym_php_only_repeat1] = STATE(1169), + [sym_comment] = ACTIONS(5989), + [aux_sym_keyword_token1] = ACTIONS(5992), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5995), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5998), + [anon_sym_ATphp] = ACTIONS(6001), + [aux_sym_attribute_token1] = ACTIONS(6004), + [aux_sym__inline_directive_token1] = ACTIONS(6007), + [anon_sym_ATfragment] = ACTIONS(6010), + [anon_sym_ATsection] = ACTIONS(6013), + [anon_sym_ATonce] = ACTIONS(6016), + [anon_sym_ATverbatim] = ACTIONS(6019), + [anon_sym_ATpush] = ACTIONS(6022), + [anon_sym_ATpushOnce] = ACTIONS(6025), + [anon_sym_ATpushIf] = ACTIONS(6028), + [anon_sym_ATprepend] = ACTIONS(6031), + [anon_sym_ATendprepend] = ACTIONS(5035), + [anon_sym_ATprependOnce] = ACTIONS(6034), + [anon_sym_ATif] = ACTIONS(6037), + [anon_sym_ATunless] = ACTIONS(6040), + [anon_sym_ATisset] = ACTIONS(6043), + [anon_sym_ATempty] = ACTIONS(6046), + [anon_sym_ATauth] = ACTIONS(6049), + [anon_sym_ATguest] = ACTIONS(6052), + [anon_sym_ATproduction] = ACTIONS(6055), + [anon_sym_ATenv] = ACTIONS(6058), + [anon_sym_AThasSection] = ACTIONS(6061), + [anon_sym_ATsectionMissing] = ACTIONS(6064), + [anon_sym_ATerror] = ACTIONS(6067), + [anon_sym_ATcan] = ACTIONS(6070), + [anon_sym_ATcannot] = ACTIONS(6073), + [anon_sym_ATcanany] = ACTIONS(6076), + [anon_sym_ATfeature] = ACTIONS(6079), + [aux_sym__custom_token1] = ACTIONS(6082), + [aux_sym__custom_token2] = ACTIONS(6085), + [anon_sym_ATswitch] = ACTIONS(6088), + [aux_sym_loop_operator_token1] = ACTIONS(6091), + [anon_sym_ATfor] = ACTIONS(6094), + [anon_sym_ATforeach] = ACTIONS(6097), + [anon_sym_ATforelse] = ACTIONS(6100), + [anon_sym_ATwhile] = ACTIONS(6103), + [anon_sym_ATsetup] = ACTIONS(6106), + [anon_sym_ATtask] = ACTIONS(6109), + [anon_sym_ATstory] = ACTIONS(6112), + [anon_sym_ATbefore] = ACTIONS(6115), + [anon_sym_ATafter] = ACTIONS(6118), + [anon_sym_ATsuccess] = ACTIONS(6121), + [anon_sym_ATfinished] = ACTIONS(6124), + [anon_sym_ATpersist] = ACTIONS(6127), + [anon_sym_ATteleport] = ACTIONS(6130), + [anon_sym_ATvolt] = ACTIONS(6133), + [aux_sym__text_token1] = ACTIONS(6136), + [aux_sym__text_token2] = ACTIONS(6136), + [aux_sym__text_token3] = ACTIONS(6139), }, [423] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5757), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(640), + [sym_keyword] = STATE(640), + [sym_php_statement] = STATE(640), + [sym__escaped] = STATE(3168), + [sym__unescaped] = STATE(3168), + [sym__raw] = STATE(3168), + [sym__inline_raw] = STATE(3168), + [sym__multi_line_raw] = STATE(3168), + [sym_attribute] = STATE(640), + [sym__inline_directive] = STATE(640), + [sym__nested_directive] = STATE(640), + [sym_fragment] = STATE(640), + [sym_section] = STATE(640), + [sym_inlineSection] = STATE(640), + [sym_once] = STATE(640), + [sym_verbatim] = STATE(640), + [sym_stack] = STATE(640), + [sym__push] = STATE(3180), + [sym__pushOnce] = STATE(3180), + [sym__pushIf] = STATE(3180), + [sym__prepend] = STATE(3180), + [sym__prependOnce] = STATE(3180), + [sym_conditional] = STATE(640), + [sym__if] = STATE(3183), + [sym__unless] = STATE(3183), + [sym__isset] = STATE(3183), + [sym__empty] = STATE(3183), + [sym__auth] = STATE(3183), + [sym__guest] = STATE(3183), + [sym__production] = STATE(3183), + [sym__env] = STATE(3183), + [sym__hasSection] = STATE(3183), + [sym__sectionMissing] = STATE(3183), + [sym__error] = STATE(3183), + [sym_authorization] = STATE(3183), + [sym__can] = STATE(3184), + [sym__cannot] = STATE(3184), + [sym__canany] = STATE(3184), + [sym__feature] = STATE(3183), + [sym__custom] = STATE(3183), + [sym_switch] = STATE(640), + [sym_loop] = STATE(640), + [sym_loop_operator] = STATE(640), + [sym__for] = STATE(3187), + [sym__foreach] = STATE(3187), + [sym__forelse] = STATE(3187), + [sym__while] = STATE(3187), + [sym_envoy] = STATE(640), + [sym__setup] = STATE(3168), + [sym__task] = STATE(3191), + [sym__story] = STATE(3191), + [sym__hooks] = STATE(3168), + [sym__before] = STATE(3168), + [sym__after] = STATE(3168), + [sym__envoy_error] = STATE(3168), + [sym__success] = STATE(3168), + [sym__finished] = STATE(3168), + [sym_livewire] = STATE(640), + [sym__persist] = STATE(3210), + [sym__teleport] = STATE(3210), + [sym__volt] = STATE(3210), + [sym_text] = STATE(640), + [sym__text] = STATE(934), + [aux_sym_blade_repeat1] = STATE(640), + [aux_sym_php_only_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(6142), + [sym_comment] = ACTIONS(6144), + [aux_sym_keyword_token1] = ACTIONS(7), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(11), + [anon_sym_ATphp] = ACTIONS(13), + [aux_sym_attribute_token1] = ACTIONS(15), + [aux_sym__inline_directive_token1] = ACTIONS(17), + [anon_sym_ATfragment] = ACTIONS(19), + [anon_sym_ATsection] = ACTIONS(21), + [anon_sym_ATonce] = ACTIONS(23), + [anon_sym_ATverbatim] = ACTIONS(25), + [anon_sym_ATpush] = ACTIONS(27), + [anon_sym_ATpushOnce] = ACTIONS(29), + [anon_sym_ATpushIf] = ACTIONS(31), + [anon_sym_ATprepend] = ACTIONS(33), + [anon_sym_ATprependOnce] = ACTIONS(35), + [anon_sym_ATif] = ACTIONS(37), + [anon_sym_ATunless] = ACTIONS(39), + [anon_sym_ATisset] = ACTIONS(41), + [anon_sym_ATempty] = ACTIONS(43), + [anon_sym_ATauth] = ACTIONS(45), + [anon_sym_ATguest] = ACTIONS(47), + [anon_sym_ATproduction] = ACTIONS(49), + [anon_sym_ATenv] = ACTIONS(51), + [anon_sym_AThasSection] = ACTIONS(53), + [anon_sym_ATsectionMissing] = ACTIONS(55), + [anon_sym_ATerror] = ACTIONS(57), + [anon_sym_ATcan] = ACTIONS(59), + [anon_sym_ATcannot] = ACTIONS(61), + [anon_sym_ATcanany] = ACTIONS(63), + [anon_sym_ATfeature] = ACTIONS(65), + [aux_sym__custom_token1] = ACTIONS(67), + [aux_sym__custom_token2] = ACTIONS(69), + [anon_sym_ATswitch] = ACTIONS(71), + [aux_sym_loop_operator_token1] = ACTIONS(73), + [anon_sym_ATfor] = ACTIONS(75), + [anon_sym_ATforeach] = ACTIONS(77), + [anon_sym_ATforelse] = ACTIONS(79), + [anon_sym_ATwhile] = ACTIONS(81), + [anon_sym_ATsetup] = ACTIONS(83), + [anon_sym_ATtask] = ACTIONS(85), + [anon_sym_ATstory] = ACTIONS(87), + [anon_sym_ATbefore] = ACTIONS(89), + [anon_sym_ATafter] = ACTIONS(91), + [anon_sym_ATsuccess] = ACTIONS(93), + [anon_sym_ATfinished] = ACTIONS(95), + [anon_sym_ATpersist] = ACTIONS(97), + [anon_sym_ATteleport] = ACTIONS(99), + [anon_sym_ATvolt] = ACTIONS(101), + [aux_sym__text_token1] = ACTIONS(103), + [aux_sym__text_token2] = ACTIONS(103), + [aux_sym__text_token3] = ACTIONS(105), }, [424] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5759), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(454), + [sym_keyword] = STATE(454), + [sym_php_statement] = STATE(454), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(454), + [sym__inline_directive] = STATE(454), + [sym__nested_directive] = STATE(454), + [sym_fragment] = STATE(454), + [sym_section] = STATE(454), + [sym_inlineSection] = STATE(454), + [sym_once] = STATE(454), + [sym_verbatim] = STATE(454), + [sym_stack] = STATE(454), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(454), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(454), + [sym_loop] = STATE(454), + [sym_loop_operator] = STATE(454), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(454), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(454), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(454), + [sym_text] = STATE(454), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6146), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6148), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [425] = { - [sym__definition] = STATE(423), - [sym_comment] = STATE(423), - [sym_keyword] = STATE(423), - [sym_php_statement] = STATE(423), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(423), - [sym__inline_directive] = STATE(423), - [sym__nested_directive] = STATE(423), - [sym_fragment] = STATE(423), - [sym_section] = STATE(423), - [sym_inlineSection] = STATE(423), - [sym_once] = STATE(423), - [sym_verbatim] = STATE(423), - [sym_stack] = STATE(423), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(423), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(423), - [sym_loop] = STATE(423), - [sym_loop_operator] = STATE(423), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(423), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(423), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(423), - [sym_text] = STATE(423), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5761), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6150), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [426] = { - [sym__definition] = STATE(424), - [sym_comment] = STATE(424), - [sym_keyword] = STATE(424), - [sym_php_statement] = STATE(424), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(424), - [sym__inline_directive] = STATE(424), - [sym__nested_directive] = STATE(424), - [sym_fragment] = STATE(424), - [sym_section] = STATE(424), - [sym_inlineSection] = STATE(424), - [sym_once] = STATE(424), - [sym_verbatim] = STATE(424), - [sym_stack] = STATE(424), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(424), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(424), - [sym_loop] = STATE(424), - [sym_loop_operator] = STATE(424), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(424), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(424), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(424), - [sym_text] = STATE(424), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5763), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6152), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [427] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5765), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(425), + [sym_keyword] = STATE(425), + [sym_php_statement] = STATE(425), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(425), + [sym__inline_directive] = STATE(425), + [sym__nested_directive] = STATE(425), + [sym_fragment] = STATE(425), + [sym_section] = STATE(425), + [sym_inlineSection] = STATE(425), + [sym_once] = STATE(425), + [sym_verbatim] = STATE(425), + [sym_stack] = STATE(425), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(425), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(425), + [sym_loop] = STATE(425), + [sym_loop_operator] = STATE(425), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(425), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(425), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(425), + [sym_text] = STATE(425), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6154), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6156), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [428] = { + [sym__definition] = STATE(426), + [sym_keyword] = STATE(426), + [sym_php_statement] = STATE(426), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(426), + [sym__inline_directive] = STATE(426), + [sym__nested_directive] = STATE(426), + [sym_fragment] = STATE(426), + [sym_section] = STATE(426), + [sym_inlineSection] = STATE(426), + [sym_once] = STATE(426), + [sym_verbatim] = STATE(426), + [sym_stack] = STATE(426), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(426), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(426), + [sym_loop] = STATE(426), + [sym_loop_operator] = STATE(426), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(426), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(426), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(426), + [sym_text] = STATE(426), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6158), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6160), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [429] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6162), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [430] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -78271,723 +77582,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5767), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [429] = { - [sym__definition] = STATE(427), - [sym_comment] = STATE(427), - [sym_keyword] = STATE(427), - [sym_php_statement] = STATE(427), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(427), - [sym__inline_directive] = STATE(427), - [sym__nested_directive] = STATE(427), - [sym_fragment] = STATE(427), - [sym_section] = STATE(427), - [sym_inlineSection] = STATE(427), - [sym_once] = STATE(427), - [sym_verbatim] = STATE(427), - [sym_stack] = STATE(427), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(427), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(427), - [sym_loop] = STATE(427), - [sym_loop_operator] = STATE(427), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(427), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(427), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(427), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(427), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5769), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [430] = { - [sym__definition] = STATE(622), - [sym_comment] = STATE(622), - [sym_keyword] = STATE(622), - [sym_php_statement] = STATE(622), - [sym__escaped] = STATE(2307), - [sym__unescaped] = STATE(2307), - [sym__raw] = STATE(2307), - [sym__inline_raw] = STATE(2307), - [sym__multi_line_raw] = STATE(2307), - [sym_attribute] = STATE(622), - [sym__inline_directive] = STATE(622), - [sym__nested_directive] = STATE(622), - [sym_fragment] = STATE(622), - [sym_section] = STATE(622), - [sym_inlineSection] = STATE(622), - [sym_once] = STATE(622), - [sym_verbatim] = STATE(622), - [sym_stack] = STATE(622), - [sym__push] = STATE(2308), - [sym__pushOnce] = STATE(2308), - [sym__pushIf] = STATE(2308), - [sym__prepend] = STATE(2308), - [sym__prependOnce] = STATE(2308), - [sym_conditional] = STATE(622), - [sym__if] = STATE(2309), - [sym__unless] = STATE(2309), - [sym__isset] = STATE(2309), - [sym__empty] = STATE(2309), - [sym__auth] = STATE(2309), - [sym__guest] = STATE(2309), - [sym__production] = STATE(2309), - [sym__env] = STATE(2309), - [sym__hasSection] = STATE(2309), - [sym__sectionMissing] = STATE(2309), - [sym__error] = STATE(2309), - [sym_authorization] = STATE(2309), - [sym__can] = STATE(2310), - [sym__cannot] = STATE(2310), - [sym__canany] = STATE(2310), - [sym__feature] = STATE(2309), - [sym__custom] = STATE(2309), - [sym_switch] = STATE(622), - [sym_loop] = STATE(622), - [sym_loop_operator] = STATE(622), - [sym__for] = STATE(2311), - [sym__foreach] = STATE(2311), - [sym__forelse] = STATE(2311), - [sym__while] = STATE(2311), - [sym_envoy] = STATE(622), - [sym__setup] = STATE(2307), - [sym__task] = STATE(2312), - [sym__story] = STATE(2312), - [sym__hooks] = STATE(2307), - [sym__before] = STATE(2307), - [sym__after] = STATE(2307), - [sym__envoy_error] = STATE(2307), - [sym__success] = STATE(2307), - [sym__finished] = STATE(2307), - [sym_livewire] = STATE(622), - [sym__persist] = STATE(2313), - [sym__teleport] = STATE(2313), - [sym__volt] = STATE(2313), - [aux_sym__directive_body] = STATE(622), - [sym_text] = STATE(622), - [sym__text] = STATE(984), - [aux_sym_php_only_repeat1] = STATE(984), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5537), - [aux_sym_keyword_token1] = ACTIONS(5539), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5541), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5543), - [anon_sym_ATphp] = ACTIONS(5545), - [aux_sym_attribute_token1] = ACTIONS(5547), - [aux_sym__inline_directive_token1] = ACTIONS(5549), - [anon_sym_ATfragment] = ACTIONS(5551), - [anon_sym_ATsection] = ACTIONS(5553), - [anon_sym_ATonce] = ACTIONS(5555), - [anon_sym_ATverbatim] = ACTIONS(5557), - [anon_sym_ATpush] = ACTIONS(5559), - [anon_sym_ATpushOnce] = ACTIONS(5561), - [anon_sym_ATpushIf] = ACTIONS(5563), - [anon_sym_ATprepend] = ACTIONS(5565), - [anon_sym_ATprependOnce] = ACTIONS(5567), - [anon_sym_ATif] = ACTIONS(5569), - [anon_sym_ATunless] = ACTIONS(5571), - [anon_sym_ATisset] = ACTIONS(5573), - [anon_sym_ATempty] = ACTIONS(5575), - [anon_sym_ATauth] = ACTIONS(5577), - [anon_sym_ATguest] = ACTIONS(5579), - [anon_sym_ATproduction] = ACTIONS(5581), - [anon_sym_ATenv] = ACTIONS(5583), - [anon_sym_AThasSection] = ACTIONS(5585), - [anon_sym_ATsectionMissing] = ACTIONS(5587), - [anon_sym_ATerror] = ACTIONS(5589), - [anon_sym_ATcan] = ACTIONS(5591), - [anon_sym_ATcannot] = ACTIONS(5593), - [anon_sym_ATcanany] = ACTIONS(5595), - [anon_sym_ATfeature] = ACTIONS(5597), - [aux_sym__custom_token1] = ACTIONS(5599), - [aux_sym__custom_token2] = ACTIONS(5601), - [anon_sym_ATswitch] = ACTIONS(5603), - [aux_sym_loop_operator_token1] = ACTIONS(5605), - [anon_sym_ATfor] = ACTIONS(5607), - [anon_sym_ATforeach] = ACTIONS(5609), - [anon_sym_ATendforeach] = ACTIONS(4626), - [anon_sym_ATforelse] = ACTIONS(5611), - [anon_sym_ATwhile] = ACTIONS(5613), - [anon_sym_ATsetup] = ACTIONS(5615), - [anon_sym_ATtask] = ACTIONS(5617), - [anon_sym_ATstory] = ACTIONS(5619), - [anon_sym_ATbefore] = ACTIONS(5621), - [anon_sym_ATafter] = ACTIONS(5623), - [anon_sym_ATsuccess] = ACTIONS(5625), - [anon_sym_ATfinished] = ACTIONS(5627), - [anon_sym_ATpersist] = ACTIONS(5629), - [anon_sym_ATteleport] = ACTIONS(5631), - [anon_sym_ATvolt] = ACTIONS(5633), - [aux_sym__text_token1] = ACTIONS(5635), - [aux_sym__text_token2] = ACTIONS(5635), - [aux_sym__text_token3] = ACTIONS(5637), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6164), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [431] = { - [sym__definition] = STATE(431), - [sym_comment] = STATE(431), - [sym_keyword] = STATE(431), - [sym_php_statement] = STATE(431), - [sym__escaped] = STATE(2052), - [sym__unescaped] = STATE(2052), - [sym__raw] = STATE(2052), - [sym__inline_raw] = STATE(2052), - [sym__multi_line_raw] = STATE(2052), - [sym_attribute] = STATE(431), - [sym__inline_directive] = STATE(431), - [sym__nested_directive] = STATE(431), - [sym_fragment] = STATE(431), - [sym_section] = STATE(431), - [sym_inlineSection] = STATE(431), - [sym_once] = STATE(431), - [sym_verbatim] = STATE(431), - [sym_stack] = STATE(431), - [sym__push] = STATE(2051), - [sym__pushOnce] = STATE(2051), - [sym__pushIf] = STATE(2051), - [sym__prepend] = STATE(2051), - [sym__prependOnce] = STATE(2051), - [sym_conditional] = STATE(431), - [sym__if] = STATE(2050), - [sym__unless] = STATE(2050), - [sym__isset] = STATE(2050), - [sym__empty] = STATE(2050), - [sym__auth] = STATE(2050), - [sym__guest] = STATE(2050), - [sym__production] = STATE(2050), - [sym__env] = STATE(2050), - [sym__hasSection] = STATE(2050), - [sym__sectionMissing] = STATE(2050), - [sym__error] = STATE(2050), - [sym_authorization] = STATE(2050), - [sym__can] = STATE(2049), - [sym__cannot] = STATE(2049), - [sym__canany] = STATE(2049), - [sym__feature] = STATE(2050), - [sym__custom] = STATE(2050), - [sym_switch] = STATE(431), - [sym_loop] = STATE(431), - [sym_loop_operator] = STATE(431), - [sym__for] = STATE(2048), - [sym__foreach] = STATE(2048), - [sym__forelse] = STATE(2048), - [sym__while] = STATE(2048), - [sym_envoy] = STATE(431), - [sym__setup] = STATE(2052), - [sym__task] = STATE(2047), - [sym__story] = STATE(2047), - [sym__hooks] = STATE(2052), - [sym__before] = STATE(2052), - [sym__after] = STATE(2052), - [sym__envoy_error] = STATE(2052), - [sym__success] = STATE(2052), - [sym__finished] = STATE(2052), - [sym_livewire] = STATE(431), - [sym__persist] = STATE(2046), - [sym__teleport] = STATE(2046), - [sym__volt] = STATE(2046), - [aux_sym__directive_body] = STATE(431), - [sym_text] = STATE(431), - [sym__text] = STATE(1373), - [aux_sym_php_only_repeat1] = STATE(1373), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5771), - [aux_sym_keyword_token1] = ACTIONS(5774), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5777), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5780), - [anon_sym_ATphp] = ACTIONS(5783), - [aux_sym_attribute_token1] = ACTIONS(5786), - [aux_sym__inline_directive_token1] = ACTIONS(5789), - [anon_sym_ATfragment] = ACTIONS(5792), - [anon_sym_ATsection] = ACTIONS(5795), - [anon_sym_ATonce] = ACTIONS(5798), - [anon_sym_ATverbatim] = ACTIONS(5801), - [anon_sym_ATpush] = ACTIONS(5804), - [anon_sym_ATpushOnce] = ACTIONS(5807), - [anon_sym_ATpushIf] = ACTIONS(5810), - [anon_sym_ATprepend] = ACTIONS(5813), - [anon_sym_ATprependOnce] = ACTIONS(5816), - [anon_sym_ATendPrependOnce] = ACTIONS(3925), - [anon_sym_ATif] = ACTIONS(5819), - [anon_sym_ATunless] = ACTIONS(5822), - [anon_sym_ATisset] = ACTIONS(5825), - [anon_sym_ATempty] = ACTIONS(5828), - [anon_sym_ATauth] = ACTIONS(5831), - [anon_sym_ATguest] = ACTIONS(5834), - [anon_sym_ATproduction] = ACTIONS(5837), - [anon_sym_ATenv] = ACTIONS(5840), - [anon_sym_AThasSection] = ACTIONS(5843), - [anon_sym_ATsectionMissing] = ACTIONS(5846), - [anon_sym_ATerror] = ACTIONS(5849), - [anon_sym_ATcan] = ACTIONS(5852), - [anon_sym_ATcannot] = ACTIONS(5855), - [anon_sym_ATcanany] = ACTIONS(5858), - [anon_sym_ATfeature] = ACTIONS(5861), - [aux_sym__custom_token1] = ACTIONS(5864), - [aux_sym__custom_token2] = ACTIONS(5867), - [anon_sym_ATswitch] = ACTIONS(5870), - [aux_sym_loop_operator_token1] = ACTIONS(5873), - [anon_sym_ATfor] = ACTIONS(5876), - [anon_sym_ATforeach] = ACTIONS(5879), - [anon_sym_ATforelse] = ACTIONS(5882), - [anon_sym_ATwhile] = ACTIONS(5885), - [anon_sym_ATsetup] = ACTIONS(5888), - [anon_sym_ATtask] = ACTIONS(5891), - [anon_sym_ATstory] = ACTIONS(5894), - [anon_sym_ATbefore] = ACTIONS(5897), - [anon_sym_ATafter] = ACTIONS(5900), - [anon_sym_ATsuccess] = ACTIONS(5903), - [anon_sym_ATfinished] = ACTIONS(5906), - [anon_sym_ATpersist] = ACTIONS(5909), - [anon_sym_ATteleport] = ACTIONS(5912), - [anon_sym_ATvolt] = ACTIONS(5915), - [aux_sym__text_token1] = ACTIONS(5918), - [aux_sym__text_token2] = ACTIONS(5918), - [aux_sym__text_token3] = ACTIONS(5921), + [sym__definition] = STATE(538), + [sym_keyword] = STATE(538), + [sym_php_statement] = STATE(538), + [sym__escaped] = STATE(2175), + [sym__unescaped] = STATE(2175), + [sym__raw] = STATE(2175), + [sym__inline_raw] = STATE(2175), + [sym__multi_line_raw] = STATE(2175), + [sym_attribute] = STATE(538), + [sym__inline_directive] = STATE(538), + [sym__nested_directive] = STATE(538), + [sym_fragment] = STATE(538), + [sym_section] = STATE(538), + [sym_inlineSection] = STATE(538), + [sym_once] = STATE(538), + [sym_verbatim] = STATE(538), + [sym_stack] = STATE(538), + [sym__push] = STATE(2176), + [sym__pushOnce] = STATE(2176), + [sym__pushIf] = STATE(2176), + [sym__prepend] = STATE(2176), + [sym__prependOnce] = STATE(2176), + [sym_conditional] = STATE(538), + [sym__if] = STATE(2177), + [sym__unless] = STATE(2177), + [sym__isset] = STATE(2177), + [sym__empty] = STATE(2177), + [sym__auth] = STATE(2177), + [sym__guest] = STATE(2177), + [sym__production] = STATE(2177), + [sym__env] = STATE(2177), + [sym__hasSection] = STATE(2177), + [sym__sectionMissing] = STATE(2177), + [sym__error] = STATE(2177), + [sym_authorization] = STATE(2177), + [sym__can] = STATE(2178), + [sym__cannot] = STATE(2178), + [sym__canany] = STATE(2178), + [sym__feature] = STATE(2177), + [sym__custom] = STATE(2177), + [sym_switch] = STATE(538), + [sym_loop] = STATE(538), + [sym_loop_operator] = STATE(538), + [sym__for] = STATE(2179), + [sym__foreach] = STATE(2179), + [sym__forelse] = STATE(2179), + [sym__while] = STATE(2179), + [sym_envoy] = STATE(538), + [sym__setup] = STATE(2175), + [sym__task] = STATE(2180), + [sym__story] = STATE(2180), + [sym__hooks] = STATE(2175), + [sym__before] = STATE(2175), + [sym__after] = STATE(2175), + [sym__envoy_error] = STATE(2175), + [sym__success] = STATE(2175), + [sym__finished] = STATE(2175), + [sym_livewire] = STATE(538), + [sym__persist] = STATE(2181), + [sym__teleport] = STATE(2181), + [sym__volt] = STATE(2181), + [aux_sym__directive_body] = STATE(538), + [sym_text] = STATE(538), + [sym__text] = STATE(1001), + [aux_sym_php_only_repeat1] = STATE(1001), + [sym_comment] = ACTIONS(6166), + [aux_sym_keyword_token1] = ACTIONS(6168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6170), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6172), + [anon_sym_ATphp] = ACTIONS(6174), + [aux_sym_attribute_token1] = ACTIONS(6176), + [aux_sym__inline_directive_token1] = ACTIONS(6178), + [anon_sym_ATfragment] = ACTIONS(6180), + [anon_sym_ATsection] = ACTIONS(6182), + [anon_sym_ATonce] = ACTIONS(6184), + [anon_sym_ATverbatim] = ACTIONS(6186), + [anon_sym_ATpush] = ACTIONS(6188), + [anon_sym_ATpushOnce] = ACTIONS(6190), + [anon_sym_ATpushIf] = ACTIONS(6192), + [anon_sym_ATprepend] = ACTIONS(6194), + [anon_sym_ATprependOnce] = ACTIONS(6196), + [anon_sym_ATif] = ACTIONS(6198), + [anon_sym_ATunless] = ACTIONS(6200), + [anon_sym_ATisset] = ACTIONS(6202), + [anon_sym_ATempty] = ACTIONS(6204), + [anon_sym_ATauth] = ACTIONS(6206), + [anon_sym_ATguest] = ACTIONS(6208), + [anon_sym_ATproduction] = ACTIONS(6210), + [anon_sym_ATenv] = ACTIONS(6212), + [anon_sym_AThasSection] = ACTIONS(6214), + [anon_sym_ATsectionMissing] = ACTIONS(6216), + [anon_sym_ATerror] = ACTIONS(6218), + [anon_sym_ATcan] = ACTIONS(6220), + [anon_sym_ATcannot] = ACTIONS(6222), + [anon_sym_ATcanany] = ACTIONS(6224), + [anon_sym_ATfeature] = ACTIONS(6226), + [aux_sym__custom_token1] = ACTIONS(6228), + [aux_sym__custom_token2] = ACTIONS(6230), + [anon_sym_ATswitch] = ACTIONS(6232), + [aux_sym_loop_operator_token1] = ACTIONS(6234), + [anon_sym_ATfor] = ACTIONS(6236), + [anon_sym_ATendfor] = ACTIONS(4996), + [anon_sym_ATforeach] = ACTIONS(6238), + [anon_sym_ATforelse] = ACTIONS(6240), + [anon_sym_ATwhile] = ACTIONS(6242), + [anon_sym_ATsetup] = ACTIONS(6244), + [anon_sym_ATtask] = ACTIONS(6246), + [anon_sym_ATstory] = ACTIONS(6248), + [anon_sym_ATbefore] = ACTIONS(6250), + [anon_sym_ATafter] = ACTIONS(6252), + [anon_sym_ATsuccess] = ACTIONS(6254), + [anon_sym_ATfinished] = ACTIONS(6256), + [anon_sym_ATpersist] = ACTIONS(6258), + [anon_sym_ATteleport] = ACTIONS(6260), + [anon_sym_ATvolt] = ACTIONS(6262), + [aux_sym__text_token1] = ACTIONS(6264), + [aux_sym__text_token2] = ACTIONS(6264), + [aux_sym__text_token3] = ACTIONS(6266), }, [432] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5769), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(429), + [sym_keyword] = STATE(429), + [sym_php_statement] = STATE(429), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(429), + [sym__inline_directive] = STATE(429), + [sym__nested_directive] = STATE(429), + [sym_fragment] = STATE(429), + [sym_section] = STATE(429), + [sym_inlineSection] = STATE(429), + [sym_once] = STATE(429), + [sym_verbatim] = STATE(429), + [sym_stack] = STATE(429), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(429), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(429), + [sym_loop] = STATE(429), + [sym_loop_operator] = STATE(429), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(429), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(429), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(429), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(429), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6268), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6270), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [433] = { - [sym__definition] = STATE(428), - [sym_comment] = STATE(428), - [sym_keyword] = STATE(428), - [sym_php_statement] = STATE(428), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(428), - [sym__inline_directive] = STATE(428), - [sym__nested_directive] = STATE(428), - [sym_fragment] = STATE(428), - [sym_section] = STATE(428), - [sym_inlineSection] = STATE(428), - [sym_once] = STATE(428), - [sym_verbatim] = STATE(428), - [sym_stack] = STATE(428), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(428), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(428), - [sym_loop] = STATE(428), - [sym_loop_operator] = STATE(428), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(428), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(428), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(428), - [sym_text] = STATE(428), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5924), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6270), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [434] = { + [sym__definition] = STATE(430), + [sym_keyword] = STATE(430), + [sym_php_statement] = STATE(430), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(430), + [sym__inline_directive] = STATE(430), + [sym__nested_directive] = STATE(430), + [sym_fragment] = STATE(430), + [sym_section] = STATE(430), + [sym_inlineSection] = STATE(430), + [sym_once] = STATE(430), + [sym_verbatim] = STATE(430), + [sym_stack] = STATE(430), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(430), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(430), + [sym_loop] = STATE(430), + [sym_loop_operator] = STATE(430), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(430), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(430), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(430), + [sym_text] = STATE(430), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6272), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6274), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [435] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -78997,1570 +78182,1437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5926), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [435] = { - [sym__definition] = STATE(432), - [sym_comment] = STATE(432), - [sym_keyword] = STATE(432), - [sym_php_statement] = STATE(432), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(432), - [sym__inline_directive] = STATE(432), - [sym__nested_directive] = STATE(432), - [sym_fragment] = STATE(432), - [sym_section] = STATE(432), - [sym_inlineSection] = STATE(432), - [sym_once] = STATE(432), - [sym_verbatim] = STATE(432), - [sym_stack] = STATE(432), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(432), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(432), - [sym_loop] = STATE(432), - [sym_loop_operator] = STATE(432), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(432), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(432), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(432), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(432), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5928), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6276), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [436] = { - [sym__definition] = STATE(434), - [sym_comment] = STATE(434), - [sym_keyword] = STATE(434), - [sym_php_statement] = STATE(434), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(434), - [sym__inline_directive] = STATE(434), - [sym__nested_directive] = STATE(434), - [sym_fragment] = STATE(434), - [sym_section] = STATE(434), - [sym_inlineSection] = STATE(434), - [sym_once] = STATE(434), - [sym_verbatim] = STATE(434), - [sym_stack] = STATE(434), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(434), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(434), - [sym_loop] = STATE(434), - [sym_loop_operator] = STATE(434), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(434), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(434), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(434), - [sym_text] = STATE(434), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5930), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(433), + [sym_keyword] = STATE(433), + [sym_php_statement] = STATE(433), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(433), + [sym__inline_directive] = STATE(433), + [sym__nested_directive] = STATE(433), + [sym_fragment] = STATE(433), + [sym_section] = STATE(433), + [sym_inlineSection] = STATE(433), + [sym_once] = STATE(433), + [sym_verbatim] = STATE(433), + [sym_stack] = STATE(433), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(433), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(433), + [sym_loop] = STATE(433), + [sym_loop_operator] = STATE(433), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(433), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(433), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(433), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(433), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6278), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6280), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [437] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5932), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(435), + [sym_keyword] = STATE(435), + [sym_php_statement] = STATE(435), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(435), + [sym__inline_directive] = STATE(435), + [sym__nested_directive] = STATE(435), + [sym_fragment] = STATE(435), + [sym_section] = STATE(435), + [sym_inlineSection] = STATE(435), + [sym_once] = STATE(435), + [sym_verbatim] = STATE(435), + [sym_stack] = STATE(435), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(435), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(435), + [sym_loop] = STATE(435), + [sym_loop_operator] = STATE(435), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(435), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(435), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(435), + [sym_text] = STATE(435), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6282), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6284), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [438] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5934), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6286), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [439] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5936), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(458), + [sym_keyword] = STATE(458), + [sym_php_statement] = STATE(458), + [sym__escaped] = STATE(2666), + [sym__unescaped] = STATE(2666), + [sym__raw] = STATE(2666), + [sym__inline_raw] = STATE(2666), + [sym__multi_line_raw] = STATE(2666), + [sym_attribute] = STATE(458), + [sym__inline_directive] = STATE(458), + [sym__nested_directive] = STATE(458), + [sym_fragment] = STATE(458), + [sym_section] = STATE(458), + [sym_inlineSection] = STATE(458), + [sym_once] = STATE(458), + [sym_verbatim] = STATE(458), + [sym_stack] = STATE(458), + [sym__push] = STATE(2583), + [sym__pushOnce] = STATE(2583), + [sym__pushIf] = STATE(2583), + [sym__prepend] = STATE(2583), + [sym__prependOnce] = STATE(2583), + [sym_conditional] = STATE(458), + [sym__if] = STATE(2608), + [sym__unless] = STATE(2608), + [sym__isset] = STATE(2608), + [sym__empty] = STATE(2608), + [sym__auth] = STATE(2608), + [sym__guest] = STATE(2608), + [sym__production] = STATE(2608), + [sym__env] = STATE(2608), + [sym__hasSection] = STATE(2608), + [sym__sectionMissing] = STATE(2608), + [sym__error] = STATE(2608), + [sym_authorization] = STATE(2608), + [sym__can] = STATE(2592), + [sym__cannot] = STATE(2592), + [sym__canany] = STATE(2592), + [sym__feature] = STATE(2608), + [sym__custom] = STATE(2608), + [sym_switch] = STATE(458), + [sym_loop] = STATE(458), + [sym_loop_operator] = STATE(458), + [sym__for] = STATE(2584), + [sym__foreach] = STATE(2584), + [sym__forelse] = STATE(2584), + [sym__while] = STATE(2584), + [sym_envoy] = STATE(458), + [sym__setup] = STATE(2666), + [sym__task] = STATE(2419), + [sym__story] = STATE(2419), + [sym__hooks] = STATE(2666), + [sym__before] = STATE(2666), + [sym__after] = STATE(2666), + [sym__envoy_error] = STATE(2666), + [sym__success] = STATE(2666), + [sym__finished] = STATE(2666), + [sym_livewire] = STATE(458), + [sym__persist] = STATE(2526), + [sym__teleport] = STATE(2526), + [sym__volt] = STATE(2526), + [aux_sym__directive_body] = STATE(458), + [sym_text] = STATE(458), + [sym__text] = STATE(1078), + [aux_sym_php_only_repeat1] = STATE(1078), + [sym_comment] = ACTIONS(6288), + [aux_sym_keyword_token1] = ACTIONS(6290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6292), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6294), + [anon_sym_ATphp] = ACTIONS(6296), + [aux_sym_attribute_token1] = ACTIONS(6298), + [aux_sym__inline_directive_token1] = ACTIONS(6300), + [anon_sym_ATfragment] = ACTIONS(6302), + [anon_sym_ATsection] = ACTIONS(6304), + [anon_sym_ATonce] = ACTIONS(6306), + [anon_sym_ATverbatim] = ACTIONS(6308), + [anon_sym_ATpush] = ACTIONS(6310), + [anon_sym_ATpushOnce] = ACTIONS(6312), + [anon_sym_ATpushIf] = ACTIONS(6314), + [anon_sym_ATendPushIf] = ACTIONS(4609), + [anon_sym_ATprepend] = ACTIONS(6316), + [anon_sym_ATprependOnce] = ACTIONS(6318), + [anon_sym_ATif] = ACTIONS(6320), + [anon_sym_ATunless] = ACTIONS(6322), + [anon_sym_ATisset] = ACTIONS(6324), + [anon_sym_ATempty] = ACTIONS(6326), + [anon_sym_ATauth] = ACTIONS(6328), + [anon_sym_ATguest] = ACTIONS(6330), + [anon_sym_ATproduction] = ACTIONS(6332), + [anon_sym_ATenv] = ACTIONS(6334), + [anon_sym_AThasSection] = ACTIONS(6336), + [anon_sym_ATsectionMissing] = ACTIONS(6338), + [anon_sym_ATerror] = ACTIONS(6340), + [anon_sym_ATcan] = ACTIONS(6342), + [anon_sym_ATcannot] = ACTIONS(6344), + [anon_sym_ATcanany] = ACTIONS(6346), + [anon_sym_ATfeature] = ACTIONS(6348), + [aux_sym__custom_token1] = ACTIONS(6350), + [aux_sym__custom_token2] = ACTIONS(6352), + [anon_sym_ATswitch] = ACTIONS(6354), + [aux_sym_loop_operator_token1] = ACTIONS(6356), + [anon_sym_ATfor] = ACTIONS(6358), + [anon_sym_ATforeach] = ACTIONS(6360), + [anon_sym_ATforelse] = ACTIONS(6362), + [anon_sym_ATwhile] = ACTIONS(6364), + [anon_sym_ATsetup] = ACTIONS(6366), + [anon_sym_ATtask] = ACTIONS(6368), + [anon_sym_ATstory] = ACTIONS(6370), + [anon_sym_ATbefore] = ACTIONS(6372), + [anon_sym_ATafter] = ACTIONS(6374), + [anon_sym_ATsuccess] = ACTIONS(6376), + [anon_sym_ATfinished] = ACTIONS(6378), + [anon_sym_ATpersist] = ACTIONS(6380), + [anon_sym_ATteleport] = ACTIONS(6382), + [anon_sym_ATvolt] = ACTIONS(6384), + [aux_sym__text_token1] = ACTIONS(6386), + [aux_sym__text_token2] = ACTIONS(6386), + [aux_sym__text_token3] = ACTIONS(6388), }, [440] = { - [sym__definition] = STATE(438), - [sym_comment] = STATE(438), - [sym_keyword] = STATE(438), - [sym_php_statement] = STATE(438), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(438), - [sym__inline_directive] = STATE(438), - [sym__nested_directive] = STATE(438), - [sym_fragment] = STATE(438), - [sym_section] = STATE(438), - [sym_inlineSection] = STATE(438), - [sym_once] = STATE(438), - [sym_verbatim] = STATE(438), - [sym_stack] = STATE(438), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(438), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(438), - [sym_loop] = STATE(438), - [sym_loop_operator] = STATE(438), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(438), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(438), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(438), - [sym_text] = STATE(438), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(5938), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6390), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [441] = { - [sym__definition] = STATE(439), - [sym_comment] = STATE(439), - [sym_keyword] = STATE(439), - [sym_php_statement] = STATE(439), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(439), - [sym__inline_directive] = STATE(439), - [sym__nested_directive] = STATE(439), - [sym_fragment] = STATE(439), - [sym_section] = STATE(439), - [sym_inlineSection] = STATE(439), - [sym_once] = STATE(439), - [sym_verbatim] = STATE(439), - [sym_stack] = STATE(439), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(439), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(439), - [sym_loop] = STATE(439), - [sym_loop_operator] = STATE(439), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(439), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(439), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(439), - [sym_text] = STATE(439), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(5940), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6392), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [442] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5942), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(468), + [sym_keyword] = STATE(468), + [sym_php_statement] = STATE(468), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(468), + [sym__inline_directive] = STATE(468), + [sym__nested_directive] = STATE(468), + [sym_fragment] = STATE(468), + [sym_section] = STATE(468), + [sym_inlineSection] = STATE(468), + [sym_once] = STATE(468), + [sym_verbatim] = STATE(468), + [sym_stack] = STATE(468), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(468), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(468), + [sym_loop] = STATE(468), + [sym_loop_operator] = STATE(468), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(468), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(468), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(468), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(468), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6394), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6286), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [443] = { - [sym__definition] = STATE(654), - [sym_comment] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5944), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(440), + [sym_keyword] = STATE(440), + [sym_php_statement] = STATE(440), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(440), + [sym__inline_directive] = STATE(440), + [sym__nested_directive] = STATE(440), + [sym_fragment] = STATE(440), + [sym_section] = STATE(440), + [sym_inlineSection] = STATE(440), + [sym_once] = STATE(440), + [sym_verbatim] = STATE(440), + [sym_stack] = STATE(440), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(440), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(440), + [sym_loop] = STATE(440), + [sym_loop_operator] = STATE(440), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(440), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(440), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(440), + [sym_text] = STATE(440), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6396), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6398), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [444] = { - [sym__definition] = STATE(442), - [sym_comment] = STATE(442), - [sym_keyword] = STATE(442), - [sym_php_statement] = STATE(442), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(442), - [sym__inline_directive] = STATE(442), - [sym__nested_directive] = STATE(442), - [sym_fragment] = STATE(442), - [sym_section] = STATE(442), - [sym_inlineSection] = STATE(442), - [sym_once] = STATE(442), - [sym_verbatim] = STATE(442), - [sym_stack] = STATE(442), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(442), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(442), - [sym_loop] = STATE(442), - [sym_loop_operator] = STATE(442), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(442), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(442), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(442), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(442), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5946), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(568), + [sym_keyword] = STATE(568), + [sym_php_statement] = STATE(568), + [sym__escaped] = STATE(1993), + [sym__unescaped] = STATE(1993), + [sym__raw] = STATE(1993), + [sym__inline_raw] = STATE(1993), + [sym__multi_line_raw] = STATE(1993), + [sym_attribute] = STATE(568), + [sym__inline_directive] = STATE(568), + [sym__nested_directive] = STATE(568), + [sym_fragment] = STATE(568), + [sym_section] = STATE(568), + [sym_inlineSection] = STATE(568), + [sym_once] = STATE(568), + [sym_verbatim] = STATE(568), + [sym_stack] = STATE(568), + [sym__push] = STATE(2111), + [sym__pushOnce] = STATE(2111), + [sym__pushIf] = STATE(2111), + [sym__prepend] = STATE(2111), + [sym__prependOnce] = STATE(2111), + [sym_conditional] = STATE(568), + [sym__if] = STATE(2008), + [sym__unless] = STATE(2008), + [sym__isset] = STATE(2008), + [sym__empty] = STATE(2008), + [sym__auth] = STATE(2008), + [sym__guest] = STATE(2008), + [sym__production] = STATE(2008), + [sym__env] = STATE(2008), + [sym__hasSection] = STATE(2008), + [sym__sectionMissing] = STATE(2008), + [sym__error] = STATE(2008), + [sym_authorization] = STATE(2008), + [sym__can] = STATE(2011), + [sym__cannot] = STATE(2011), + [sym__canany] = STATE(2011), + [sym__feature] = STATE(2008), + [sym__custom] = STATE(2008), + [sym_switch] = STATE(568), + [sym_loop] = STATE(568), + [sym_loop_operator] = STATE(568), + [sym__for] = STATE(2025), + [sym__foreach] = STATE(2025), + [sym__forelse] = STATE(2025), + [sym__while] = STATE(2025), + [sym_envoy] = STATE(568), + [sym__setup] = STATE(1993), + [sym__task] = STATE(2065), + [sym__story] = STATE(2065), + [sym__hooks] = STATE(1993), + [sym__before] = STATE(1993), + [sym__after] = STATE(1993), + [sym__envoy_error] = STATE(1993), + [sym__success] = STATE(1993), + [sym__finished] = STATE(1993), + [sym_livewire] = STATE(568), + [sym__persist] = STATE(2070), + [sym__teleport] = STATE(2070), + [sym__volt] = STATE(2070), + [aux_sym__directive_body] = STATE(568), + [sym_text] = STATE(568), + [sym__text] = STATE(1106), + [aux_sym_php_only_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(6400), + [aux_sym_keyword_token1] = ACTIONS(6402), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6404), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6406), + [anon_sym_ATphp] = ACTIONS(6408), + [aux_sym_attribute_token1] = ACTIONS(6410), + [aux_sym__inline_directive_token1] = ACTIONS(6412), + [anon_sym_ATfragment] = ACTIONS(6414), + [anon_sym_ATendfragment] = ACTIONS(4609), + [anon_sym_ATsection] = ACTIONS(6416), + [anon_sym_ATonce] = ACTIONS(6418), + [anon_sym_ATverbatim] = ACTIONS(6420), + [anon_sym_ATpush] = ACTIONS(6422), + [anon_sym_ATpushOnce] = ACTIONS(6424), + [anon_sym_ATpushIf] = ACTIONS(6426), + [anon_sym_ATprepend] = ACTIONS(6428), + [anon_sym_ATprependOnce] = ACTIONS(6430), + [anon_sym_ATif] = ACTIONS(6432), + [anon_sym_ATunless] = ACTIONS(6434), + [anon_sym_ATisset] = ACTIONS(6436), + [anon_sym_ATempty] = ACTIONS(6438), + [anon_sym_ATauth] = ACTIONS(6440), + [anon_sym_ATguest] = ACTIONS(6442), + [anon_sym_ATproduction] = ACTIONS(6444), + [anon_sym_ATenv] = ACTIONS(6446), + [anon_sym_AThasSection] = ACTIONS(6448), + [anon_sym_ATsectionMissing] = ACTIONS(6450), + [anon_sym_ATerror] = ACTIONS(6452), + [anon_sym_ATcan] = ACTIONS(6454), + [anon_sym_ATcannot] = ACTIONS(6456), + [anon_sym_ATcanany] = ACTIONS(6458), + [anon_sym_ATfeature] = ACTIONS(6460), + [aux_sym__custom_token1] = ACTIONS(6462), + [aux_sym__custom_token2] = ACTIONS(6464), + [anon_sym_ATswitch] = ACTIONS(6466), + [aux_sym_loop_operator_token1] = ACTIONS(6468), + [anon_sym_ATfor] = ACTIONS(6470), + [anon_sym_ATforeach] = ACTIONS(6472), + [anon_sym_ATforelse] = ACTIONS(6474), + [anon_sym_ATwhile] = ACTIONS(6476), + [anon_sym_ATsetup] = ACTIONS(6478), + [anon_sym_ATtask] = ACTIONS(6480), + [anon_sym_ATstory] = ACTIONS(6482), + [anon_sym_ATbefore] = ACTIONS(6484), + [anon_sym_ATafter] = ACTIONS(6486), + [anon_sym_ATsuccess] = ACTIONS(6488), + [anon_sym_ATfinished] = ACTIONS(6490), + [anon_sym_ATpersist] = ACTIONS(6492), + [anon_sym_ATteleport] = ACTIONS(6494), + [anon_sym_ATvolt] = ACTIONS(6496), + [aux_sym__text_token1] = ACTIONS(6498), + [aux_sym__text_token2] = ACTIONS(6498), + [aux_sym__text_token3] = ACTIONS(6500), }, [445] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5946), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(441), + [sym_keyword] = STATE(441), + [sym_php_statement] = STATE(441), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(441), + [sym__inline_directive] = STATE(441), + [sym__nested_directive] = STATE(441), + [sym_fragment] = STATE(441), + [sym_section] = STATE(441), + [sym_inlineSection] = STATE(441), + [sym_once] = STATE(441), + [sym_verbatim] = STATE(441), + [sym_stack] = STATE(441), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(441), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(441), + [sym_loop] = STATE(441), + [sym_loop_operator] = STATE(441), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(441), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(441), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(441), + [sym_text] = STATE(441), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6502), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6504), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [446] = { - [sym__definition] = STATE(443), - [sym_comment] = STATE(443), - [sym_keyword] = STATE(443), - [sym_php_statement] = STATE(443), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(443), - [sym__inline_directive] = STATE(443), - [sym__nested_directive] = STATE(443), - [sym_fragment] = STATE(443), - [sym_section] = STATE(443), - [sym_inlineSection] = STATE(443), - [sym_once] = STATE(443), - [sym_verbatim] = STATE(443), - [sym_stack] = STATE(443), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(443), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(443), - [sym_loop] = STATE(443), - [sym_loop_operator] = STATE(443), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(443), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(443), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(443), - [sym_text] = STATE(443), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5948), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6506), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [447] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -80570,360 +79622,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(5950), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6508), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [448] = { - [sym__definition] = STATE(468), - [sym_comment] = STATE(468), - [sym_keyword] = STATE(468), - [sym_php_statement] = STATE(468), - [sym__escaped] = STATE(2221), - [sym__unescaped] = STATE(2221), - [sym__raw] = STATE(2221), - [sym__inline_raw] = STATE(2221), - [sym__multi_line_raw] = STATE(2221), - [sym_attribute] = STATE(468), - [sym__inline_directive] = STATE(468), - [sym__nested_directive] = STATE(468), - [sym_fragment] = STATE(468), - [sym_section] = STATE(468), - [sym_inlineSection] = STATE(468), - [sym_once] = STATE(468), - [sym_verbatim] = STATE(468), - [sym_stack] = STATE(468), - [sym__push] = STATE(2219), - [sym__pushOnce] = STATE(2219), - [sym__pushIf] = STATE(2219), - [sym__prepend] = STATE(2219), - [sym__prependOnce] = STATE(2219), - [sym_conditional] = STATE(468), - [sym__if] = STATE(2213), - [sym__unless] = STATE(2213), - [sym__isset] = STATE(2213), - [sym__empty] = STATE(2213), - [sym__auth] = STATE(2213), - [sym__guest] = STATE(2213), - [sym__production] = STATE(2213), - [sym__env] = STATE(2213), - [sym__hasSection] = STATE(2213), - [sym__sectionMissing] = STATE(2213), - [sym__error] = STATE(2213), - [sym_authorization] = STATE(2213), - [sym__can] = STATE(2217), - [sym__cannot] = STATE(2217), - [sym__canany] = STATE(2217), - [sym__feature] = STATE(2213), - [sym__custom] = STATE(2213), - [sym_switch] = STATE(468), - [sym_loop] = STATE(468), - [sym_loop_operator] = STATE(468), - [sym__for] = STATE(2216), - [sym__foreach] = STATE(2216), - [sym__forelse] = STATE(2216), - [sym__while] = STATE(2216), - [sym_envoy] = STATE(468), - [sym__setup] = STATE(2221), - [sym__task] = STATE(2215), - [sym__story] = STATE(2215), - [sym__hooks] = STATE(2221), - [sym__before] = STATE(2221), - [sym__after] = STATE(2221), - [sym__envoy_error] = STATE(2221), - [sym__success] = STATE(2221), - [sym__finished] = STATE(2221), - [sym_livewire] = STATE(468), - [sym__persist] = STATE(2214), - [sym__teleport] = STATE(2214), - [sym__volt] = STATE(2214), - [aux_sym__directive_body] = STATE(468), - [sym_text] = STATE(468), - [sym__text] = STATE(1193), - [aux_sym_php_only_repeat1] = STATE(1193), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5952), - [aux_sym_keyword_token1] = ACTIONS(5954), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5956), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5958), - [anon_sym_ATphp] = ACTIONS(5960), - [aux_sym_attribute_token1] = ACTIONS(5962), - [aux_sym__inline_directive_token1] = ACTIONS(5964), - [anon_sym_ATfragment] = ACTIONS(5966), - [anon_sym_ATsection] = ACTIONS(5968), - [anon_sym_ATonce] = ACTIONS(5970), - [anon_sym_ATverbatim] = ACTIONS(5972), - [anon_sym_ATpush] = ACTIONS(5974), - [anon_sym_ATpushOnce] = ACTIONS(5976), - [anon_sym_ATpushIf] = ACTIONS(5978), - [anon_sym_ATendPushIf] = ACTIONS(4712), - [anon_sym_ATprepend] = ACTIONS(5980), - [anon_sym_ATprependOnce] = ACTIONS(5982), - [anon_sym_ATif] = ACTIONS(5984), - [anon_sym_ATunless] = ACTIONS(5986), - [anon_sym_ATisset] = ACTIONS(5988), - [anon_sym_ATempty] = ACTIONS(5990), - [anon_sym_ATauth] = ACTIONS(5992), - [anon_sym_ATguest] = ACTIONS(5994), - [anon_sym_ATproduction] = ACTIONS(5996), - [anon_sym_ATenv] = ACTIONS(5998), - [anon_sym_AThasSection] = ACTIONS(6000), - [anon_sym_ATsectionMissing] = ACTIONS(6002), - [anon_sym_ATerror] = ACTIONS(6004), - [anon_sym_ATcan] = ACTIONS(6006), - [anon_sym_ATcannot] = ACTIONS(6008), - [anon_sym_ATcanany] = ACTIONS(6010), - [anon_sym_ATfeature] = ACTIONS(6012), - [aux_sym__custom_token1] = ACTIONS(6014), - [aux_sym__custom_token2] = ACTIONS(6016), - [anon_sym_ATswitch] = ACTIONS(6018), - [aux_sym_loop_operator_token1] = ACTIONS(6020), - [anon_sym_ATfor] = ACTIONS(6022), - [anon_sym_ATforeach] = ACTIONS(6024), - [anon_sym_ATforelse] = ACTIONS(6026), - [anon_sym_ATwhile] = ACTIONS(6028), - [anon_sym_ATsetup] = ACTIONS(6030), - [anon_sym_ATtask] = ACTIONS(6032), - [anon_sym_ATstory] = ACTIONS(6034), - [anon_sym_ATbefore] = ACTIONS(6036), - [anon_sym_ATafter] = ACTIONS(6038), - [anon_sym_ATsuccess] = ACTIONS(6040), - [anon_sym_ATfinished] = ACTIONS(6042), - [anon_sym_ATpersist] = ACTIONS(6044), - [anon_sym_ATteleport] = ACTIONS(6046), - [anon_sym_ATvolt] = ACTIONS(6048), - [aux_sym__text_token1] = ACTIONS(6050), - [aux_sym__text_token2] = ACTIONS(6050), - [aux_sym__text_token3] = ACTIONS(6052), + [sym__definition] = STATE(446), + [sym_keyword] = STATE(446), + [sym_php_statement] = STATE(446), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(446), + [sym__inline_directive] = STATE(446), + [sym__nested_directive] = STATE(446), + [sym_fragment] = STATE(446), + [sym_section] = STATE(446), + [sym_inlineSection] = STATE(446), + [sym_once] = STATE(446), + [sym_verbatim] = STATE(446), + [sym_stack] = STATE(446), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(446), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(446), + [sym_loop] = STATE(446), + [sym_loop_operator] = STATE(446), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(446), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(446), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(446), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(446), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6510), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6512), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [449] = { - [sym__definition] = STATE(445), - [sym_comment] = STATE(445), - [sym_keyword] = STATE(445), - [sym_php_statement] = STATE(445), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(445), - [sym__inline_directive] = STATE(445), - [sym__nested_directive] = STATE(445), - [sym_fragment] = STATE(445), - [sym_section] = STATE(445), - [sym_inlineSection] = STATE(445), - [sym_once] = STATE(445), - [sym_verbatim] = STATE(445), - [sym_stack] = STATE(445), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(445), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(445), - [sym_loop] = STATE(445), - [sym_loop_operator] = STATE(445), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(445), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(445), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(445), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(445), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6054), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6512), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [450] = { [sym__definition] = STATE(447), - [sym_comment] = STATE(447), [sym_keyword] = STATE(447), [sym_php_statement] = STATE(447), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(447), [sym__inline_directive] = STATE(447), [sym__nested_directive] = STATE(447), @@ -80933,239 +79982,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(447), [sym_verbatim] = STATE(447), [sym_stack] = STATE(447), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(447), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(447), [sym_loop] = STATE(447), [sym_loop_operator] = STATE(447), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(447), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(447), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(447), [sym_text] = STATE(447), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6056), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6514), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6516), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [451] = { - [sym__definition] = STATE(466), - [sym_comment] = STATE(466), - [sym_keyword] = STATE(466), - [sym_php_statement] = STATE(466), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(466), - [sym__inline_directive] = STATE(466), - [sym__nested_directive] = STATE(466), - [sym_fragment] = STATE(466), - [sym_section] = STATE(466), - [sym_inlineSection] = STATE(466), - [sym_once] = STATE(466), - [sym_verbatim] = STATE(466), - [sym_stack] = STATE(466), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(466), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(466), - [sym_loop] = STATE(466), - [sym_loop_operator] = STATE(466), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(466), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(466), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(466), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(466), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(5932), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [452] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -81175,602 +80102,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6058), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6518), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [452] = { + [sym__definition] = STATE(449), + [sym_keyword] = STATE(449), + [sym_php_statement] = STATE(449), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(449), + [sym__inline_directive] = STATE(449), + [sym__nested_directive] = STATE(449), + [sym_fragment] = STATE(449), + [sym_section] = STATE(449), + [sym_inlineSection] = STATE(449), + [sym_once] = STATE(449), + [sym_verbatim] = STATE(449), + [sym_stack] = STATE(449), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(449), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(449), + [sym_loop] = STATE(449), + [sym_loop_operator] = STATE(449), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(449), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(449), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(449), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(449), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6520), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6522), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [453] = { - [sym__definition] = STATE(651), - [sym_comment] = STATE(651), - [sym_keyword] = STATE(651), - [sym_php_statement] = STATE(651), - [sym__escaped] = STATE(3241), - [sym__unescaped] = STATE(3241), - [sym__raw] = STATE(3241), - [sym__inline_raw] = STATE(3241), - [sym__multi_line_raw] = STATE(3241), - [sym_attribute] = STATE(651), - [sym__inline_directive] = STATE(651), - [sym__nested_directive] = STATE(651), - [sym_fragment] = STATE(651), - [sym_section] = STATE(651), - [sym_inlineSection] = STATE(651), - [sym_once] = STATE(651), - [sym_verbatim] = STATE(651), - [sym_stack] = STATE(651), - [sym__push] = STATE(3242), - [sym__pushOnce] = STATE(3242), - [sym__pushIf] = STATE(3242), - [sym__prepend] = STATE(3242), - [sym__prependOnce] = STATE(3242), - [sym_conditional] = STATE(651), - [sym__if] = STATE(3254), - [sym__unless] = STATE(3254), - [sym__isset] = STATE(3254), - [sym__empty] = STATE(3254), - [sym__auth] = STATE(3254), - [sym__guest] = STATE(3254), - [sym__production] = STATE(3254), - [sym__env] = STATE(3254), - [sym__hasSection] = STATE(3254), - [sym__sectionMissing] = STATE(3254), - [sym__error] = STATE(3254), - [sym_authorization] = STATE(3254), - [sym__can] = STATE(3258), - [sym__cannot] = STATE(3258), - [sym__canany] = STATE(3258), - [sym__feature] = STATE(3254), - [sym__custom] = STATE(3254), - [sym_switch] = STATE(651), - [sym_loop] = STATE(651), - [sym_loop_operator] = STATE(651), - [sym__for] = STATE(3259), - [sym__foreach] = STATE(3259), - [sym__forelse] = STATE(3259), - [sym__while] = STATE(3259), - [sym_envoy] = STATE(651), - [sym__setup] = STATE(3241), - [sym__task] = STATE(3280), - [sym__story] = STATE(3280), - [sym__hooks] = STATE(3241), - [sym__before] = STATE(3241), - [sym__after] = STATE(3241), - [sym__envoy_error] = STATE(3241), - [sym__success] = STATE(3241), - [sym__finished] = STATE(3241), - [sym_livewire] = STATE(651), - [sym__persist] = STATE(3262), - [sym__teleport] = STATE(3262), - [sym__volt] = STATE(3262), - [sym_text] = STATE(651), - [sym__text] = STATE(752), - [aux_sym_blade_repeat1] = STATE(651), - [aux_sym_php_only_repeat1] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(6060), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5), - [aux_sym_keyword_token1] = ACTIONS(7), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(11), - [anon_sym_ATphp] = ACTIONS(13), - [aux_sym_attribute_token1] = ACTIONS(15), - [aux_sym__inline_directive_token1] = ACTIONS(17), - [anon_sym_ATfragment] = ACTIONS(19), - [anon_sym_ATsection] = ACTIONS(21), - [anon_sym_ATonce] = ACTIONS(23), - [anon_sym_ATverbatim] = ACTIONS(25), - [anon_sym_ATpush] = ACTIONS(27), - [anon_sym_ATpushOnce] = ACTIONS(29), - [anon_sym_ATpushIf] = ACTIONS(31), - [anon_sym_ATprepend] = ACTIONS(33), - [anon_sym_ATprependOnce] = ACTIONS(35), - [anon_sym_ATif] = ACTIONS(37), - [anon_sym_ATunless] = ACTIONS(39), - [anon_sym_ATisset] = ACTIONS(41), - [anon_sym_ATempty] = ACTIONS(43), - [anon_sym_ATauth] = ACTIONS(45), - [anon_sym_ATguest] = ACTIONS(47), - [anon_sym_ATproduction] = ACTIONS(49), - [anon_sym_ATenv] = ACTIONS(51), - [anon_sym_AThasSection] = ACTIONS(53), - [anon_sym_ATsectionMissing] = ACTIONS(55), - [anon_sym_ATerror] = ACTIONS(57), - [anon_sym_ATcan] = ACTIONS(59), - [anon_sym_ATcannot] = ACTIONS(61), - [anon_sym_ATcanany] = ACTIONS(63), - [anon_sym_ATfeature] = ACTIONS(65), - [aux_sym__custom_token1] = ACTIONS(67), - [aux_sym__custom_token2] = ACTIONS(69), - [anon_sym_ATswitch] = ACTIONS(71), - [aux_sym_loop_operator_token1] = ACTIONS(73), - [anon_sym_ATfor] = ACTIONS(75), - [anon_sym_ATforeach] = ACTIONS(77), - [anon_sym_ATforelse] = ACTIONS(79), - [anon_sym_ATwhile] = ACTIONS(81), - [anon_sym_ATsetup] = ACTIONS(83), - [anon_sym_ATtask] = ACTIONS(85), - [anon_sym_ATstory] = ACTIONS(87), - [anon_sym_ATbefore] = ACTIONS(89), - [anon_sym_ATafter] = ACTIONS(91), - [anon_sym_ATsuccess] = ACTIONS(93), - [anon_sym_ATfinished] = ACTIONS(95), - [anon_sym_ATpersist] = ACTIONS(97), - [anon_sym_ATteleport] = ACTIONS(99), - [anon_sym_ATvolt] = ACTIONS(101), - [aux_sym__text_token1] = ACTIONS(103), - [aux_sym__text_token2] = ACTIONS(103), - [aux_sym__text_token3] = ACTIONS(105), + [sym__definition] = STATE(451), + [sym_keyword] = STATE(451), + [sym_php_statement] = STATE(451), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(451), + [sym__inline_directive] = STATE(451), + [sym__nested_directive] = STATE(451), + [sym_fragment] = STATE(451), + [sym_section] = STATE(451), + [sym_inlineSection] = STATE(451), + [sym_once] = STATE(451), + [sym_verbatim] = STATE(451), + [sym_stack] = STATE(451), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(451), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(451), + [sym_loop] = STATE(451), + [sym_loop_operator] = STATE(451), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(451), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(451), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(451), + [sym_text] = STATE(451), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6524), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6526), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [454] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6062), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(654), + [sym_keyword] = STATE(654), + [sym_php_statement] = STATE(654), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(654), + [sym__inline_directive] = STATE(654), + [sym__nested_directive] = STATE(654), + [sym_fragment] = STATE(654), + [sym_section] = STATE(654), + [sym_inlineSection] = STATE(654), + [sym_once] = STATE(654), + [sym_verbatim] = STATE(654), + [sym_stack] = STATE(654), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(654), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(654), + [sym_loop] = STATE(654), + [sym_loop_operator] = STATE(654), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(654), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(654), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(654), + [sym_text] = STATE(654), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6528), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [455] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6064), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6530), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [456] = { - [sym__definition] = STATE(454), - [sym_comment] = STATE(454), - [sym_keyword] = STATE(454), - [sym_php_statement] = STATE(454), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(454), - [sym__inline_directive] = STATE(454), - [sym__nested_directive] = STATE(454), - [sym_fragment] = STATE(454), - [sym_section] = STATE(454), - [sym_inlineSection] = STATE(454), - [sym_once] = STATE(454), - [sym_verbatim] = STATE(454), - [sym_stack] = STATE(454), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(454), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(454), - [sym_loop] = STATE(454), - [sym_loop_operator] = STATE(454), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(454), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(454), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(454), - [sym_text] = STATE(454), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6066), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6532), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [457] = { [sym__definition] = STATE(455), - [sym_comment] = STATE(455), [sym_keyword] = STATE(455), [sym_php_statement] = STATE(455), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(455), [sym__inline_directive] = STATE(455), [sym__nested_directive] = STATE(455), @@ -81780,723 +80822,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(455), [sym_verbatim] = STATE(455), [sym_stack] = STATE(455), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(455), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(455), [sym_loop] = STATE(455), [sym_loop_operator] = STATE(455), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(455), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(455), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(455), [sym_text] = STATE(455), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6068), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6534), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6536), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [458] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6070), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(648), + [sym_keyword] = STATE(648), + [sym_php_statement] = STATE(648), + [sym__escaped] = STATE(2666), + [sym__unescaped] = STATE(2666), + [sym__raw] = STATE(2666), + [sym__inline_raw] = STATE(2666), + [sym__multi_line_raw] = STATE(2666), + [sym_attribute] = STATE(648), + [sym__inline_directive] = STATE(648), + [sym__nested_directive] = STATE(648), + [sym_fragment] = STATE(648), + [sym_section] = STATE(648), + [sym_inlineSection] = STATE(648), + [sym_once] = STATE(648), + [sym_verbatim] = STATE(648), + [sym_stack] = STATE(648), + [sym__push] = STATE(2583), + [sym__pushOnce] = STATE(2583), + [sym__pushIf] = STATE(2583), + [sym__prepend] = STATE(2583), + [sym__prependOnce] = STATE(2583), + [sym_conditional] = STATE(648), + [sym__if] = STATE(2608), + [sym__unless] = STATE(2608), + [sym__isset] = STATE(2608), + [sym__empty] = STATE(2608), + [sym__auth] = STATE(2608), + [sym__guest] = STATE(2608), + [sym__production] = STATE(2608), + [sym__env] = STATE(2608), + [sym__hasSection] = STATE(2608), + [sym__sectionMissing] = STATE(2608), + [sym__error] = STATE(2608), + [sym_authorization] = STATE(2608), + [sym__can] = STATE(2592), + [sym__cannot] = STATE(2592), + [sym__canany] = STATE(2592), + [sym__feature] = STATE(2608), + [sym__custom] = STATE(2608), + [sym_switch] = STATE(648), + [sym_loop] = STATE(648), + [sym_loop_operator] = STATE(648), + [sym__for] = STATE(2584), + [sym__foreach] = STATE(2584), + [sym__forelse] = STATE(2584), + [sym__while] = STATE(2584), + [sym_envoy] = STATE(648), + [sym__setup] = STATE(2666), + [sym__task] = STATE(2419), + [sym__story] = STATE(2419), + [sym__hooks] = STATE(2666), + [sym__before] = STATE(2666), + [sym__after] = STATE(2666), + [sym__envoy_error] = STATE(2666), + [sym__success] = STATE(2666), + [sym__finished] = STATE(2666), + [sym_livewire] = STATE(648), + [sym__persist] = STATE(2526), + [sym__teleport] = STATE(2526), + [sym__volt] = STATE(2526), + [aux_sym__directive_body] = STATE(648), + [sym_text] = STATE(648), + [sym__text] = STATE(1078), + [aux_sym_php_only_repeat1] = STATE(1078), + [sym_comment] = ACTIONS(6538), + [aux_sym_keyword_token1] = ACTIONS(6290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6292), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6294), + [anon_sym_ATphp] = ACTIONS(6296), + [aux_sym_attribute_token1] = ACTIONS(6298), + [aux_sym__inline_directive_token1] = ACTIONS(6300), + [anon_sym_ATfragment] = ACTIONS(6302), + [anon_sym_ATsection] = ACTIONS(6304), + [anon_sym_ATonce] = ACTIONS(6306), + [anon_sym_ATverbatim] = ACTIONS(6308), + [anon_sym_ATpush] = ACTIONS(6310), + [anon_sym_ATpushOnce] = ACTIONS(6312), + [anon_sym_ATpushIf] = ACTIONS(6314), + [anon_sym_ATendPushIf] = ACTIONS(4996), + [anon_sym_ATprepend] = ACTIONS(6316), + [anon_sym_ATprependOnce] = ACTIONS(6318), + [anon_sym_ATif] = ACTIONS(6320), + [anon_sym_ATunless] = ACTIONS(6322), + [anon_sym_ATisset] = ACTIONS(6324), + [anon_sym_ATempty] = ACTIONS(6326), + [anon_sym_ATauth] = ACTIONS(6328), + [anon_sym_ATguest] = ACTIONS(6330), + [anon_sym_ATproduction] = ACTIONS(6332), + [anon_sym_ATenv] = ACTIONS(6334), + [anon_sym_AThasSection] = ACTIONS(6336), + [anon_sym_ATsectionMissing] = ACTIONS(6338), + [anon_sym_ATerror] = ACTIONS(6340), + [anon_sym_ATcan] = ACTIONS(6342), + [anon_sym_ATcannot] = ACTIONS(6344), + [anon_sym_ATcanany] = ACTIONS(6346), + [anon_sym_ATfeature] = ACTIONS(6348), + [aux_sym__custom_token1] = ACTIONS(6350), + [aux_sym__custom_token2] = ACTIONS(6352), + [anon_sym_ATswitch] = ACTIONS(6354), + [aux_sym_loop_operator_token1] = ACTIONS(6356), + [anon_sym_ATfor] = ACTIONS(6358), + [anon_sym_ATforeach] = ACTIONS(6360), + [anon_sym_ATforelse] = ACTIONS(6362), + [anon_sym_ATwhile] = ACTIONS(6364), + [anon_sym_ATsetup] = ACTIONS(6366), + [anon_sym_ATtask] = ACTIONS(6368), + [anon_sym_ATstory] = ACTIONS(6370), + [anon_sym_ATbefore] = ACTIONS(6372), + [anon_sym_ATafter] = ACTIONS(6374), + [anon_sym_ATsuccess] = ACTIONS(6376), + [anon_sym_ATfinished] = ACTIONS(6378), + [anon_sym_ATpersist] = ACTIONS(6380), + [anon_sym_ATteleport] = ACTIONS(6382), + [anon_sym_ATvolt] = ACTIONS(6384), + [aux_sym__text_token1] = ACTIONS(6386), + [aux_sym__text_token2] = ACTIONS(6386), + [aux_sym__text_token3] = ACTIONS(6388), }, [459] = { - [sym__definition] = STATE(654), - [sym_comment] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6072), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(456), + [sym_keyword] = STATE(456), + [sym_php_statement] = STATE(456), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(456), + [sym__inline_directive] = STATE(456), + [sym__nested_directive] = STATE(456), + [sym_fragment] = STATE(456), + [sym_section] = STATE(456), + [sym_inlineSection] = STATE(456), + [sym_once] = STATE(456), + [sym_verbatim] = STATE(456), + [sym_stack] = STATE(456), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(456), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(456), + [sym_loop] = STATE(456), + [sym_loop_operator] = STATE(456), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(456), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(456), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(456), + [sym_text] = STATE(456), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6540), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6542), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [460] = { - [sym__definition] = STATE(458), - [sym_comment] = STATE(458), - [sym_keyword] = STATE(458), - [sym_php_statement] = STATE(458), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(458), - [sym__inline_directive] = STATE(458), - [sym__nested_directive] = STATE(458), - [sym_fragment] = STATE(458), - [sym_section] = STATE(458), - [sym_inlineSection] = STATE(458), - [sym_once] = STATE(458), - [sym_verbatim] = STATE(458), - [sym_stack] = STATE(458), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(458), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(458), - [sym_loop] = STATE(458), - [sym_loop_operator] = STATE(458), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(458), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(458), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(458), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(458), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6074), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(460), + [sym_keyword] = STATE(460), + [sym_php_statement] = STATE(460), + [sym__escaped] = STATE(3287), + [sym__unescaped] = STATE(3287), + [sym__raw] = STATE(3287), + [sym__inline_raw] = STATE(3287), + [sym__multi_line_raw] = STATE(3287), + [sym_attribute] = STATE(460), + [sym__inline_directive] = STATE(460), + [sym__nested_directive] = STATE(460), + [sym_fragment] = STATE(460), + [sym_section] = STATE(460), + [sym_inlineSection] = STATE(460), + [sym_once] = STATE(460), + [sym_verbatim] = STATE(460), + [sym_stack] = STATE(460), + [sym__push] = STATE(3290), + [sym__pushOnce] = STATE(3290), + [sym__pushIf] = STATE(3290), + [sym__prepend] = STATE(3290), + [sym__prependOnce] = STATE(3290), + [sym_conditional] = STATE(460), + [sym__if] = STATE(3292), + [sym__unless] = STATE(3292), + [sym__isset] = STATE(3292), + [sym__empty] = STATE(3292), + [sym__auth] = STATE(3292), + [sym__guest] = STATE(3292), + [sym__production] = STATE(3292), + [sym__env] = STATE(3292), + [sym__hasSection] = STATE(3292), + [sym__sectionMissing] = STATE(3292), + [sym__error] = STATE(3292), + [sym_authorization] = STATE(3292), + [sym__can] = STATE(3293), + [sym__cannot] = STATE(3293), + [sym__canany] = STATE(3293), + [sym__feature] = STATE(3292), + [sym__custom] = STATE(3292), + [sym_switch] = STATE(460), + [sym_loop] = STATE(460), + [sym_loop_operator] = STATE(460), + [sym__for] = STATE(3295), + [sym__foreach] = STATE(3295), + [sym__forelse] = STATE(3295), + [sym__while] = STATE(3295), + [sym_envoy] = STATE(460), + [sym__setup] = STATE(3287), + [sym__task] = STATE(3297), + [sym__story] = STATE(3297), + [sym__hooks] = STATE(3287), + [sym__before] = STATE(3287), + [sym__after] = STATE(3287), + [sym__envoy_error] = STATE(3287), + [sym__success] = STATE(3287), + [sym__finished] = STATE(3287), + [sym_livewire] = STATE(460), + [sym__persist] = STATE(3303), + [sym__teleport] = STATE(3303), + [sym__volt] = STATE(3303), + [aux_sym__directive_body] = STATE(460), + [sym_text] = STATE(460), + [sym__text] = STATE(895), + [aux_sym_php_only_repeat1] = STATE(895), + [sym_comment] = ACTIONS(6544), + [aux_sym_keyword_token1] = ACTIONS(6547), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6550), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6553), + [anon_sym_ATphp] = ACTIONS(6556), + [aux_sym_attribute_token1] = ACTIONS(6559), + [aux_sym__inline_directive_token1] = ACTIONS(6562), + [anon_sym_ATfragment] = ACTIONS(6565), + [anon_sym_ATsection] = ACTIONS(6568), + [anon_sym_ATonce] = ACTIONS(6571), + [anon_sym_ATverbatim] = ACTIONS(6574), + [anon_sym_ATpush] = ACTIONS(6577), + [anon_sym_ATendpush] = ACTIONS(5035), + [anon_sym_ATpushOnce] = ACTIONS(6580), + [anon_sym_ATpushIf] = ACTIONS(6583), + [anon_sym_ATprepend] = ACTIONS(6586), + [anon_sym_ATprependOnce] = ACTIONS(6589), + [anon_sym_ATif] = ACTIONS(6592), + [anon_sym_ATunless] = ACTIONS(6595), + [anon_sym_ATisset] = ACTIONS(6598), + [anon_sym_ATempty] = ACTIONS(6601), + [anon_sym_ATauth] = ACTIONS(6604), + [anon_sym_ATguest] = ACTIONS(6607), + [anon_sym_ATproduction] = ACTIONS(6610), + [anon_sym_ATenv] = ACTIONS(6613), + [anon_sym_AThasSection] = ACTIONS(6616), + [anon_sym_ATsectionMissing] = ACTIONS(6619), + [anon_sym_ATerror] = ACTIONS(6622), + [anon_sym_ATcan] = ACTIONS(6625), + [anon_sym_ATcannot] = ACTIONS(6628), + [anon_sym_ATcanany] = ACTIONS(6631), + [anon_sym_ATfeature] = ACTIONS(6634), + [aux_sym__custom_token1] = ACTIONS(6637), + [aux_sym__custom_token2] = ACTIONS(6640), + [anon_sym_ATswitch] = ACTIONS(6643), + [aux_sym_loop_operator_token1] = ACTIONS(6646), + [anon_sym_ATfor] = ACTIONS(6649), + [anon_sym_ATforeach] = ACTIONS(6652), + [anon_sym_ATforelse] = ACTIONS(6655), + [anon_sym_ATwhile] = ACTIONS(6658), + [anon_sym_ATsetup] = ACTIONS(6661), + [anon_sym_ATtask] = ACTIONS(6664), + [anon_sym_ATstory] = ACTIONS(6667), + [anon_sym_ATbefore] = ACTIONS(6670), + [anon_sym_ATafter] = ACTIONS(6673), + [anon_sym_ATsuccess] = ACTIONS(6676), + [anon_sym_ATfinished] = ACTIONS(6679), + [anon_sym_ATpersist] = ACTIONS(6682), + [anon_sym_ATteleport] = ACTIONS(6685), + [anon_sym_ATvolt] = ACTIONS(6688), + [aux_sym__text_token1] = ACTIONS(6691), + [aux_sym__text_token2] = ACTIONS(6691), + [aux_sym__text_token3] = ACTIONS(6694), }, [461] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6074), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6697), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [462] = { - [sym__definition] = STATE(459), - [sym_comment] = STATE(459), - [sym_keyword] = STATE(459), - [sym_php_statement] = STATE(459), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(459), - [sym__inline_directive] = STATE(459), - [sym__nested_directive] = STATE(459), - [sym_fragment] = STATE(459), - [sym_section] = STATE(459), - [sym_inlineSection] = STATE(459), - [sym_once] = STATE(459), - [sym_verbatim] = STATE(459), - [sym_stack] = STATE(459), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(459), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(459), - [sym_loop] = STATE(459), - [sym_loop_operator] = STATE(459), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(459), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(459), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(459), - [sym_text] = STATE(459), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6076), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [463] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -82506,118 +81422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6078), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6699), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [464] = { + [463] = { [sym__definition] = STATE(461), - [sym_comment] = STATE(461), [sym_keyword] = STATE(461), [sym_php_statement] = STATE(461), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(461), [sym__inline_directive] = STATE(461), [sym__nested_directive] = STATE(461), @@ -82627,1207 +81542,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(461), [sym_verbatim] = STATE(461), [sym_stack] = STATE(461), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(461), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(461), [sym_loop] = STATE(461), [sym_loop_operator] = STATE(461), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(461), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(461), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(461), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(461), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6080), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6701), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6703), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [464] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6703), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [465] = { - [sym__definition] = STATE(463), - [sym_comment] = STATE(463), - [sym_keyword] = STATE(463), - [sym_php_statement] = STATE(463), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(463), - [sym__inline_directive] = STATE(463), - [sym__nested_directive] = STATE(463), - [sym_fragment] = STATE(463), - [sym_section] = STATE(463), - [sym_inlineSection] = STATE(463), - [sym_once] = STATE(463), - [sym_verbatim] = STATE(463), - [sym_stack] = STATE(463), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(463), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(463), - [sym_loop] = STATE(463), - [sym_loop_operator] = STATE(463), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(463), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(463), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(463), - [sym_text] = STATE(463), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6082), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(462), + [sym_keyword] = STATE(462), + [sym_php_statement] = STATE(462), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(462), + [sym__inline_directive] = STATE(462), + [sym__nested_directive] = STATE(462), + [sym_fragment] = STATE(462), + [sym_section] = STATE(462), + [sym_inlineSection] = STATE(462), + [sym_once] = STATE(462), + [sym_verbatim] = STATE(462), + [sym_stack] = STATE(462), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(462), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(462), + [sym_loop] = STATE(462), + [sym_loop_operator] = STATE(462), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(462), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(462), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(462), + [sym_text] = STATE(462), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6705), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6707), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [466] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6084), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [467] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6086), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [468] = { - [sym__definition] = STATE(655), - [sym_comment] = STATE(655), - [sym_keyword] = STATE(655), - [sym_php_statement] = STATE(655), - [sym__escaped] = STATE(2221), - [sym__unescaped] = STATE(2221), - [sym__raw] = STATE(2221), - [sym__inline_raw] = STATE(2221), - [sym__multi_line_raw] = STATE(2221), - [sym_attribute] = STATE(655), - [sym__inline_directive] = STATE(655), - [sym__nested_directive] = STATE(655), - [sym_fragment] = STATE(655), - [sym_section] = STATE(655), - [sym_inlineSection] = STATE(655), - [sym_once] = STATE(655), - [sym_verbatim] = STATE(655), - [sym_stack] = STATE(655), - [sym__push] = STATE(2219), - [sym__pushOnce] = STATE(2219), - [sym__pushIf] = STATE(2219), - [sym__prepend] = STATE(2219), - [sym__prependOnce] = STATE(2219), - [sym_conditional] = STATE(655), - [sym__if] = STATE(2213), - [sym__unless] = STATE(2213), - [sym__isset] = STATE(2213), - [sym__empty] = STATE(2213), - [sym__auth] = STATE(2213), - [sym__guest] = STATE(2213), - [sym__production] = STATE(2213), - [sym__env] = STATE(2213), - [sym__hasSection] = STATE(2213), - [sym__sectionMissing] = STATE(2213), - [sym__error] = STATE(2213), - [sym_authorization] = STATE(2213), - [sym__can] = STATE(2217), - [sym__cannot] = STATE(2217), - [sym__canany] = STATE(2217), - [sym__feature] = STATE(2213), - [sym__custom] = STATE(2213), - [sym_switch] = STATE(655), - [sym_loop] = STATE(655), - [sym_loop_operator] = STATE(655), - [sym__for] = STATE(2216), - [sym__foreach] = STATE(2216), - [sym__forelse] = STATE(2216), - [sym__while] = STATE(2216), - [sym_envoy] = STATE(655), - [sym__setup] = STATE(2221), - [sym__task] = STATE(2215), - [sym__story] = STATE(2215), - [sym__hooks] = STATE(2221), - [sym__before] = STATE(2221), - [sym__after] = STATE(2221), - [sym__envoy_error] = STATE(2221), - [sym__success] = STATE(2221), - [sym__finished] = STATE(2221), - [sym_livewire] = STATE(655), - [sym__persist] = STATE(2214), - [sym__teleport] = STATE(2214), - [sym__volt] = STATE(2214), - [aux_sym__directive_body] = STATE(655), - [sym_text] = STATE(655), - [sym__text] = STATE(1193), - [aux_sym_php_only_repeat1] = STATE(1193), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(5952), - [aux_sym_keyword_token1] = ACTIONS(5954), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5956), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5958), - [anon_sym_ATphp] = ACTIONS(5960), - [aux_sym_attribute_token1] = ACTIONS(5962), - [aux_sym__inline_directive_token1] = ACTIONS(5964), - [anon_sym_ATfragment] = ACTIONS(5966), - [anon_sym_ATsection] = ACTIONS(5968), - [anon_sym_ATonce] = ACTIONS(5970), - [anon_sym_ATverbatim] = ACTIONS(5972), - [anon_sym_ATpush] = ACTIONS(5974), - [anon_sym_ATpushOnce] = ACTIONS(5976), - [anon_sym_ATpushIf] = ACTIONS(5978), - [anon_sym_ATendPushIf] = ACTIONS(4626), - [anon_sym_ATprepend] = ACTIONS(5980), - [anon_sym_ATprependOnce] = ACTIONS(5982), - [anon_sym_ATif] = ACTIONS(5984), - [anon_sym_ATunless] = ACTIONS(5986), - [anon_sym_ATisset] = ACTIONS(5988), - [anon_sym_ATempty] = ACTIONS(5990), - [anon_sym_ATauth] = ACTIONS(5992), - [anon_sym_ATguest] = ACTIONS(5994), - [anon_sym_ATproduction] = ACTIONS(5996), - [anon_sym_ATenv] = ACTIONS(5998), - [anon_sym_AThasSection] = ACTIONS(6000), - [anon_sym_ATsectionMissing] = ACTIONS(6002), - [anon_sym_ATerror] = ACTIONS(6004), - [anon_sym_ATcan] = ACTIONS(6006), - [anon_sym_ATcannot] = ACTIONS(6008), - [anon_sym_ATcanany] = ACTIONS(6010), - [anon_sym_ATfeature] = ACTIONS(6012), - [aux_sym__custom_token1] = ACTIONS(6014), - [aux_sym__custom_token2] = ACTIONS(6016), - [anon_sym_ATswitch] = ACTIONS(6018), - [aux_sym_loop_operator_token1] = ACTIONS(6020), - [anon_sym_ATfor] = ACTIONS(6022), - [anon_sym_ATforeach] = ACTIONS(6024), - [anon_sym_ATforelse] = ACTIONS(6026), - [anon_sym_ATwhile] = ACTIONS(6028), - [anon_sym_ATsetup] = ACTIONS(6030), - [anon_sym_ATtask] = ACTIONS(6032), - [anon_sym_ATstory] = ACTIONS(6034), - [anon_sym_ATbefore] = ACTIONS(6036), - [anon_sym_ATafter] = ACTIONS(6038), - [anon_sym_ATsuccess] = ACTIONS(6040), - [anon_sym_ATfinished] = ACTIONS(6042), - [anon_sym_ATpersist] = ACTIONS(6044), - [anon_sym_ATteleport] = ACTIONS(6046), - [anon_sym_ATvolt] = ACTIONS(6048), - [aux_sym__text_token1] = ACTIONS(6050), - [aux_sym__text_token2] = ACTIONS(6050), - [aux_sym__text_token3] = ACTIONS(6052), - }, - [469] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6088), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [470] = { - [sym__definition] = STATE(470), - [sym_comment] = STATE(470), - [sym_keyword] = STATE(470), - [sym_php_statement] = STATE(470), - [sym__escaped] = STATE(3320), - [sym__unescaped] = STATE(3320), - [sym__raw] = STATE(3320), - [sym__inline_raw] = STATE(3320), - [sym__multi_line_raw] = STATE(3320), - [sym_attribute] = STATE(470), - [sym__inline_directive] = STATE(470), - [sym__nested_directive] = STATE(470), - [sym_fragment] = STATE(470), - [sym_section] = STATE(470), - [sym_inlineSection] = STATE(470), - [sym_once] = STATE(470), - [sym_verbatim] = STATE(470), - [sym_stack] = STATE(470), - [sym__push] = STATE(3334), - [sym__pushOnce] = STATE(3334), - [sym__pushIf] = STATE(3334), - [sym__prepend] = STATE(3334), - [sym__prependOnce] = STATE(3334), - [sym_conditional] = STATE(470), - [sym__if] = STATE(3337), - [sym__unless] = STATE(3337), - [sym__isset] = STATE(3337), - [sym__empty] = STATE(3337), - [sym__auth] = STATE(3337), - [sym__guest] = STATE(3337), - [sym__production] = STATE(3337), - [sym__env] = STATE(3337), - [sym__hasSection] = STATE(3337), - [sym__sectionMissing] = STATE(3337), - [sym__error] = STATE(3337), - [sym_authorization] = STATE(3337), - [sym__can] = STATE(3342), - [sym__cannot] = STATE(3342), - [sym__canany] = STATE(3342), - [sym__feature] = STATE(3337), - [sym__custom] = STATE(3337), - [sym_switch] = STATE(470), - [sym_loop] = STATE(470), - [sym_loop_operator] = STATE(470), - [sym__for] = STATE(3345), - [sym__foreach] = STATE(3345), - [sym__forelse] = STATE(3345), - [sym__while] = STATE(3345), - [sym_envoy] = STATE(470), - [sym__setup] = STATE(3320), - [sym__task] = STATE(3346), - [sym__story] = STATE(3346), - [sym__hooks] = STATE(3320), - [sym__before] = STATE(3320), - [sym__after] = STATE(3320), - [sym__envoy_error] = STATE(3320), - [sym__success] = STATE(3320), - [sym__finished] = STATE(3320), - [sym_livewire] = STATE(470), - [sym__persist] = STATE(3498), - [sym__teleport] = STATE(3498), - [sym__volt] = STATE(3498), - [aux_sym__directive_body] = STATE(470), - [sym_text] = STATE(470), - [sym__text] = STATE(1007), - [aux_sym_php_only_repeat1] = STATE(1007), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6090), - [aux_sym_keyword_token1] = ACTIONS(6093), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6096), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6099), - [anon_sym_ATphp] = ACTIONS(6102), - [aux_sym_attribute_token1] = ACTIONS(6105), - [aux_sym__inline_directive_token1] = ACTIONS(6108), - [anon_sym_ATfragment] = ACTIONS(6111), - [anon_sym_ATsection] = ACTIONS(6114), - [anon_sym_ATonce] = ACTIONS(6117), - [anon_sym_ATverbatim] = ACTIONS(6120), - [anon_sym_ATpush] = ACTIONS(6123), - [anon_sym_ATendpush] = ACTIONS(3925), - [anon_sym_ATpushOnce] = ACTIONS(6126), - [anon_sym_ATpushIf] = ACTIONS(6129), - [anon_sym_ATprepend] = ACTIONS(6132), - [anon_sym_ATprependOnce] = ACTIONS(6135), - [anon_sym_ATif] = ACTIONS(6138), - [anon_sym_ATunless] = ACTIONS(6141), - [anon_sym_ATisset] = ACTIONS(6144), - [anon_sym_ATempty] = ACTIONS(6147), - [anon_sym_ATauth] = ACTIONS(6150), - [anon_sym_ATguest] = ACTIONS(6153), - [anon_sym_ATproduction] = ACTIONS(6156), - [anon_sym_ATenv] = ACTIONS(6159), - [anon_sym_AThasSection] = ACTIONS(6162), - [anon_sym_ATsectionMissing] = ACTIONS(6165), - [anon_sym_ATerror] = ACTIONS(6168), - [anon_sym_ATcan] = ACTIONS(6171), - [anon_sym_ATcannot] = ACTIONS(6174), - [anon_sym_ATcanany] = ACTIONS(6177), - [anon_sym_ATfeature] = ACTIONS(6180), - [aux_sym__custom_token1] = ACTIONS(6183), - [aux_sym__custom_token2] = ACTIONS(6186), - [anon_sym_ATswitch] = ACTIONS(6189), - [aux_sym_loop_operator_token1] = ACTIONS(6192), - [anon_sym_ATfor] = ACTIONS(6195), - [anon_sym_ATforeach] = ACTIONS(6198), - [anon_sym_ATforelse] = ACTIONS(6201), - [anon_sym_ATwhile] = ACTIONS(6204), - [anon_sym_ATsetup] = ACTIONS(6207), - [anon_sym_ATtask] = ACTIONS(6210), - [anon_sym_ATstory] = ACTIONS(6213), - [anon_sym_ATbefore] = ACTIONS(6216), - [anon_sym_ATafter] = ACTIONS(6219), - [anon_sym_ATsuccess] = ACTIONS(6222), - [anon_sym_ATfinished] = ACTIONS(6225), - [anon_sym_ATpersist] = ACTIONS(6228), - [anon_sym_ATteleport] = ACTIONS(6231), - [anon_sym_ATvolt] = ACTIONS(6234), - [aux_sym__text_token1] = ACTIONS(6237), - [aux_sym__text_token2] = ACTIONS(6237), - [aux_sym__text_token3] = ACTIONS(6240), - }, - [471] = { - [sym__definition] = STATE(185), - [sym_comment] = STATE(185), - [sym_keyword] = STATE(185), - [sym_php_statement] = STATE(185), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(185), - [sym__inline_directive] = STATE(185), - [sym__nested_directive] = STATE(185), - [sym_fragment] = STATE(185), - [sym_section] = STATE(185), - [sym_inlineSection] = STATE(185), - [sym_once] = STATE(185), - [sym_verbatim] = STATE(185), - [sym_stack] = STATE(185), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(185), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(185), - [sym_loop] = STATE(185), - [sym_loop_operator] = STATE(185), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(185), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(185), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(185), - [sym_text] = STATE(185), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6243), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [472] = { - [sym__definition] = STATE(469), - [sym_comment] = STATE(469), - [sym_keyword] = STATE(469), - [sym_php_statement] = STATE(469), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(469), - [sym__inline_directive] = STATE(469), - [sym__nested_directive] = STATE(469), - [sym_fragment] = STATE(469), - [sym_section] = STATE(469), - [sym_inlineSection] = STATE(469), - [sym_once] = STATE(469), - [sym_verbatim] = STATE(469), - [sym_stack] = STATE(469), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(469), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(469), - [sym_loop] = STATE(469), - [sym_loop_operator] = STATE(469), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(469), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(469), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(469), - [sym_text] = STATE(469), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6245), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [473] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6247), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [474] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -83837,602 +81902,1317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6249), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6709), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [467] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6711), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [468] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6713), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [469] = { + [sym__definition] = STATE(466), + [sym_keyword] = STATE(466), + [sym_php_statement] = STATE(466), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(466), + [sym__inline_directive] = STATE(466), + [sym__nested_directive] = STATE(466), + [sym_fragment] = STATE(466), + [sym_section] = STATE(466), + [sym_inlineSection] = STATE(466), + [sym_once] = STATE(466), + [sym_verbatim] = STATE(466), + [sym_stack] = STATE(466), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(466), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(466), + [sym_loop] = STATE(466), + [sym_loop_operator] = STATE(466), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(466), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(466), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(466), + [sym_text] = STATE(466), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6715), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6717), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [470] = { + [sym__definition] = STATE(484), + [sym_keyword] = STATE(484), + [sym_php_statement] = STATE(484), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(484), + [sym__inline_directive] = STATE(484), + [sym__nested_directive] = STATE(484), + [sym_fragment] = STATE(484), + [sym_section] = STATE(484), + [sym_inlineSection] = STATE(484), + [sym_once] = STATE(484), + [sym_verbatim] = STATE(484), + [sym_stack] = STATE(484), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(484), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(484), + [sym_loop] = STATE(484), + [sym_loop_operator] = STATE(484), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(484), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(484), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(484), + [sym_text] = STATE(484), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6719), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6721), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [471] = { + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6723), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [472] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6725), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [473] = { + [sym__definition] = STATE(471), + [sym_keyword] = STATE(471), + [sym_php_statement] = STATE(471), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(471), + [sym__inline_directive] = STATE(471), + [sym__nested_directive] = STATE(471), + [sym_fragment] = STATE(471), + [sym_section] = STATE(471), + [sym_inlineSection] = STATE(471), + [sym_once] = STATE(471), + [sym_verbatim] = STATE(471), + [sym_stack] = STATE(471), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(471), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(471), + [sym_loop] = STATE(471), + [sym_loop_operator] = STATE(471), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(471), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(471), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(471), + [sym_text] = STATE(471), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6727), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6729), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [474] = { + [sym__definition] = STATE(368), + [sym_keyword] = STATE(368), + [sym_php_statement] = STATE(368), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(368), + [sym__inline_directive] = STATE(368), + [sym__nested_directive] = STATE(368), + [sym_fragment] = STATE(368), + [sym_section] = STATE(368), + [sym_inlineSection] = STATE(368), + [sym_once] = STATE(368), + [sym_verbatim] = STATE(368), + [sym_stack] = STATE(368), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(368), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(368), + [sym_loop] = STATE(368), + [sym_loop_operator] = STATE(368), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(368), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(368), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(368), + [sym_text] = STATE(368), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6731), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6733), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [475] = { - [sym__definition] = STATE(473), - [sym_comment] = STATE(473), - [sym_keyword] = STATE(473), - [sym_php_statement] = STATE(473), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(473), - [sym__inline_directive] = STATE(473), - [sym__nested_directive] = STATE(473), - [sym_fragment] = STATE(473), - [sym_section] = STATE(473), - [sym_inlineSection] = STATE(473), - [sym_once] = STATE(473), - [sym_verbatim] = STATE(473), - [sym_stack] = STATE(473), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(473), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(473), - [sym_loop] = STATE(473), - [sym_loop_operator] = STATE(473), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(473), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(473), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(473), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(473), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6251), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(472), + [sym_keyword] = STATE(472), + [sym_php_statement] = STATE(472), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(472), + [sym__inline_directive] = STATE(472), + [sym__nested_directive] = STATE(472), + [sym_fragment] = STATE(472), + [sym_section] = STATE(472), + [sym_inlineSection] = STATE(472), + [sym_once] = STATE(472), + [sym_verbatim] = STATE(472), + [sym_stack] = STATE(472), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(472), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(472), + [sym_loop] = STATE(472), + [sym_loop_operator] = STATE(472), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(472), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(472), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(472), + [sym_text] = STATE(472), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6735), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6737), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [476] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6251), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6739), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [477] = { - [sym__definition] = STATE(474), - [sym_comment] = STATE(474), - [sym_keyword] = STATE(474), - [sym_php_statement] = STATE(474), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(474), - [sym__inline_directive] = STATE(474), - [sym__nested_directive] = STATE(474), - [sym_fragment] = STATE(474), - [sym_section] = STATE(474), - [sym_inlineSection] = STATE(474), - [sym_once] = STATE(474), - [sym_verbatim] = STATE(474), - [sym_stack] = STATE(474), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(474), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(474), - [sym_loop] = STATE(474), - [sym_loop_operator] = STATE(474), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(474), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(474), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(474), - [sym_text] = STATE(474), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6253), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [478] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6255), - [aux_sym_keyword_token1] = ACTIONS(6258), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6261), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6264), - [anon_sym_ATphp] = ACTIONS(6267), - [aux_sym_attribute_token1] = ACTIONS(6270), - [aux_sym__inline_directive_token1] = ACTIONS(6273), - [anon_sym_ATfragment] = ACTIONS(6276), - [anon_sym_ATsection] = ACTIONS(6279), - [anon_sym_ATonce] = ACTIONS(6282), - [anon_sym_ATendonce] = ACTIONS(3925), - [anon_sym_ATverbatim] = ACTIONS(6285), - [anon_sym_ATpush] = ACTIONS(6288), - [anon_sym_ATpushOnce] = ACTIONS(6291), - [anon_sym_ATpushIf] = ACTIONS(6294), - [anon_sym_ATprepend] = ACTIONS(6297), - [anon_sym_ATprependOnce] = ACTIONS(6300), - [anon_sym_ATif] = ACTIONS(6303), - [anon_sym_ATunless] = ACTIONS(6306), - [anon_sym_ATisset] = ACTIONS(6309), - [anon_sym_ATempty] = ACTIONS(6312), - [anon_sym_ATauth] = ACTIONS(6315), - [anon_sym_ATguest] = ACTIONS(6318), - [anon_sym_ATproduction] = ACTIONS(6321), - [anon_sym_ATenv] = ACTIONS(6324), - [anon_sym_AThasSection] = ACTIONS(6327), - [anon_sym_ATsectionMissing] = ACTIONS(6330), - [anon_sym_ATerror] = ACTIONS(6333), - [anon_sym_ATcan] = ACTIONS(6336), - [anon_sym_ATcannot] = ACTIONS(6339), - [anon_sym_ATcanany] = ACTIONS(6342), - [anon_sym_ATfeature] = ACTIONS(6345), - [aux_sym__custom_token1] = ACTIONS(6348), - [aux_sym__custom_token2] = ACTIONS(6351), - [anon_sym_ATswitch] = ACTIONS(6354), - [aux_sym_loop_operator_token1] = ACTIONS(6357), - [anon_sym_ATfor] = ACTIONS(6360), - [anon_sym_ATforeach] = ACTIONS(6363), - [anon_sym_ATforelse] = ACTIONS(6366), - [anon_sym_ATwhile] = ACTIONS(6369), - [anon_sym_ATsetup] = ACTIONS(6372), - [anon_sym_ATtask] = ACTIONS(6375), - [anon_sym_ATstory] = ACTIONS(6378), - [anon_sym_ATbefore] = ACTIONS(6381), - [anon_sym_ATafter] = ACTIONS(6384), - [anon_sym_ATsuccess] = ACTIONS(6387), - [anon_sym_ATfinished] = ACTIONS(6390), - [anon_sym_ATpersist] = ACTIONS(6393), - [anon_sym_ATteleport] = ACTIONS(6396), - [anon_sym_ATvolt] = ACTIONS(6399), - [aux_sym__text_token1] = ACTIONS(6402), - [aux_sym__text_token2] = ACTIONS(6402), - [aux_sym__text_token3] = ACTIONS(6405), - }, - [479] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -84442,118 +83222,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6408), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6741), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [480] = { + [478] = { [sym__definition] = STATE(476), - [sym_comment] = STATE(476), [sym_keyword] = STATE(476), [sym_php_statement] = STATE(476), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(476), [sym__inline_directive] = STATE(476), [sym__nested_directive] = STATE(476), @@ -84563,118 +83342,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(476), [sym_verbatim] = STATE(476), [sym_stack] = STATE(476), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(476), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(476), [sym_loop] = STATE(476), [sym_loop_operator] = STATE(476), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(476), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(476), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(476), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(476), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6410), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6743), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6745), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [479] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6745), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [480] = { + [sym__definition] = STATE(477), + [sym_keyword] = STATE(477), + [sym_php_statement] = STATE(477), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(477), + [sym__inline_directive] = STATE(477), + [sym__nested_directive] = STATE(477), + [sym_fragment] = STATE(477), + [sym_section] = STATE(477), + [sym_inlineSection] = STATE(477), + [sym_once] = STATE(477), + [sym_verbatim] = STATE(477), + [sym_stack] = STATE(477), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(477), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(477), + [sym_loop] = STATE(477), + [sym_loop_operator] = STATE(477), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(477), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(477), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(477), + [sym_text] = STATE(477), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6747), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6749), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [481] = { + [sym__definition] = STATE(654), + [sym_keyword] = STATE(654), + [sym_php_statement] = STATE(654), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(654), + [sym__inline_directive] = STATE(654), + [sym__nested_directive] = STATE(654), + [sym_fragment] = STATE(654), + [sym_section] = STATE(654), + [sym_inlineSection] = STATE(654), + [sym_once] = STATE(654), + [sym_verbatim] = STATE(654), + [sym_stack] = STATE(654), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(654), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(654), + [sym_loop] = STATE(654), + [sym_loop_operator] = STATE(654), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(654), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(654), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(654), + [sym_text] = STATE(654), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6751), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [482] = { [sym__definition] = STATE(479), - [sym_comment] = STATE(479), [sym_keyword] = STATE(479), [sym_php_statement] = STATE(479), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(479), [sym__inline_directive] = STATE(479), [sym__nested_directive] = STATE(479), @@ -84684,723 +83822,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(479), [sym_verbatim] = STATE(479), [sym_stack] = STATE(479), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(479), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(479), [sym_loop] = STATE(479), [sym_loop_operator] = STATE(479), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(479), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(479), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(479), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(479), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6412), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [482] = { - [sym__definition] = STATE(366), - [sym_comment] = STATE(366), - [sym_keyword] = STATE(366), - [sym_php_statement] = STATE(366), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(366), - [sym__inline_directive] = STATE(366), - [sym__nested_directive] = STATE(366), - [sym_fragment] = STATE(366), - [sym_section] = STATE(366), - [sym_inlineSection] = STATE(366), - [sym_once] = STATE(366), - [sym_verbatim] = STATE(366), - [sym_stack] = STATE(366), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(366), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(366), - [sym_loop] = STATE(366), - [sym_loop_operator] = STATE(366), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(366), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(366), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(366), - [sym_text] = STATE(366), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6414), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(479), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6753), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6755), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [483] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6416), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(481), + [sym_keyword] = STATE(481), + [sym_php_statement] = STATE(481), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(481), + [sym__inline_directive] = STATE(481), + [sym__nested_directive] = STATE(481), + [sym_fragment] = STATE(481), + [sym_section] = STATE(481), + [sym_inlineSection] = STATE(481), + [sym_once] = STATE(481), + [sym_verbatim] = STATE(481), + [sym_stack] = STATE(481), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(481), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(481), + [sym_loop] = STATE(481), + [sym_loop_operator] = STATE(481), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(481), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(481), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(481), + [sym_text] = STATE(481), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6757), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6759), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [484] = { - [sym__definition] = STATE(509), - [sym_comment] = STATE(509), - [sym_keyword] = STATE(509), - [sym_php_statement] = STATE(509), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(509), - [sym__inline_directive] = STATE(509), - [sym__nested_directive] = STATE(509), - [sym_fragment] = STATE(509), - [sym_section] = STATE(509), - [sym_inlineSection] = STATE(509), - [sym_once] = STATE(509), - [sym_verbatim] = STATE(509), - [sym_stack] = STATE(509), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(509), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(509), - [sym_loop] = STATE(509), - [sym_loop_operator] = STATE(509), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(509), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(509), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(509), - [sym_text] = STATE(509), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6418), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6761), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [485] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6420), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6763), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [486] = { - [sym__definition] = STATE(483), - [sym_comment] = STATE(483), - [sym_keyword] = STATE(483), - [sym_php_statement] = STATE(483), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(483), - [sym__inline_directive] = STATE(483), - [sym__nested_directive] = STATE(483), - [sym_fragment] = STATE(483), - [sym_section] = STATE(483), - [sym_inlineSection] = STATE(483), - [sym_once] = STATE(483), - [sym_verbatim] = STATE(483), - [sym_stack] = STATE(483), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(483), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(483), - [sym_loop] = STATE(483), - [sym_loop_operator] = STATE(483), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(483), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(483), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(483), - [sym_text] = STATE(483), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6422), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6765), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [487] = { [sym__definition] = STATE(485), - [sym_comment] = STATE(485), [sym_keyword] = STATE(485), [sym_php_statement] = STATE(485), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(485), [sym__inline_directive] = STATE(485), [sym__nested_directive] = STATE(485), @@ -85410,239 +84422,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(485), [sym_verbatim] = STATE(485), [sym_stack] = STATE(485), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(485), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(485), [sym_loop] = STATE(485), [sym_loop_operator] = STATE(485), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(485), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(485), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(485), [sym_text] = STATE(485), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6424), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6767), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6769), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [488] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6426), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(486), + [sym_keyword] = STATE(486), + [sym_php_statement] = STATE(486), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(486), + [sym__inline_directive] = STATE(486), + [sym__nested_directive] = STATE(486), + [sym_fragment] = STATE(486), + [sym_section] = STATE(486), + [sym_inlineSection] = STATE(486), + [sym_once] = STATE(486), + [sym_verbatim] = STATE(486), + [sym_stack] = STATE(486), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(486), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(486), + [sym_loop] = STATE(486), + [sym_loop_operator] = STATE(486), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(486), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(486), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(486), + [sym_text] = STATE(486), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6771), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6773), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [489] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6775), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [490] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -85652,360 +84782,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6428), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [490] = { - [sym__definition] = STATE(488), - [sym_comment] = STATE(488), - [sym_keyword] = STATE(488), - [sym_php_statement] = STATE(488), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(488), - [sym__inline_directive] = STATE(488), - [sym__nested_directive] = STATE(488), - [sym_fragment] = STATE(488), - [sym_section] = STATE(488), - [sym_inlineSection] = STATE(488), - [sym_once] = STATE(488), - [sym_verbatim] = STATE(488), - [sym_stack] = STATE(488), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(488), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(488), - [sym_loop] = STATE(488), - [sym_loop_operator] = STATE(488), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(488), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(488), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(488), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(488), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6430), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6777), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [491] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6430), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [492] = { [sym__definition] = STATE(489), - [sym_comment] = STATE(489), [sym_keyword] = STATE(489), [sym_php_statement] = STATE(489), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(489), [sym__inline_directive] = STATE(489), [sym__nested_directive] = STATE(489), @@ -86015,118 +84902,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(489), [sym_verbatim] = STATE(489), [sym_stack] = STATE(489), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(489), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(489), [sym_loop] = STATE(489), [sym_loop_operator] = STATE(489), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(489), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(489), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(489), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(489), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6432), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(489), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6779), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6781), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [492] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6781), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [493] = { + [sym__definition] = STATE(490), + [sym_keyword] = STATE(490), + [sym_php_statement] = STATE(490), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(490), + [sym__inline_directive] = STATE(490), + [sym__nested_directive] = STATE(490), + [sym_fragment] = STATE(490), + [sym_section] = STATE(490), + [sym_inlineSection] = STATE(490), + [sym_once] = STATE(490), + [sym_verbatim] = STATE(490), + [sym_stack] = STATE(490), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(490), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(490), + [sym_loop] = STATE(490), + [sym_loop_operator] = STATE(490), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(490), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(490), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(490), + [sym_text] = STATE(490), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6783), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6785), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [494] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -86136,844 +85262,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6434), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [494] = { - [sym__definition] = STATE(491), - [sym_comment] = STATE(491), - [sym_keyword] = STATE(491), - [sym_php_statement] = STATE(491), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(491), - [sym__inline_directive] = STATE(491), - [sym__nested_directive] = STATE(491), - [sym_fragment] = STATE(491), - [sym_section] = STATE(491), - [sym_inlineSection] = STATE(491), - [sym_once] = STATE(491), - [sym_verbatim] = STATE(491), - [sym_stack] = STATE(491), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(491), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(491), - [sym_loop] = STATE(491), - [sym_loop_operator] = STATE(491), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(491), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(491), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(491), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(491), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6436), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6787), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [495] = { - [sym__definition] = STATE(493), - [sym_comment] = STATE(493), - [sym_keyword] = STATE(493), - [sym_php_statement] = STATE(493), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(493), - [sym__inline_directive] = STATE(493), - [sym__nested_directive] = STATE(493), - [sym_fragment] = STATE(493), - [sym_section] = STATE(493), - [sym_inlineSection] = STATE(493), - [sym_once] = STATE(493), - [sym_verbatim] = STATE(493), - [sym_stack] = STATE(493), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(493), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(493), - [sym_loop] = STATE(493), - [sym_loop_operator] = STATE(493), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(493), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(493), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(493), - [sym_text] = STATE(493), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6438), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(492), + [sym_keyword] = STATE(492), + [sym_php_statement] = STATE(492), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(492), + [sym__inline_directive] = STATE(492), + [sym__nested_directive] = STATE(492), + [sym_fragment] = STATE(492), + [sym_section] = STATE(492), + [sym_inlineSection] = STATE(492), + [sym_once] = STATE(492), + [sym_verbatim] = STATE(492), + [sym_stack] = STATE(492), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(492), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(492), + [sym_loop] = STATE(492), + [sym_loop_operator] = STATE(492), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(492), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(492), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(492), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(492), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6789), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6791), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [496] = { - [sym__definition] = STATE(580), - [sym_comment] = STATE(580), - [sym_keyword] = STATE(580), - [sym_php_statement] = STATE(580), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(580), - [sym__inline_directive] = STATE(580), - [sym__nested_directive] = STATE(580), - [sym_fragment] = STATE(580), - [sym_section] = STATE(580), - [sym_inlineSection] = STATE(580), - [sym_once] = STATE(580), - [sym_verbatim] = STATE(580), - [sym_stack] = STATE(580), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(580), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(580), - [sym_loop] = STATE(580), - [sym_loop_operator] = STATE(580), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(580), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(580), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(580), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(580), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6440), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(494), + [sym_keyword] = STATE(494), + [sym_php_statement] = STATE(494), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(494), + [sym__inline_directive] = STATE(494), + [sym__nested_directive] = STATE(494), + [sym_fragment] = STATE(494), + [sym_section] = STATE(494), + [sym_inlineSection] = STATE(494), + [sym_once] = STATE(494), + [sym_verbatim] = STATE(494), + [sym_stack] = STATE(494), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(494), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(494), + [sym_loop] = STATE(494), + [sym_loop_operator] = STATE(494), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(494), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(494), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(494), + [sym_text] = STATE(494), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6793), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6795), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [497] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6442), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(204), + [sym_keyword] = STATE(204), + [sym_php_statement] = STATE(204), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(204), + [sym__inline_directive] = STATE(204), + [sym__nested_directive] = STATE(204), + [sym_fragment] = STATE(204), + [sym_section] = STATE(204), + [sym_inlineSection] = STATE(204), + [sym_once] = STATE(204), + [sym_verbatim] = STATE(204), + [sym_stack] = STATE(204), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(204), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(204), + [sym_loop] = STATE(204), + [sym_loop_operator] = STATE(204), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(204), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(204), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(204), + [sym_text] = STATE(204), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6797), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6799), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [498] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6444), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6801), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [499] = { - [sym__definition] = STATE(497), - [sym_comment] = STATE(497), - [sym_keyword] = STATE(497), - [sym_php_statement] = STATE(497), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(497), - [sym__inline_directive] = STATE(497), - [sym__nested_directive] = STATE(497), - [sym_fragment] = STATE(497), - [sym_section] = STATE(497), - [sym_inlineSection] = STATE(497), - [sym_once] = STATE(497), - [sym_verbatim] = STATE(497), - [sym_stack] = STATE(497), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(497), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(497), - [sym_loop] = STATE(497), - [sym_loop_operator] = STATE(497), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(497), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(497), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(497), - [sym_text] = STATE(497), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6446), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6803), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [500] = { [sym__definition] = STATE(498), - [sym_comment] = STATE(498), [sym_keyword] = STATE(498), [sym_php_statement] = STATE(498), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(498), [sym__inline_directive] = STATE(498), [sym__nested_directive] = STATE(498), @@ -86983,239 +85982,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(498), [sym_verbatim] = STATE(498), [sym_stack] = STATE(498), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(498), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(498), [sym_loop] = STATE(498), [sym_loop_operator] = STATE(498), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(498), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(498), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(498), [sym_text] = STATE(498), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6448), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6805), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6807), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [501] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6450), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(499), + [sym_keyword] = STATE(499), + [sym_php_statement] = STATE(499), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(499), + [sym__inline_directive] = STATE(499), + [sym__nested_directive] = STATE(499), + [sym_fragment] = STATE(499), + [sym_section] = STATE(499), + [sym_inlineSection] = STATE(499), + [sym_once] = STATE(499), + [sym_verbatim] = STATE(499), + [sym_stack] = STATE(499), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(499), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(499), + [sym_loop] = STATE(499), + [sym_loop_operator] = STATE(499), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(499), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(499), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(499), + [sym_text] = STATE(499), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6809), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6811), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [502] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6813), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [503] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -87225,360 +86342,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6452), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [503] = { - [sym__definition] = STATE(501), - [sym_comment] = STATE(501), - [sym_keyword] = STATE(501), - [sym_php_statement] = STATE(501), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(501), - [sym__inline_directive] = STATE(501), - [sym__nested_directive] = STATE(501), - [sym_fragment] = STATE(501), - [sym_section] = STATE(501), - [sym_inlineSection] = STATE(501), - [sym_once] = STATE(501), - [sym_verbatim] = STATE(501), - [sym_stack] = STATE(501), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(501), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(501), - [sym_loop] = STATE(501), - [sym_loop_operator] = STATE(501), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(501), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(501), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(501), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(501), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6454), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6815), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [504] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6454), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [505] = { [sym__definition] = STATE(502), - [sym_comment] = STATE(502), [sym_keyword] = STATE(502), [sym_php_statement] = STATE(502), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(502), [sym__inline_directive] = STATE(502), [sym__nested_directive] = STATE(502), @@ -87588,118 +86462,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(502), [sym_verbatim] = STATE(502), [sym_stack] = STATE(502), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(502), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(502), [sym_loop] = STATE(502), [sym_loop_operator] = STATE(502), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(502), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(502), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(502), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(502), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6456), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(502), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6817), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6819), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [505] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6819), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [506] = { + [sym__definition] = STATE(503), + [sym_keyword] = STATE(503), + [sym_php_statement] = STATE(503), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(503), + [sym__inline_directive] = STATE(503), + [sym__nested_directive] = STATE(503), + [sym_fragment] = STATE(503), + [sym_section] = STATE(503), + [sym_inlineSection] = STATE(503), + [sym_once] = STATE(503), + [sym_verbatim] = STATE(503), + [sym_stack] = STATE(503), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(503), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(503), + [sym_loop] = STATE(503), + [sym_loop_operator] = STATE(503), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(503), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(503), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(503), + [sym_text] = STATE(503), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6821), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6823), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [507] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -87709,723 +86822,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6458), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [507] = { - [sym__definition] = STATE(504), - [sym_comment] = STATE(504), - [sym_keyword] = STATE(504), - [sym_php_statement] = STATE(504), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(504), - [sym__inline_directive] = STATE(504), - [sym__nested_directive] = STATE(504), - [sym_fragment] = STATE(504), - [sym_section] = STATE(504), - [sym_inlineSection] = STATE(504), - [sym_once] = STATE(504), - [sym_verbatim] = STATE(504), - [sym_stack] = STATE(504), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(504), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(504), - [sym_loop] = STATE(504), - [sym_loop_operator] = STATE(504), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(504), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(504), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(504), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(504), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6460), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6825), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [508] = { - [sym__definition] = STATE(506), - [sym_comment] = STATE(506), - [sym_keyword] = STATE(506), - [sym_php_statement] = STATE(506), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(506), - [sym__inline_directive] = STATE(506), - [sym__nested_directive] = STATE(506), - [sym_fragment] = STATE(506), - [sym_section] = STATE(506), - [sym_inlineSection] = STATE(506), - [sym_once] = STATE(506), - [sym_verbatim] = STATE(506), - [sym_stack] = STATE(506), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(506), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(506), - [sym_loop] = STATE(506), - [sym_loop_operator] = STATE(506), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(506), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(506), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(506), - [sym_text] = STATE(506), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6462), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(505), + [sym_keyword] = STATE(505), + [sym_php_statement] = STATE(505), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(505), + [sym__inline_directive] = STATE(505), + [sym__nested_directive] = STATE(505), + [sym_fragment] = STATE(505), + [sym_section] = STATE(505), + [sym_inlineSection] = STATE(505), + [sym_once] = STATE(505), + [sym_verbatim] = STATE(505), + [sym_stack] = STATE(505), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(505), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(505), + [sym_loop] = STATE(505), + [sym_loop_operator] = STATE(505), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(505), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(505), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(505), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(505), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(6827), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(6829), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [509] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6464), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(507), + [sym_keyword] = STATE(507), + [sym_php_statement] = STATE(507), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(507), + [sym__inline_directive] = STATE(507), + [sym__nested_directive] = STATE(507), + [sym_fragment] = STATE(507), + [sym_section] = STATE(507), + [sym_inlineSection] = STATE(507), + [sym_once] = STATE(507), + [sym_verbatim] = STATE(507), + [sym_stack] = STATE(507), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(507), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(507), + [sym_loop] = STATE(507), + [sym_loop_operator] = STATE(507), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(507), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(507), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(507), + [sym_text] = STATE(507), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(6831), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(6833), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [510] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6466), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6835), + [aux_sym_keyword_token1] = ACTIONS(6838), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6841), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6844), + [anon_sym_ATphp] = ACTIONS(6847), + [aux_sym_attribute_token1] = ACTIONS(6850), + [aux_sym__inline_directive_token1] = ACTIONS(6853), + [anon_sym_ATfragment] = ACTIONS(6856), + [anon_sym_ATsection] = ACTIONS(6859), + [anon_sym_ATonce] = ACTIONS(6862), + [anon_sym_ATendonce] = ACTIONS(5035), + [anon_sym_ATverbatim] = ACTIONS(6865), + [anon_sym_ATpush] = ACTIONS(6868), + [anon_sym_ATpushOnce] = ACTIONS(6871), + [anon_sym_ATpushIf] = ACTIONS(6874), + [anon_sym_ATprepend] = ACTIONS(6877), + [anon_sym_ATprependOnce] = ACTIONS(6880), + [anon_sym_ATif] = ACTIONS(6883), + [anon_sym_ATunless] = ACTIONS(6886), + [anon_sym_ATisset] = ACTIONS(6889), + [anon_sym_ATempty] = ACTIONS(6892), + [anon_sym_ATauth] = ACTIONS(6895), + [anon_sym_ATguest] = ACTIONS(6898), + [anon_sym_ATproduction] = ACTIONS(6901), + [anon_sym_ATenv] = ACTIONS(6904), + [anon_sym_AThasSection] = ACTIONS(6907), + [anon_sym_ATsectionMissing] = ACTIONS(6910), + [anon_sym_ATerror] = ACTIONS(6913), + [anon_sym_ATcan] = ACTIONS(6916), + [anon_sym_ATcannot] = ACTIONS(6919), + [anon_sym_ATcanany] = ACTIONS(6922), + [anon_sym_ATfeature] = ACTIONS(6925), + [aux_sym__custom_token1] = ACTIONS(6928), + [aux_sym__custom_token2] = ACTIONS(6931), + [anon_sym_ATswitch] = ACTIONS(6934), + [aux_sym_loop_operator_token1] = ACTIONS(6937), + [anon_sym_ATfor] = ACTIONS(6940), + [anon_sym_ATforeach] = ACTIONS(6943), + [anon_sym_ATforelse] = ACTIONS(6946), + [anon_sym_ATwhile] = ACTIONS(6949), + [anon_sym_ATsetup] = ACTIONS(6952), + [anon_sym_ATtask] = ACTIONS(6955), + [anon_sym_ATstory] = ACTIONS(6958), + [anon_sym_ATbefore] = ACTIONS(6961), + [anon_sym_ATafter] = ACTIONS(6964), + [anon_sym_ATsuccess] = ACTIONS(6967), + [anon_sym_ATfinished] = ACTIONS(6970), + [anon_sym_ATpersist] = ACTIONS(6973), + [anon_sym_ATteleport] = ACTIONS(6976), + [anon_sym_ATvolt] = ACTIONS(6979), + [aux_sym__text_token1] = ACTIONS(6982), + [aux_sym__text_token2] = ACTIONS(6982), + [aux_sym__text_token3] = ACTIONS(6985), }, [511] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6468), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6988), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [512] = { [sym__definition] = STATE(510), - [sym_comment] = STATE(510), [sym_keyword] = STATE(510), [sym_php_statement] = STATE(510), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(510), [sym__inline_directive] = STATE(510), [sym__nested_directive] = STATE(510), @@ -88435,118 +87422,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(510), [sym_verbatim] = STATE(510), [sym_stack] = STATE(510), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(510), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(510), [sym_loop] = STATE(510), [sym_loop_operator] = STATE(510), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(510), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(510), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), [aux_sym__directive_body] = STATE(510), [sym_text] = STATE(510), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6470), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6990), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [513] = { [sym__definition] = STATE(511), - [sym_comment] = STATE(511), [sym_keyword] = STATE(511), [sym_php_statement] = STATE(511), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(511), [sym__inline_directive] = STATE(511), [sym__nested_directive] = STATE(511), @@ -88556,239 +87542,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(511), [sym_verbatim] = STATE(511), [sym_stack] = STATE(511), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(511), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(511), [sym_loop] = STATE(511), [sym_loop_operator] = STATE(511), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(511), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(511), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(511), [sym_text] = STATE(511), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6472), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(6992), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(6994), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [514] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6474), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(512), + [sym_keyword] = STATE(512), + [sym_php_statement] = STATE(512), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(512), + [sym__inline_directive] = STATE(512), + [sym__nested_directive] = STATE(512), + [sym_fragment] = STATE(512), + [sym_section] = STATE(512), + [sym_inlineSection] = STATE(512), + [sym_once] = STATE(512), + [sym_verbatim] = STATE(512), + [sym_stack] = STATE(512), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(512), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(512), + [sym_loop] = STATE(512), + [sym_loop_operator] = STATE(512), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(512), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(512), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(512), + [sym_text] = STATE(512), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(6996), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(6998), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [515] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7000), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [516] = { + [sym__definition] = STATE(525), + [sym_keyword] = STATE(525), + [sym_php_statement] = STATE(525), + [sym__escaped] = STATE(2339), + [sym__unescaped] = STATE(2339), + [sym__raw] = STATE(2339), + [sym__inline_raw] = STATE(2339), + [sym__multi_line_raw] = STATE(2339), + [sym_attribute] = STATE(525), + [sym__inline_directive] = STATE(525), + [sym__nested_directive] = STATE(525), + [sym_fragment] = STATE(525), + [sym_section] = STATE(525), + [sym_inlineSection] = STATE(525), + [sym_once] = STATE(525), + [sym_verbatim] = STATE(525), + [sym_stack] = STATE(525), + [sym__push] = STATE(2340), + [sym__pushOnce] = STATE(2340), + [sym__pushIf] = STATE(2340), + [sym__prepend] = STATE(2340), + [sym__prependOnce] = STATE(2340), + [sym_conditional] = STATE(525), + [sym__if] = STATE(2341), + [sym__unless] = STATE(2341), + [sym__isset] = STATE(2341), + [sym__empty] = STATE(2341), + [sym__auth] = STATE(2341), + [sym__guest] = STATE(2341), + [sym__production] = STATE(2341), + [sym__env] = STATE(2341), + [sym__hasSection] = STATE(2341), + [sym__sectionMissing] = STATE(2341), + [sym__error] = STATE(2341), + [sym_authorization] = STATE(2341), + [sym__can] = STATE(2342), + [sym__cannot] = STATE(2342), + [sym__canany] = STATE(2342), + [sym__feature] = STATE(2341), + [sym__custom] = STATE(2341), + [sym_switch] = STATE(525), + [sym_loop] = STATE(525), + [sym_loop_operator] = STATE(525), + [sym__for] = STATE(2343), + [sym__foreach] = STATE(2343), + [sym__forelse] = STATE(2343), + [sym__while] = STATE(2343), + [sym_envoy] = STATE(525), + [sym__setup] = STATE(2339), + [sym__task] = STATE(2344), + [sym__story] = STATE(2344), + [sym__hooks] = STATE(2339), + [sym__before] = STATE(2339), + [sym__after] = STATE(2339), + [sym__envoy_error] = STATE(2339), + [sym__success] = STATE(2339), + [sym__finished] = STATE(2339), + [sym_livewire] = STATE(525), + [sym__persist] = STATE(2345), + [sym__teleport] = STATE(2345), + [sym__volt] = STATE(2345), + [aux_sym__directive_body] = STATE(525), + [sym_text] = STATE(525), + [sym__text] = STATE(991), + [aux_sym_php_only_repeat1] = STATE(991), + [sym_comment] = ACTIONS(7002), + [aux_sym_keyword_token1] = ACTIONS(7004), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7006), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7008), + [anon_sym_ATphp] = ACTIONS(7010), + [aux_sym_attribute_token1] = ACTIONS(7012), + [aux_sym__inline_directive_token1] = ACTIONS(7014), + [anon_sym_ATfragment] = ACTIONS(7016), + [anon_sym_ATsection] = ACTIONS(7018), + [anon_sym_ATonce] = ACTIONS(7020), + [anon_sym_ATverbatim] = ACTIONS(7022), + [anon_sym_ATpush] = ACTIONS(7024), + [anon_sym_ATpushOnce] = ACTIONS(7026), + [anon_sym_ATpushIf] = ACTIONS(7028), + [anon_sym_ATprepend] = ACTIONS(7030), + [anon_sym_ATprependOnce] = ACTIONS(7032), + [anon_sym_ATif] = ACTIONS(7034), + [anon_sym_ATunless] = ACTIONS(7036), + [anon_sym_ATisset] = ACTIONS(7038), + [anon_sym_ATempty] = ACTIONS(7040), + [anon_sym_ATauth] = ACTIONS(7042), + [anon_sym_ATguest] = ACTIONS(7044), + [anon_sym_ATproduction] = ACTIONS(7046), + [anon_sym_ATenv] = ACTIONS(7048), + [anon_sym_AThasSection] = ACTIONS(7050), + [anon_sym_ATsectionMissing] = ACTIONS(7052), + [anon_sym_ATerror] = ACTIONS(7054), + [anon_sym_ATcan] = ACTIONS(7056), + [anon_sym_ATcannot] = ACTIONS(7058), + [anon_sym_ATcanany] = ACTIONS(7060), + [anon_sym_ATfeature] = ACTIONS(7062), + [aux_sym__custom_token1] = ACTIONS(7064), + [aux_sym__custom_token2] = ACTIONS(7066), + [anon_sym_ATswitch] = ACTIONS(7068), + [aux_sym_loop_operator_token1] = ACTIONS(7070), + [anon_sym_ATfor] = ACTIONS(7072), + [anon_sym_ATforeach] = ACTIONS(7074), + [anon_sym_ATforelse] = ACTIONS(7076), + [anon_sym_ATendforelse] = ACTIONS(4609), + [anon_sym_ATwhile] = ACTIONS(7078), + [anon_sym_ATsetup] = ACTIONS(7080), + [anon_sym_ATtask] = ACTIONS(7082), + [anon_sym_ATstory] = ACTIONS(7084), + [anon_sym_ATbefore] = ACTIONS(7086), + [anon_sym_ATafter] = ACTIONS(7088), + [anon_sym_ATsuccess] = ACTIONS(7090), + [anon_sym_ATfinished] = ACTIONS(7092), + [anon_sym_ATpersist] = ACTIONS(7094), + [anon_sym_ATteleport] = ACTIONS(7096), + [anon_sym_ATvolt] = ACTIONS(7098), + [aux_sym__text_token1] = ACTIONS(7100), + [aux_sym__text_token2] = ACTIONS(7100), + [aux_sym__text_token3] = ACTIONS(7102), + }, + [517] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7104), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [518] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -88798,360 +88142,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6476), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [516] = { - [sym__definition] = STATE(514), - [sym_comment] = STATE(514), - [sym_keyword] = STATE(514), - [sym_php_statement] = STATE(514), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(514), - [sym__inline_directive] = STATE(514), - [sym__nested_directive] = STATE(514), - [sym_fragment] = STATE(514), - [sym_section] = STATE(514), - [sym_inlineSection] = STATE(514), - [sym_once] = STATE(514), - [sym_verbatim] = STATE(514), - [sym_stack] = STATE(514), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(514), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(514), - [sym_loop] = STATE(514), - [sym_loop_operator] = STATE(514), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(514), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(514), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(514), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(514), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6478), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [517] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6478), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7106), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [518] = { + [519] = { [sym__definition] = STATE(515), - [sym_comment] = STATE(515), [sym_keyword] = STATE(515), [sym_php_statement] = STATE(515), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(515), [sym__inline_directive] = STATE(515), [sym__nested_directive] = STATE(515), @@ -89161,118 +88262,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(515), [sym_verbatim] = STATE(515), [sym_stack] = STATE(515), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(515), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(515), [sym_loop] = STATE(515), [sym_loop_operator] = STATE(515), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(515), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(515), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(515), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(515), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6480), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(515), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7108), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7110), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, - [519] = { + [520] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7110), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [521] = { + [sym__definition] = STATE(518), + [sym_keyword] = STATE(518), + [sym_php_statement] = STATE(518), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(518), + [sym__inline_directive] = STATE(518), + [sym__nested_directive] = STATE(518), + [sym_fragment] = STATE(518), + [sym_section] = STATE(518), + [sym_inlineSection] = STATE(518), + [sym_once] = STATE(518), + [sym_verbatim] = STATE(518), + [sym_stack] = STATE(518), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(518), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(518), + [sym_loop] = STATE(518), + [sym_loop_operator] = STATE(518), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(518), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(518), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(518), + [sym_text] = STATE(518), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7112), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7114), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [522] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -89282,1812 +88622,1197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6482), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [520] = { - [sym__definition] = STATE(517), - [sym_comment] = STATE(517), - [sym_keyword] = STATE(517), - [sym_php_statement] = STATE(517), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(517), - [sym__inline_directive] = STATE(517), - [sym__nested_directive] = STATE(517), - [sym_fragment] = STATE(517), - [sym_section] = STATE(517), - [sym_inlineSection] = STATE(517), - [sym_once] = STATE(517), - [sym_verbatim] = STATE(517), - [sym_stack] = STATE(517), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(517), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(517), - [sym_loop] = STATE(517), - [sym_loop_operator] = STATE(517), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(517), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(517), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(517), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(517), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6484), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [521] = { - [sym__definition] = STATE(519), - [sym_comment] = STATE(519), - [sym_keyword] = STATE(519), - [sym_php_statement] = STATE(519), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(519), - [sym__inline_directive] = STATE(519), - [sym__nested_directive] = STATE(519), - [sym_fragment] = STATE(519), - [sym_section] = STATE(519), - [sym_inlineSection] = STATE(519), - [sym_once] = STATE(519), - [sym_verbatim] = STATE(519), - [sym_stack] = STATE(519), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(519), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(519), - [sym_loop] = STATE(519), - [sym_loop_operator] = STATE(519), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(519), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(519), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(519), - [sym_text] = STATE(519), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6486), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [522] = { - [sym__definition] = STATE(209), - [sym_comment] = STATE(209), - [sym_keyword] = STATE(209), - [sym_php_statement] = STATE(209), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(209), - [sym__inline_directive] = STATE(209), - [sym__nested_directive] = STATE(209), - [sym_fragment] = STATE(209), - [sym_section] = STATE(209), - [sym_inlineSection] = STATE(209), - [sym_once] = STATE(209), - [sym_verbatim] = STATE(209), - [sym_stack] = STATE(209), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(209), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(209), - [sym_loop] = STATE(209), - [sym_loop_operator] = STATE(209), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(209), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(209), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(209), - [sym_text] = STATE(209), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6488), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7116), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [523] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6490), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(520), + [sym_keyword] = STATE(520), + [sym_php_statement] = STATE(520), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(520), + [sym__inline_directive] = STATE(520), + [sym__nested_directive] = STATE(520), + [sym_fragment] = STATE(520), + [sym_section] = STATE(520), + [sym_inlineSection] = STATE(520), + [sym_once] = STATE(520), + [sym_verbatim] = STATE(520), + [sym_stack] = STATE(520), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(520), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(520), + [sym_loop] = STATE(520), + [sym_loop_operator] = STATE(520), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(520), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(520), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(520), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(520), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7118), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7120), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [524] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6492), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(522), + [sym_keyword] = STATE(522), + [sym_php_statement] = STATE(522), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(522), + [sym__inline_directive] = STATE(522), + [sym__nested_directive] = STATE(522), + [sym_fragment] = STATE(522), + [sym_section] = STATE(522), + [sym_inlineSection] = STATE(522), + [sym_once] = STATE(522), + [sym_verbatim] = STATE(522), + [sym_stack] = STATE(522), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(522), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(522), + [sym_loop] = STATE(522), + [sym_loop_operator] = STATE(522), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(522), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(522), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(522), + [sym_text] = STATE(522), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7122), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7124), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [525] = { - [sym__definition] = STATE(523), - [sym_comment] = STATE(523), - [sym_keyword] = STATE(523), - [sym_php_statement] = STATE(523), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(523), - [sym__inline_directive] = STATE(523), - [sym__nested_directive] = STATE(523), - [sym_fragment] = STATE(523), - [sym_section] = STATE(523), - [sym_inlineSection] = STATE(523), - [sym_once] = STATE(523), - [sym_verbatim] = STATE(523), - [sym_stack] = STATE(523), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(523), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(523), - [sym_loop] = STATE(523), - [sym_loop_operator] = STATE(523), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(523), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(523), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(523), - [sym_text] = STATE(523), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6494), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(629), + [sym_keyword] = STATE(629), + [sym_php_statement] = STATE(629), + [sym__escaped] = STATE(2339), + [sym__unescaped] = STATE(2339), + [sym__raw] = STATE(2339), + [sym__inline_raw] = STATE(2339), + [sym__multi_line_raw] = STATE(2339), + [sym_attribute] = STATE(629), + [sym__inline_directive] = STATE(629), + [sym__nested_directive] = STATE(629), + [sym_fragment] = STATE(629), + [sym_section] = STATE(629), + [sym_inlineSection] = STATE(629), + [sym_once] = STATE(629), + [sym_verbatim] = STATE(629), + [sym_stack] = STATE(629), + [sym__push] = STATE(2340), + [sym__pushOnce] = STATE(2340), + [sym__pushIf] = STATE(2340), + [sym__prepend] = STATE(2340), + [sym__prependOnce] = STATE(2340), + [sym_conditional] = STATE(629), + [sym__if] = STATE(2341), + [sym__unless] = STATE(2341), + [sym__isset] = STATE(2341), + [sym__empty] = STATE(2341), + [sym__auth] = STATE(2341), + [sym__guest] = STATE(2341), + [sym__production] = STATE(2341), + [sym__env] = STATE(2341), + [sym__hasSection] = STATE(2341), + [sym__sectionMissing] = STATE(2341), + [sym__error] = STATE(2341), + [sym_authorization] = STATE(2341), + [sym__can] = STATE(2342), + [sym__cannot] = STATE(2342), + [sym__canany] = STATE(2342), + [sym__feature] = STATE(2341), + [sym__custom] = STATE(2341), + [sym_switch] = STATE(629), + [sym_loop] = STATE(629), + [sym_loop_operator] = STATE(629), + [sym__for] = STATE(2343), + [sym__foreach] = STATE(2343), + [sym__forelse] = STATE(2343), + [sym__while] = STATE(2343), + [sym_envoy] = STATE(629), + [sym__setup] = STATE(2339), + [sym__task] = STATE(2344), + [sym__story] = STATE(2344), + [sym__hooks] = STATE(2339), + [sym__before] = STATE(2339), + [sym__after] = STATE(2339), + [sym__envoy_error] = STATE(2339), + [sym__success] = STATE(2339), + [sym__finished] = STATE(2339), + [sym_livewire] = STATE(629), + [sym__persist] = STATE(2345), + [sym__teleport] = STATE(2345), + [sym__volt] = STATE(2345), + [aux_sym__directive_body] = STATE(629), + [sym_text] = STATE(629), + [sym__text] = STATE(991), + [aux_sym_php_only_repeat1] = STATE(991), + [sym_comment] = ACTIONS(7126), + [aux_sym_keyword_token1] = ACTIONS(7004), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7006), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7008), + [anon_sym_ATphp] = ACTIONS(7010), + [aux_sym_attribute_token1] = ACTIONS(7012), + [aux_sym__inline_directive_token1] = ACTIONS(7014), + [anon_sym_ATfragment] = ACTIONS(7016), + [anon_sym_ATsection] = ACTIONS(7018), + [anon_sym_ATonce] = ACTIONS(7020), + [anon_sym_ATverbatim] = ACTIONS(7022), + [anon_sym_ATpush] = ACTIONS(7024), + [anon_sym_ATpushOnce] = ACTIONS(7026), + [anon_sym_ATpushIf] = ACTIONS(7028), + [anon_sym_ATprepend] = ACTIONS(7030), + [anon_sym_ATprependOnce] = ACTIONS(7032), + [anon_sym_ATif] = ACTIONS(7034), + [anon_sym_ATunless] = ACTIONS(7036), + [anon_sym_ATisset] = ACTIONS(7038), + [anon_sym_ATempty] = ACTIONS(7040), + [anon_sym_ATauth] = ACTIONS(7042), + [anon_sym_ATguest] = ACTIONS(7044), + [anon_sym_ATproduction] = ACTIONS(7046), + [anon_sym_ATenv] = ACTIONS(7048), + [anon_sym_AThasSection] = ACTIONS(7050), + [anon_sym_ATsectionMissing] = ACTIONS(7052), + [anon_sym_ATerror] = ACTIONS(7054), + [anon_sym_ATcan] = ACTIONS(7056), + [anon_sym_ATcannot] = ACTIONS(7058), + [anon_sym_ATcanany] = ACTIONS(7060), + [anon_sym_ATfeature] = ACTIONS(7062), + [aux_sym__custom_token1] = ACTIONS(7064), + [aux_sym__custom_token2] = ACTIONS(7066), + [anon_sym_ATswitch] = ACTIONS(7068), + [aux_sym_loop_operator_token1] = ACTIONS(7070), + [anon_sym_ATfor] = ACTIONS(7072), + [anon_sym_ATforeach] = ACTIONS(7074), + [anon_sym_ATforelse] = ACTIONS(7076), + [anon_sym_ATendforelse] = ACTIONS(4996), + [anon_sym_ATwhile] = ACTIONS(7078), + [anon_sym_ATsetup] = ACTIONS(7080), + [anon_sym_ATtask] = ACTIONS(7082), + [anon_sym_ATstory] = ACTIONS(7084), + [anon_sym_ATbefore] = ACTIONS(7086), + [anon_sym_ATafter] = ACTIONS(7088), + [anon_sym_ATsuccess] = ACTIONS(7090), + [anon_sym_ATfinished] = ACTIONS(7092), + [anon_sym_ATpersist] = ACTIONS(7094), + [anon_sym_ATteleport] = ACTIONS(7096), + [anon_sym_ATvolt] = ACTIONS(7098), + [aux_sym__text_token1] = ACTIONS(7100), + [aux_sym__text_token2] = ACTIONS(7100), + [aux_sym__text_token3] = ACTIONS(7102), }, [526] = { - [sym__definition] = STATE(538), - [sym_comment] = STATE(538), - [sym_keyword] = STATE(538), - [sym_php_statement] = STATE(538), - [sym__escaped] = STATE(2185), - [sym__unescaped] = STATE(2185), - [sym__raw] = STATE(2185), - [sym__inline_raw] = STATE(2185), - [sym__multi_line_raw] = STATE(2185), - [sym_attribute] = STATE(538), - [sym__inline_directive] = STATE(538), - [sym__nested_directive] = STATE(538), - [sym_fragment] = STATE(538), - [sym_section] = STATE(538), - [sym_inlineSection] = STATE(538), - [sym_once] = STATE(538), - [sym_verbatim] = STATE(538), - [sym_stack] = STATE(538), - [sym__push] = STATE(2187), - [sym__pushOnce] = STATE(2187), - [sym__pushIf] = STATE(2187), - [sym__prepend] = STATE(2187), - [sym__prependOnce] = STATE(2187), - [sym_conditional] = STATE(538), - [sym__if] = STATE(2193), - [sym__unless] = STATE(2193), - [sym__isset] = STATE(2193), - [sym__empty] = STATE(2193), - [sym__auth] = STATE(2193), - [sym__guest] = STATE(2193), - [sym__production] = STATE(2193), - [sym__env] = STATE(2193), - [sym__hasSection] = STATE(2193), - [sym__sectionMissing] = STATE(2193), - [sym__error] = STATE(2193), - [sym_authorization] = STATE(2193), - [sym__can] = STATE(2201), - [sym__cannot] = STATE(2201), - [sym__canany] = STATE(2201), - [sym__feature] = STATE(2193), - [sym__custom] = STATE(2193), - [sym_switch] = STATE(538), - [sym_loop] = STATE(538), - [sym_loop_operator] = STATE(538), - [sym__for] = STATE(2202), - [sym__foreach] = STATE(2202), - [sym__forelse] = STATE(2202), - [sym__while] = STATE(2202), - [sym_envoy] = STATE(538), - [sym__setup] = STATE(2185), - [sym__task] = STATE(2205), - [sym__story] = STATE(2205), - [sym__hooks] = STATE(2185), - [sym__before] = STATE(2185), - [sym__after] = STATE(2185), - [sym__envoy_error] = STATE(2185), - [sym__success] = STATE(2185), - [sym__finished] = STATE(2185), - [sym_livewire] = STATE(538), - [sym__persist] = STATE(2222), - [sym__teleport] = STATE(2222), - [sym__volt] = STATE(2222), - [aux_sym__directive_body] = STATE(538), - [sym_text] = STATE(538), - [sym__text] = STATE(819), - [aux_sym_php_only_repeat1] = STATE(819), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6496), - [aux_sym_keyword_token1] = ACTIONS(6498), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6500), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6502), - [anon_sym_ATphp] = ACTIONS(6504), - [aux_sym_attribute_token1] = ACTIONS(6506), - [aux_sym__inline_directive_token1] = ACTIONS(6508), - [anon_sym_ATfragment] = ACTIONS(6510), - [anon_sym_ATendfragment] = ACTIONS(4712), - [anon_sym_ATsection] = ACTIONS(6512), - [anon_sym_ATonce] = ACTIONS(6514), - [anon_sym_ATverbatim] = ACTIONS(6516), - [anon_sym_ATpush] = ACTIONS(6518), - [anon_sym_ATpushOnce] = ACTIONS(6520), - [anon_sym_ATpushIf] = ACTIONS(6522), - [anon_sym_ATprepend] = ACTIONS(6524), - [anon_sym_ATprependOnce] = ACTIONS(6526), - [anon_sym_ATif] = ACTIONS(6528), - [anon_sym_ATunless] = ACTIONS(6530), - [anon_sym_ATisset] = ACTIONS(6532), - [anon_sym_ATempty] = ACTIONS(6534), - [anon_sym_ATauth] = ACTIONS(6536), - [anon_sym_ATguest] = ACTIONS(6538), - [anon_sym_ATproduction] = ACTIONS(6540), - [anon_sym_ATenv] = ACTIONS(6542), - [anon_sym_AThasSection] = ACTIONS(6544), - [anon_sym_ATsectionMissing] = ACTIONS(6546), - [anon_sym_ATerror] = ACTIONS(6548), - [anon_sym_ATcan] = ACTIONS(6550), - [anon_sym_ATcannot] = ACTIONS(6552), - [anon_sym_ATcanany] = ACTIONS(6554), - [anon_sym_ATfeature] = ACTIONS(6556), - [aux_sym__custom_token1] = ACTIONS(6558), - [aux_sym__custom_token2] = ACTIONS(6560), - [anon_sym_ATswitch] = ACTIONS(6562), - [aux_sym_loop_operator_token1] = ACTIONS(6564), - [anon_sym_ATfor] = ACTIONS(6566), - [anon_sym_ATforeach] = ACTIONS(6568), - [anon_sym_ATforelse] = ACTIONS(6570), - [anon_sym_ATwhile] = ACTIONS(6572), - [anon_sym_ATsetup] = ACTIONS(6574), - [anon_sym_ATtask] = ACTIONS(6576), - [anon_sym_ATstory] = ACTIONS(6578), - [anon_sym_ATbefore] = ACTIONS(6580), - [anon_sym_ATafter] = ACTIONS(6582), - [anon_sym_ATsuccess] = ACTIONS(6584), - [anon_sym_ATfinished] = ACTIONS(6586), - [anon_sym_ATpersist] = ACTIONS(6588), - [anon_sym_ATteleport] = ACTIONS(6590), - [anon_sym_ATvolt] = ACTIONS(6592), - [aux_sym__text_token1] = ACTIONS(6594), - [aux_sym__text_token2] = ACTIONS(6594), - [aux_sym__text_token3] = ACTIONS(6596), + [sym__definition] = STATE(542), + [sym_keyword] = STATE(542), + [sym_php_statement] = STATE(542), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(542), + [sym__inline_directive] = STATE(542), + [sym__nested_directive] = STATE(542), + [sym_fragment] = STATE(542), + [sym_section] = STATE(542), + [sym_inlineSection] = STATE(542), + [sym_once] = STATE(542), + [sym_verbatim] = STATE(542), + [sym_stack] = STATE(542), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(542), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(542), + [sym_loop] = STATE(542), + [sym_loop_operator] = STATE(542), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(542), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(542), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(542), + [sym_text] = STATE(542), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7128), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7130), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [527] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6598), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7132), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [528] = { - [sym__definition] = STATE(524), - [sym_comment] = STATE(524), - [sym_keyword] = STATE(524), - [sym_php_statement] = STATE(524), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(524), - [sym__inline_directive] = STATE(524), - [sym__nested_directive] = STATE(524), - [sym_fragment] = STATE(524), - [sym_section] = STATE(524), - [sym_inlineSection] = STATE(524), - [sym_once] = STATE(524), - [sym_verbatim] = STATE(524), - [sym_stack] = STATE(524), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(524), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(524), - [sym_loop] = STATE(524), - [sym_loop_operator] = STATE(524), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(524), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(524), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(524), - [sym_text] = STATE(524), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6600), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7134), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [529] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6602), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(527), + [sym_keyword] = STATE(527), + [sym_php_statement] = STATE(527), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(527), + [sym__inline_directive] = STATE(527), + [sym__nested_directive] = STATE(527), + [sym_fragment] = STATE(527), + [sym_section] = STATE(527), + [sym_inlineSection] = STATE(527), + [sym_once] = STATE(527), + [sym_verbatim] = STATE(527), + [sym_stack] = STATE(527), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(527), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(527), + [sym_loop] = STATE(527), + [sym_loop_operator] = STATE(527), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(527), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(527), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(527), + [sym_text] = STATE(527), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7136), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7138), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [530] = { - [sym__definition] = STATE(654), - [sym_comment] = STATE(654), - [sym_keyword] = STATE(654), - [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(654), - [sym__inline_directive] = STATE(654), - [sym__nested_directive] = STATE(654), - [sym_fragment] = STATE(654), - [sym_section] = STATE(654), - [sym_inlineSection] = STATE(654), - [sym_once] = STATE(654), - [sym_verbatim] = STATE(654), - [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(654), - [sym_loop] = STATE(654), - [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(654), - [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6604), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(528), + [sym_keyword] = STATE(528), + [sym_php_statement] = STATE(528), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(528), + [sym__inline_directive] = STATE(528), + [sym__nested_directive] = STATE(528), + [sym_fragment] = STATE(528), + [sym_section] = STATE(528), + [sym_inlineSection] = STATE(528), + [sym_once] = STATE(528), + [sym_verbatim] = STATE(528), + [sym_stack] = STATE(528), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(528), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(528), + [sym_loop] = STATE(528), + [sym_loop_operator] = STATE(528), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(528), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(528), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(528), + [sym_text] = STATE(528), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7140), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7142), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [531] = { - [sym__definition] = STATE(529), - [sym_comment] = STATE(529), - [sym_keyword] = STATE(529), - [sym_php_statement] = STATE(529), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(529), - [sym__inline_directive] = STATE(529), - [sym__nested_directive] = STATE(529), - [sym_fragment] = STATE(529), - [sym_section] = STATE(529), - [sym_inlineSection] = STATE(529), - [sym_once] = STATE(529), - [sym_verbatim] = STATE(529), - [sym_stack] = STATE(529), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(529), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(529), - [sym_loop] = STATE(529), - [sym_loop_operator] = STATE(529), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(529), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(529), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(529), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(529), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6606), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7144), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [532] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6606), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [533] = { - [sym__definition] = STATE(530), - [sym_comment] = STATE(530), - [sym_keyword] = STATE(530), - [sym_php_statement] = STATE(530), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(530), - [sym__inline_directive] = STATE(530), - [sym__nested_directive] = STATE(530), - [sym_fragment] = STATE(530), - [sym_section] = STATE(530), - [sym_inlineSection] = STATE(530), - [sym_once] = STATE(530), - [sym_verbatim] = STATE(530), - [sym_stack] = STATE(530), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(530), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(530), - [sym_loop] = STATE(530), - [sym_loop_operator] = STATE(530), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(530), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(530), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(530), - [sym_text] = STATE(530), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6608), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [534] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -91097,239 +89822,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6610), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7146), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [533] = { + [sym__definition] = STATE(552), + [sym_keyword] = STATE(552), + [sym_php_statement] = STATE(552), + [sym__escaped] = STATE(2110), + [sym__unescaped] = STATE(2110), + [sym__raw] = STATE(2110), + [sym__inline_raw] = STATE(2110), + [sym__multi_line_raw] = STATE(2110), + [sym_attribute] = STATE(552), + [sym__inline_directive] = STATE(552), + [sym__nested_directive] = STATE(552), + [sym_fragment] = STATE(552), + [sym_section] = STATE(552), + [sym_inlineSection] = STATE(552), + [sym_once] = STATE(552), + [sym_verbatim] = STATE(552), + [sym_stack] = STATE(552), + [sym__push] = STATE(2109), + [sym__pushOnce] = STATE(2109), + [sym__pushIf] = STATE(2109), + [sym__prepend] = STATE(2109), + [sym__prependOnce] = STATE(2109), + [sym_conditional] = STATE(552), + [sym__if] = STATE(2108), + [sym__unless] = STATE(2108), + [sym__isset] = STATE(2108), + [sym__empty] = STATE(2108), + [sym__auth] = STATE(2108), + [sym__guest] = STATE(2108), + [sym__production] = STATE(2108), + [sym__env] = STATE(2108), + [sym__hasSection] = STATE(2108), + [sym__sectionMissing] = STATE(2108), + [sym__error] = STATE(2108), + [sym_authorization] = STATE(2108), + [sym__can] = STATE(2107), + [sym__cannot] = STATE(2107), + [sym__canany] = STATE(2107), + [sym__feature] = STATE(2108), + [sym__custom] = STATE(2108), + [sym_switch] = STATE(552), + [sym_loop] = STATE(552), + [sym_loop_operator] = STATE(552), + [sym__for] = STATE(2106), + [sym__foreach] = STATE(2106), + [sym__forelse] = STATE(2106), + [sym__while] = STATE(2106), + [sym_envoy] = STATE(552), + [sym__setup] = STATE(2110), + [sym__task] = STATE(2105), + [sym__story] = STATE(2105), + [sym__hooks] = STATE(2110), + [sym__before] = STATE(2110), + [sym__after] = STATE(2110), + [sym__envoy_error] = STATE(2110), + [sym__success] = STATE(2110), + [sym__finished] = STATE(2110), + [sym_livewire] = STATE(552), + [sym__persist] = STATE(2104), + [sym__teleport] = STATE(2104), + [sym__volt] = STATE(2104), + [aux_sym__directive_body] = STATE(552), + [sym_text] = STATE(552), + [sym__text] = STATE(1169), + [aux_sym_php_only_repeat1] = STATE(1169), + [sym_comment] = ACTIONS(7148), + [aux_sym_keyword_token1] = ACTIONS(7150), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7152), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7154), + [anon_sym_ATphp] = ACTIONS(7156), + [aux_sym_attribute_token1] = ACTIONS(7158), + [aux_sym__inline_directive_token1] = ACTIONS(7160), + [anon_sym_ATfragment] = ACTIONS(7162), + [anon_sym_ATsection] = ACTIONS(7164), + [anon_sym_ATonce] = ACTIONS(7166), + [anon_sym_ATverbatim] = ACTIONS(7168), + [anon_sym_ATpush] = ACTIONS(7170), + [anon_sym_ATpushOnce] = ACTIONS(7172), + [anon_sym_ATpushIf] = ACTIONS(7174), + [anon_sym_ATprepend] = ACTIONS(7176), + [anon_sym_ATendprepend] = ACTIONS(4609), + [anon_sym_ATprependOnce] = ACTIONS(7178), + [anon_sym_ATif] = ACTIONS(7180), + [anon_sym_ATunless] = ACTIONS(7182), + [anon_sym_ATisset] = ACTIONS(7184), + [anon_sym_ATempty] = ACTIONS(7186), + [anon_sym_ATauth] = ACTIONS(7188), + [anon_sym_ATguest] = ACTIONS(7190), + [anon_sym_ATproduction] = ACTIONS(7192), + [anon_sym_ATenv] = ACTIONS(7194), + [anon_sym_AThasSection] = ACTIONS(7196), + [anon_sym_ATsectionMissing] = ACTIONS(7198), + [anon_sym_ATerror] = ACTIONS(7200), + [anon_sym_ATcan] = ACTIONS(7202), + [anon_sym_ATcannot] = ACTIONS(7204), + [anon_sym_ATcanany] = ACTIONS(7206), + [anon_sym_ATfeature] = ACTIONS(7208), + [aux_sym__custom_token1] = ACTIONS(7210), + [aux_sym__custom_token2] = ACTIONS(7212), + [anon_sym_ATswitch] = ACTIONS(7214), + [aux_sym_loop_operator_token1] = ACTIONS(7216), + [anon_sym_ATfor] = ACTIONS(7218), + [anon_sym_ATforeach] = ACTIONS(7220), + [anon_sym_ATforelse] = ACTIONS(7222), + [anon_sym_ATwhile] = ACTIONS(7224), + [anon_sym_ATsetup] = ACTIONS(7226), + [anon_sym_ATtask] = ACTIONS(7228), + [anon_sym_ATstory] = ACTIONS(7230), + [anon_sym_ATbefore] = ACTIONS(7232), + [anon_sym_ATafter] = ACTIONS(7234), + [anon_sym_ATsuccess] = ACTIONS(7236), + [anon_sym_ATfinished] = ACTIONS(7238), + [anon_sym_ATpersist] = ACTIONS(7240), + [anon_sym_ATteleport] = ACTIONS(7242), + [anon_sym_ATvolt] = ACTIONS(7244), + [aux_sym__text_token1] = ACTIONS(7246), + [aux_sym__text_token2] = ACTIONS(7246), + [aux_sym__text_token3] = ACTIONS(7248), + }, + [534] = { + [sym__definition] = STATE(531), + [sym_keyword] = STATE(531), + [sym_php_statement] = STATE(531), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(531), + [sym__inline_directive] = STATE(531), + [sym__nested_directive] = STATE(531), + [sym_fragment] = STATE(531), + [sym_section] = STATE(531), + [sym_inlineSection] = STATE(531), + [sym_once] = STATE(531), + [sym_verbatim] = STATE(531), + [sym_stack] = STATE(531), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(531), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(531), + [sym_loop] = STATE(531), + [sym_loop_operator] = STATE(531), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(531), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(531), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(531), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(531), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7250), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7252), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [535] = { - [sym__definition] = STATE(235), - [sym_comment] = STATE(235), - [sym_keyword] = STATE(235), - [sym_php_statement] = STATE(235), - [sym__escaped] = STATE(2223), - [sym__unescaped] = STATE(2223), - [sym__raw] = STATE(2223), - [sym__inline_raw] = STATE(2223), - [sym__multi_line_raw] = STATE(2223), - [sym_attribute] = STATE(235), - [sym__inline_directive] = STATE(235), - [sym__nested_directive] = STATE(235), - [sym_fragment] = STATE(235), - [sym_section] = STATE(235), - [sym_inlineSection] = STATE(235), - [sym_once] = STATE(235), - [sym_verbatim] = STATE(235), - [sym_stack] = STATE(235), - [sym__push] = STATE(2224), - [sym__pushOnce] = STATE(2224), - [sym__pushIf] = STATE(2224), - [sym__prepend] = STATE(2224), - [sym__prependOnce] = STATE(2224), - [sym_conditional] = STATE(235), - [sym__if] = STATE(2225), - [sym__unless] = STATE(2225), - [sym__isset] = STATE(2225), - [sym__empty] = STATE(2225), - [sym__auth] = STATE(2225), - [sym__guest] = STATE(2225), - [sym__production] = STATE(2225), - [sym__env] = STATE(2225), - [sym__hasSection] = STATE(2225), - [sym__sectionMissing] = STATE(2225), - [sym__error] = STATE(2225), - [sym_authorization] = STATE(2225), - [sym__can] = STATE(2226), - [sym__cannot] = STATE(2226), - [sym__canany] = STATE(2226), - [sym__feature] = STATE(2225), - [sym__custom] = STATE(2225), - [sym_switch] = STATE(235), - [sym_loop] = STATE(235), - [sym_loop_operator] = STATE(235), - [sym__for] = STATE(2227), - [sym__foreach] = STATE(2227), - [sym__forelse] = STATE(2227), - [sym__while] = STATE(2227), - [sym_envoy] = STATE(235), - [sym__setup] = STATE(2223), - [sym__task] = STATE(2228), - [sym__story] = STATE(2228), - [sym__hooks] = STATE(2223), - [sym__before] = STATE(2223), - [sym__after] = STATE(2223), - [sym__envoy_error] = STATE(2223), - [sym__success] = STATE(2223), - [sym__finished] = STATE(2223), - [sym_livewire] = STATE(235), - [sym__persist] = STATE(2229), - [sym__teleport] = STATE(2229), - [sym__volt] = STATE(2229), - [aux_sym__directive_body] = STATE(235), - [sym_text] = STATE(235), - [sym__text] = STATE(989), - [aux_sym_php_only_repeat1] = STATE(989), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4554), - [aux_sym_keyword_token1] = ACTIONS(4556), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4558), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4560), - [anon_sym_ATphp] = ACTIONS(4562), - [aux_sym_attribute_token1] = ACTIONS(4564), - [aux_sym__inline_directive_token1] = ACTIONS(4566), - [anon_sym_ATfragment] = ACTIONS(4568), - [anon_sym_ATsection] = ACTIONS(4570), - [anon_sym_ATonce] = ACTIONS(4572), - [anon_sym_ATverbatim] = ACTIONS(4574), - [anon_sym_ATpush] = ACTIONS(4576), - [anon_sym_ATpushOnce] = ACTIONS(4578), - [anon_sym_ATpushIf] = ACTIONS(4580), - [anon_sym_ATprepend] = ACTIONS(4582), - [anon_sym_ATprependOnce] = ACTIONS(4584), - [anon_sym_ATif] = ACTIONS(4586), - [anon_sym_ATunless] = ACTIONS(4588), - [anon_sym_ATisset] = ACTIONS(4590), - [anon_sym_ATempty] = ACTIONS(4592), - [anon_sym_ATauth] = ACTIONS(4594), - [anon_sym_ATguest] = ACTIONS(4596), - [anon_sym_ATproduction] = ACTIONS(4598), - [anon_sym_ATenv] = ACTIONS(4600), - [anon_sym_AThasSection] = ACTIONS(4602), - [anon_sym_ATsectionMissing] = ACTIONS(4604), - [anon_sym_ATerror] = ACTIONS(4606), - [anon_sym_ATcan] = ACTIONS(4608), - [anon_sym_ATcannot] = ACTIONS(4610), - [anon_sym_ATcanany] = ACTIONS(4612), - [anon_sym_ATfeature] = ACTIONS(4614), - [aux_sym__custom_token1] = ACTIONS(4616), - [aux_sym__custom_token2] = ACTIONS(4618), - [anon_sym_ATswitch] = ACTIONS(4620), - [aux_sym_loop_operator_token1] = ACTIONS(4622), - [anon_sym_ATfor] = ACTIONS(4624), - [anon_sym_ATendfor] = ACTIONS(4712), - [anon_sym_ATforeach] = ACTIONS(4628), - [anon_sym_ATforelse] = ACTIONS(4630), - [anon_sym_ATwhile] = ACTIONS(4632), - [anon_sym_ATsetup] = ACTIONS(4634), - [anon_sym_ATtask] = ACTIONS(4636), - [anon_sym_ATstory] = ACTIONS(4638), - [anon_sym_ATbefore] = ACTIONS(4640), - [anon_sym_ATafter] = ACTIONS(4642), - [anon_sym_ATsuccess] = ACTIONS(4644), - [anon_sym_ATfinished] = ACTIONS(4646), - [anon_sym_ATpersist] = ACTIONS(4648), - [anon_sym_ATteleport] = ACTIONS(4650), - [anon_sym_ATvolt] = ACTIONS(4652), - [aux_sym__text_token1] = ACTIONS(4654), - [aux_sym__text_token2] = ACTIONS(4654), - [aux_sym__text_token3] = ACTIONS(4656), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7252), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [536] = { + [sym__definition] = STATE(572), + [sym_keyword] = STATE(572), + [sym_php_statement] = STATE(572), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(572), + [sym__inline_directive] = STATE(572), + [sym__nested_directive] = STATE(572), + [sym_fragment] = STATE(572), + [sym_section] = STATE(572), + [sym_inlineSection] = STATE(572), + [sym_once] = STATE(572), + [sym_verbatim] = STATE(572), + [sym_stack] = STATE(572), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(572), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(572), + [sym_loop] = STATE(572), + [sym_loop_operator] = STATE(572), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(572), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(572), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(572), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(572), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7254), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7256), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [537] = { [sym__definition] = STATE(532), - [sym_comment] = STATE(532), [sym_keyword] = STATE(532), [sym_php_statement] = STATE(532), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(532), [sym__inline_directive] = STATE(532), [sym__nested_directive] = STATE(532), @@ -91339,602 +90422,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(532), [sym_verbatim] = STATE(532), [sym_stack] = STATE(532), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(532), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(532), [sym_loop] = STATE(532), [sym_loop_operator] = STATE(532), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(532), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(532), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(532), [sym_text] = STATE(532), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(532), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6612), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [537] = { - [sym__definition] = STATE(534), - [sym_comment] = STATE(534), - [sym_keyword] = STATE(534), - [sym_php_statement] = STATE(534), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(534), - [sym__inline_directive] = STATE(534), - [sym__nested_directive] = STATE(534), - [sym_fragment] = STATE(534), - [sym_section] = STATE(534), - [sym_inlineSection] = STATE(534), - [sym_once] = STATE(534), - [sym_verbatim] = STATE(534), - [sym_stack] = STATE(534), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(534), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(534), - [sym_loop] = STATE(534), - [sym_loop_operator] = STATE(534), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(534), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(534), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(534), - [sym_text] = STATE(534), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6614), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7258), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7260), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [538] = { - [sym__definition] = STATE(184), - [sym_comment] = STATE(184), - [sym_keyword] = STATE(184), - [sym_php_statement] = STATE(184), - [sym__escaped] = STATE(2185), - [sym__unescaped] = STATE(2185), - [sym__raw] = STATE(2185), - [sym__inline_raw] = STATE(2185), - [sym__multi_line_raw] = STATE(2185), - [sym_attribute] = STATE(184), - [sym__inline_directive] = STATE(184), - [sym__nested_directive] = STATE(184), - [sym_fragment] = STATE(184), - [sym_section] = STATE(184), - [sym_inlineSection] = STATE(184), - [sym_once] = STATE(184), - [sym_verbatim] = STATE(184), - [sym_stack] = STATE(184), - [sym__push] = STATE(2187), - [sym__pushOnce] = STATE(2187), - [sym__pushIf] = STATE(2187), - [sym__prepend] = STATE(2187), - [sym__prependOnce] = STATE(2187), - [sym_conditional] = STATE(184), - [sym__if] = STATE(2193), - [sym__unless] = STATE(2193), - [sym__isset] = STATE(2193), - [sym__empty] = STATE(2193), - [sym__auth] = STATE(2193), - [sym__guest] = STATE(2193), - [sym__production] = STATE(2193), - [sym__env] = STATE(2193), - [sym__hasSection] = STATE(2193), - [sym__sectionMissing] = STATE(2193), - [sym__error] = STATE(2193), - [sym_authorization] = STATE(2193), - [sym__can] = STATE(2201), - [sym__cannot] = STATE(2201), - [sym__canany] = STATE(2201), - [sym__feature] = STATE(2193), - [sym__custom] = STATE(2193), - [sym_switch] = STATE(184), - [sym_loop] = STATE(184), - [sym_loop_operator] = STATE(184), - [sym__for] = STATE(2202), - [sym__foreach] = STATE(2202), - [sym__forelse] = STATE(2202), - [sym__while] = STATE(2202), - [sym_envoy] = STATE(184), - [sym__setup] = STATE(2185), - [sym__task] = STATE(2205), - [sym__story] = STATE(2205), - [sym__hooks] = STATE(2185), - [sym__before] = STATE(2185), - [sym__after] = STATE(2185), - [sym__envoy_error] = STATE(2185), - [sym__success] = STATE(2185), - [sym__finished] = STATE(2185), - [sym_livewire] = STATE(184), - [sym__persist] = STATE(2222), - [sym__teleport] = STATE(2222), - [sym__volt] = STATE(2222), - [aux_sym__directive_body] = STATE(184), - [sym_text] = STATE(184), - [sym__text] = STATE(819), - [aux_sym_php_only_repeat1] = STATE(819), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6496), - [aux_sym_keyword_token1] = ACTIONS(6498), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6500), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6502), - [anon_sym_ATphp] = ACTIONS(6504), - [aux_sym_attribute_token1] = ACTIONS(6506), - [aux_sym__inline_directive_token1] = ACTIONS(6508), - [anon_sym_ATfragment] = ACTIONS(6510), - [anon_sym_ATendfragment] = ACTIONS(4626), - [anon_sym_ATsection] = ACTIONS(6512), - [anon_sym_ATonce] = ACTIONS(6514), - [anon_sym_ATverbatim] = ACTIONS(6516), - [anon_sym_ATpush] = ACTIONS(6518), - [anon_sym_ATpushOnce] = ACTIONS(6520), - [anon_sym_ATpushIf] = ACTIONS(6522), - [anon_sym_ATprepend] = ACTIONS(6524), - [anon_sym_ATprependOnce] = ACTIONS(6526), - [anon_sym_ATif] = ACTIONS(6528), - [anon_sym_ATunless] = ACTIONS(6530), - [anon_sym_ATisset] = ACTIONS(6532), - [anon_sym_ATempty] = ACTIONS(6534), - [anon_sym_ATauth] = ACTIONS(6536), - [anon_sym_ATguest] = ACTIONS(6538), - [anon_sym_ATproduction] = ACTIONS(6540), - [anon_sym_ATenv] = ACTIONS(6542), - [anon_sym_AThasSection] = ACTIONS(6544), - [anon_sym_ATsectionMissing] = ACTIONS(6546), - [anon_sym_ATerror] = ACTIONS(6548), - [anon_sym_ATcan] = ACTIONS(6550), - [anon_sym_ATcannot] = ACTIONS(6552), - [anon_sym_ATcanany] = ACTIONS(6554), - [anon_sym_ATfeature] = ACTIONS(6556), - [aux_sym__custom_token1] = ACTIONS(6558), - [aux_sym__custom_token2] = ACTIONS(6560), - [anon_sym_ATswitch] = ACTIONS(6562), - [aux_sym_loop_operator_token1] = ACTIONS(6564), - [anon_sym_ATfor] = ACTIONS(6566), - [anon_sym_ATforeach] = ACTIONS(6568), - [anon_sym_ATforelse] = ACTIONS(6570), - [anon_sym_ATwhile] = ACTIONS(6572), - [anon_sym_ATsetup] = ACTIONS(6574), - [anon_sym_ATtask] = ACTIONS(6576), - [anon_sym_ATstory] = ACTIONS(6578), - [anon_sym_ATbefore] = ACTIONS(6580), - [anon_sym_ATafter] = ACTIONS(6582), - [anon_sym_ATsuccess] = ACTIONS(6584), - [anon_sym_ATfinished] = ACTIONS(6586), - [anon_sym_ATpersist] = ACTIONS(6588), - [anon_sym_ATteleport] = ACTIONS(6590), - [anon_sym_ATvolt] = ACTIONS(6592), - [aux_sym__text_token1] = ACTIONS(6594), - [aux_sym__text_token2] = ACTIONS(6594), - [aux_sym__text_token3] = ACTIONS(6596), + [sym__definition] = STATE(538), + [sym_keyword] = STATE(538), + [sym_php_statement] = STATE(538), + [sym__escaped] = STATE(2175), + [sym__unescaped] = STATE(2175), + [sym__raw] = STATE(2175), + [sym__inline_raw] = STATE(2175), + [sym__multi_line_raw] = STATE(2175), + [sym_attribute] = STATE(538), + [sym__inline_directive] = STATE(538), + [sym__nested_directive] = STATE(538), + [sym_fragment] = STATE(538), + [sym_section] = STATE(538), + [sym_inlineSection] = STATE(538), + [sym_once] = STATE(538), + [sym_verbatim] = STATE(538), + [sym_stack] = STATE(538), + [sym__push] = STATE(2176), + [sym__pushOnce] = STATE(2176), + [sym__pushIf] = STATE(2176), + [sym__prepend] = STATE(2176), + [sym__prependOnce] = STATE(2176), + [sym_conditional] = STATE(538), + [sym__if] = STATE(2177), + [sym__unless] = STATE(2177), + [sym__isset] = STATE(2177), + [sym__empty] = STATE(2177), + [sym__auth] = STATE(2177), + [sym__guest] = STATE(2177), + [sym__production] = STATE(2177), + [sym__env] = STATE(2177), + [sym__hasSection] = STATE(2177), + [sym__sectionMissing] = STATE(2177), + [sym__error] = STATE(2177), + [sym_authorization] = STATE(2177), + [sym__can] = STATE(2178), + [sym__cannot] = STATE(2178), + [sym__canany] = STATE(2178), + [sym__feature] = STATE(2177), + [sym__custom] = STATE(2177), + [sym_switch] = STATE(538), + [sym_loop] = STATE(538), + [sym_loop_operator] = STATE(538), + [sym__for] = STATE(2179), + [sym__foreach] = STATE(2179), + [sym__forelse] = STATE(2179), + [sym__while] = STATE(2179), + [sym_envoy] = STATE(538), + [sym__setup] = STATE(2175), + [sym__task] = STATE(2180), + [sym__story] = STATE(2180), + [sym__hooks] = STATE(2175), + [sym__before] = STATE(2175), + [sym__after] = STATE(2175), + [sym__envoy_error] = STATE(2175), + [sym__success] = STATE(2175), + [sym__finished] = STATE(2175), + [sym_livewire] = STATE(538), + [sym__persist] = STATE(2181), + [sym__teleport] = STATE(2181), + [sym__volt] = STATE(2181), + [aux_sym__directive_body] = STATE(538), + [sym_text] = STATE(538), + [sym__text] = STATE(1001), + [aux_sym_php_only_repeat1] = STATE(1001), + [sym_comment] = ACTIONS(7262), + [aux_sym_keyword_token1] = ACTIONS(7265), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7268), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7271), + [anon_sym_ATphp] = ACTIONS(7274), + [aux_sym_attribute_token1] = ACTIONS(7277), + [aux_sym__inline_directive_token1] = ACTIONS(7280), + [anon_sym_ATfragment] = ACTIONS(7283), + [anon_sym_ATsection] = ACTIONS(7286), + [anon_sym_ATonce] = ACTIONS(7289), + [anon_sym_ATverbatim] = ACTIONS(7292), + [anon_sym_ATpush] = ACTIONS(7295), + [anon_sym_ATpushOnce] = ACTIONS(7298), + [anon_sym_ATpushIf] = ACTIONS(7301), + [anon_sym_ATprepend] = ACTIONS(7304), + [anon_sym_ATprependOnce] = ACTIONS(7307), + [anon_sym_ATif] = ACTIONS(7310), + [anon_sym_ATunless] = ACTIONS(7313), + [anon_sym_ATisset] = ACTIONS(7316), + [anon_sym_ATempty] = ACTIONS(7319), + [anon_sym_ATauth] = ACTIONS(7322), + [anon_sym_ATguest] = ACTIONS(7325), + [anon_sym_ATproduction] = ACTIONS(7328), + [anon_sym_ATenv] = ACTIONS(7331), + [anon_sym_AThasSection] = ACTIONS(7334), + [anon_sym_ATsectionMissing] = ACTIONS(7337), + [anon_sym_ATerror] = ACTIONS(7340), + [anon_sym_ATcan] = ACTIONS(7343), + [anon_sym_ATcannot] = ACTIONS(7346), + [anon_sym_ATcanany] = ACTIONS(7349), + [anon_sym_ATfeature] = ACTIONS(7352), + [aux_sym__custom_token1] = ACTIONS(7355), + [aux_sym__custom_token2] = ACTIONS(7358), + [anon_sym_ATswitch] = ACTIONS(7361), + [aux_sym_loop_operator_token1] = ACTIONS(7364), + [anon_sym_ATfor] = ACTIONS(7367), + [anon_sym_ATendfor] = ACTIONS(5035), + [anon_sym_ATforeach] = ACTIONS(7370), + [anon_sym_ATforelse] = ACTIONS(7373), + [anon_sym_ATwhile] = ACTIONS(7376), + [anon_sym_ATsetup] = ACTIONS(7379), + [anon_sym_ATtask] = ACTIONS(7382), + [anon_sym_ATstory] = ACTIONS(7385), + [anon_sym_ATbefore] = ACTIONS(7388), + [anon_sym_ATafter] = ACTIONS(7391), + [anon_sym_ATsuccess] = ACTIONS(7394), + [anon_sym_ATfinished] = ACTIONS(7397), + [anon_sym_ATpersist] = ACTIONS(7400), + [anon_sym_ATteleport] = ACTIONS(7403), + [anon_sym_ATvolt] = ACTIONS(7406), + [aux_sym__text_token1] = ACTIONS(7409), + [aux_sym__text_token2] = ACTIONS(7409), + [aux_sym__text_token3] = ACTIONS(7412), }, [539] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6616), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(654), + [sym_keyword] = STATE(654), + [sym_php_statement] = STATE(654), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(654), + [sym__inline_directive] = STATE(654), + [sym__nested_directive] = STATE(654), + [sym_fragment] = STATE(654), + [sym_section] = STATE(654), + [sym_inlineSection] = STATE(654), + [sym_once] = STATE(654), + [sym_verbatim] = STATE(654), + [sym_stack] = STATE(654), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(654), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(654), + [sym_loop] = STATE(654), + [sym_loop_operator] = STATE(654), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(654), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(654), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(654), + [sym_text] = STATE(654), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7415), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [540] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6618), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(535), + [sym_keyword] = STATE(535), + [sym_php_statement] = STATE(535), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(535), + [sym__inline_directive] = STATE(535), + [sym__nested_directive] = STATE(535), + [sym_fragment] = STATE(535), + [sym_section] = STATE(535), + [sym_inlineSection] = STATE(535), + [sym_once] = STATE(535), + [sym_verbatim] = STATE(535), + [sym_stack] = STATE(535), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(535), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(535), + [sym_loop] = STATE(535), + [sym_loop_operator] = STATE(535), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(535), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(535), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(535), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(535), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7417), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7419), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [541] = { [sym__definition] = STATE(539), - [sym_comment] = STATE(539), [sym_keyword] = STATE(539), [sym_php_statement] = STATE(539), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(539), [sym__inline_directive] = STATE(539), [sym__nested_directive] = STATE(539), @@ -91944,481 +90902,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(539), [sym_verbatim] = STATE(539), [sym_stack] = STATE(539), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(539), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(539), [sym_loop] = STATE(539), [sym_loop_operator] = STATE(539), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(539), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(539), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(539), [sym_text] = STATE(539), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6620), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7421), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7423), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [542] = { - [sym__definition] = STATE(540), - [sym_comment] = STATE(540), - [sym_keyword] = STATE(540), - [sym_php_statement] = STATE(540), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(540), - [sym__inline_directive] = STATE(540), - [sym__nested_directive] = STATE(540), - [sym_fragment] = STATE(540), - [sym_section] = STATE(540), - [sym_inlineSection] = STATE(540), - [sym_once] = STATE(540), - [sym_verbatim] = STATE(540), - [sym_stack] = STATE(540), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(540), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(540), - [sym_loop] = STATE(540), - [sym_loop_operator] = STATE(540), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(540), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(540), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(540), - [sym_text] = STATE(540), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6622), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [543] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6624), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [544] = { - [sym__definition] = STATE(564), - [sym_comment] = STATE(564), - [sym_keyword] = STATE(564), - [sym_php_statement] = STATE(564), - [sym__escaped] = STATE(2133), - [sym__unescaped] = STATE(2133), - [sym__raw] = STATE(2133), - [sym__inline_raw] = STATE(2133), - [sym__multi_line_raw] = STATE(2133), - [sym_attribute] = STATE(564), - [sym__inline_directive] = STATE(564), - [sym__nested_directive] = STATE(564), - [sym_fragment] = STATE(564), - [sym_section] = STATE(564), - [sym_inlineSection] = STATE(564), - [sym_once] = STATE(564), - [sym_verbatim] = STATE(564), - [sym_stack] = STATE(564), - [sym__push] = STATE(2132), - [sym__pushOnce] = STATE(2132), - [sym__pushIf] = STATE(2132), - [sym__prepend] = STATE(2132), - [sym__prependOnce] = STATE(2132), - [sym_conditional] = STATE(564), - [sym__if] = STATE(2131), - [sym__unless] = STATE(2131), - [sym__isset] = STATE(2131), - [sym__empty] = STATE(2131), - [sym__auth] = STATE(2131), - [sym__guest] = STATE(2131), - [sym__production] = STATE(2131), - [sym__env] = STATE(2131), - [sym__hasSection] = STATE(2131), - [sym__sectionMissing] = STATE(2131), - [sym__error] = STATE(2131), - [sym_authorization] = STATE(2131), - [sym__can] = STATE(2130), - [sym__cannot] = STATE(2130), - [sym__canany] = STATE(2130), - [sym__feature] = STATE(2131), - [sym__custom] = STATE(2131), - [sym_switch] = STATE(564), - [sym_loop] = STATE(564), - [sym_loop_operator] = STATE(564), - [sym__for] = STATE(2129), - [sym__foreach] = STATE(2129), - [sym__forelse] = STATE(2129), - [sym__while] = STATE(2129), - [sym_envoy] = STATE(564), - [sym__setup] = STATE(2133), - [sym__task] = STATE(2128), - [sym__story] = STATE(2128), - [sym__hooks] = STATE(2133), - [sym__before] = STATE(2133), - [sym__after] = STATE(2133), - [sym__envoy_error] = STATE(2133), - [sym__success] = STATE(2133), - [sym__finished] = STATE(2133), - [sym_livewire] = STATE(564), - [sym__persist] = STATE(2127), - [sym__teleport] = STATE(2127), - [sym__volt] = STATE(2127), - [aux_sym__directive_body] = STATE(564), - [sym_text] = STATE(564), - [sym__text] = STATE(1282), - [aux_sym_php_only_repeat1] = STATE(1282), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6626), - [aux_sym_keyword_token1] = ACTIONS(6628), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6632), - [anon_sym_ATphp] = ACTIONS(6634), - [aux_sym_attribute_token1] = ACTIONS(6636), - [aux_sym__inline_directive_token1] = ACTIONS(6638), - [anon_sym_ATfragment] = ACTIONS(6640), - [anon_sym_ATsection] = ACTIONS(6642), - [anon_sym_ATonce] = ACTIONS(6644), - [anon_sym_ATverbatim] = ACTIONS(6646), - [anon_sym_ATpush] = ACTIONS(6648), - [anon_sym_ATpushOnce] = ACTIONS(6650), - [anon_sym_ATpushIf] = ACTIONS(6652), - [anon_sym_ATprepend] = ACTIONS(6654), - [anon_sym_ATendprepend] = ACTIONS(4712), - [anon_sym_ATprependOnce] = ACTIONS(6656), - [anon_sym_ATif] = ACTIONS(6658), - [anon_sym_ATunless] = ACTIONS(6660), - [anon_sym_ATisset] = ACTIONS(6662), - [anon_sym_ATempty] = ACTIONS(6664), - [anon_sym_ATauth] = ACTIONS(6666), - [anon_sym_ATguest] = ACTIONS(6668), - [anon_sym_ATproduction] = ACTIONS(6670), - [anon_sym_ATenv] = ACTIONS(6672), - [anon_sym_AThasSection] = ACTIONS(6674), - [anon_sym_ATsectionMissing] = ACTIONS(6676), - [anon_sym_ATerror] = ACTIONS(6678), - [anon_sym_ATcan] = ACTIONS(6680), - [anon_sym_ATcannot] = ACTIONS(6682), - [anon_sym_ATcanany] = ACTIONS(6684), - [anon_sym_ATfeature] = ACTIONS(6686), - [aux_sym__custom_token1] = ACTIONS(6688), - [aux_sym__custom_token2] = ACTIONS(6690), - [anon_sym_ATswitch] = ACTIONS(6692), - [aux_sym_loop_operator_token1] = ACTIONS(6694), - [anon_sym_ATfor] = ACTIONS(6696), - [anon_sym_ATforeach] = ACTIONS(6698), - [anon_sym_ATforelse] = ACTIONS(6700), - [anon_sym_ATwhile] = ACTIONS(6702), - [anon_sym_ATsetup] = ACTIONS(6704), - [anon_sym_ATtask] = ACTIONS(6706), - [anon_sym_ATstory] = ACTIONS(6708), - [anon_sym_ATbefore] = ACTIONS(6710), - [anon_sym_ATafter] = ACTIONS(6712), - [anon_sym_ATsuccess] = ACTIONS(6714), - [anon_sym_ATfinished] = ACTIONS(6716), - [anon_sym_ATpersist] = ACTIONS(6718), - [anon_sym_ATteleport] = ACTIONS(6720), - [anon_sym_ATvolt] = ACTIONS(6722), - [aux_sym__text_token1] = ACTIONS(6724), - [aux_sym__text_token2] = ACTIONS(6724), - [aux_sym__text_token3] = ACTIONS(6726), - }, - [545] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -92428,118 +91022,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6728), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7425), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [546] = { + [543] = { + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7427), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [544] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7429), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [545] = { [sym__definition] = STATE(543), - [sym_comment] = STATE(543), [sym_keyword] = STATE(543), [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(543), [sym__inline_directive] = STATE(543), [sym__nested_directive] = STATE(543), @@ -92549,602 +91382,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(543), [sym_verbatim] = STATE(543), [sym_stack] = STATE(543), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(543), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(543), [sym_loop] = STATE(543), [sym_loop_operator] = STATE(543), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(543), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(543), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(543), [sym_text] = STATE(543), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(543), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6730), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7431), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7433), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [546] = { + [sym__definition] = STATE(544), + [sym_keyword] = STATE(544), + [sym_php_statement] = STATE(544), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(544), + [sym__inline_directive] = STATE(544), + [sym__nested_directive] = STATE(544), + [sym_fragment] = STATE(544), + [sym_section] = STATE(544), + [sym_inlineSection] = STATE(544), + [sym_once] = STATE(544), + [sym_verbatim] = STATE(544), + [sym_stack] = STATE(544), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(544), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(544), + [sym_loop] = STATE(544), + [sym_loop_operator] = STATE(544), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(544), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(544), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(544), + [sym_text] = STATE(544), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7435), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7437), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [547] = { - [sym__definition] = STATE(569), - [sym_comment] = STATE(569), - [sym_keyword] = STATE(569), - [sym_php_statement] = STATE(569), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(569), - [sym__inline_directive] = STATE(569), - [sym__nested_directive] = STATE(569), - [sym_fragment] = STATE(569), - [sym_section] = STATE(569), - [sym_inlineSection] = STATE(569), - [sym_once] = STATE(569), - [sym_verbatim] = STATE(569), - [sym_stack] = STATE(569), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(569), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(569), - [sym_loop] = STATE(569), - [sym_loop_operator] = STATE(569), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(569), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(569), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(569), - [sym_text] = STATE(569), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6732), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7439), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [548] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6730), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [549] = { - [sym__definition] = STATE(616), - [sym_comment] = STATE(616), - [sym_keyword] = STATE(616), - [sym_php_statement] = STATE(616), - [sym__escaped] = STATE(2391), - [sym__unescaped] = STATE(2391), - [sym__raw] = STATE(2391), - [sym__inline_raw] = STATE(2391), - [sym__multi_line_raw] = STATE(2391), - [sym_attribute] = STATE(616), - [sym__inline_directive] = STATE(616), - [sym__nested_directive] = STATE(616), - [sym_fragment] = STATE(616), - [sym_section] = STATE(616), - [sym_inlineSection] = STATE(616), - [sym_once] = STATE(616), - [sym_verbatim] = STATE(616), - [sym_stack] = STATE(616), - [sym__push] = STATE(2392), - [sym__pushOnce] = STATE(2392), - [sym__pushIf] = STATE(2392), - [sym__prepend] = STATE(2392), - [sym__prependOnce] = STATE(2392), - [sym_conditional] = STATE(616), - [sym__if] = STATE(2393), - [sym__unless] = STATE(2393), - [sym__isset] = STATE(2393), - [sym__empty] = STATE(2393), - [sym__auth] = STATE(2393), - [sym__guest] = STATE(2393), - [sym__production] = STATE(2393), - [sym__env] = STATE(2393), - [sym__hasSection] = STATE(2393), - [sym__sectionMissing] = STATE(2393), - [sym__error] = STATE(2393), - [sym_authorization] = STATE(2393), - [sym__can] = STATE(2394), - [sym__cannot] = STATE(2394), - [sym__canany] = STATE(2394), - [sym__feature] = STATE(2393), - [sym__custom] = STATE(2393), - [sym_switch] = STATE(616), - [sym_loop] = STATE(616), - [sym_loop_operator] = STATE(616), - [sym__for] = STATE(2395), - [sym__foreach] = STATE(2395), - [sym__forelse] = STATE(2395), - [sym__while] = STATE(2395), - [sym_envoy] = STATE(616), - [sym__setup] = STATE(2391), - [sym__task] = STATE(2396), - [sym__story] = STATE(2396), - [sym__hooks] = STATE(2391), - [sym__before] = STATE(2391), - [sym__after] = STATE(2391), - [sym__envoy_error] = STATE(2391), - [sym__success] = STATE(2391), - [sym__finished] = STATE(2391), - [sym_livewire] = STATE(616), - [sym__persist] = STATE(2397), - [sym__teleport] = STATE(2397), - [sym__volt] = STATE(2397), - [aux_sym__directive_body] = STATE(616), - [sym_text] = STATE(616), - [sym__text] = STATE(980), - [aux_sym_php_only_repeat1] = STATE(980), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6734), - [aux_sym_keyword_token1] = ACTIONS(6736), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6738), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6740), - [anon_sym_ATphp] = ACTIONS(6742), - [aux_sym_attribute_token1] = ACTIONS(6744), - [aux_sym__inline_directive_token1] = ACTIONS(6746), - [anon_sym_ATfragment] = ACTIONS(6748), - [anon_sym_ATsection] = ACTIONS(6750), - [anon_sym_ATonce] = ACTIONS(6752), - [anon_sym_ATverbatim] = ACTIONS(6754), - [anon_sym_ATpush] = ACTIONS(6756), - [anon_sym_ATpushOnce] = ACTIONS(6758), - [anon_sym_ATpushIf] = ACTIONS(6760), - [anon_sym_ATprepend] = ACTIONS(6762), - [anon_sym_ATprependOnce] = ACTIONS(6764), - [anon_sym_ATif] = ACTIONS(6766), - [anon_sym_ATunless] = ACTIONS(6768), - [anon_sym_ATisset] = ACTIONS(6770), - [anon_sym_ATempty] = ACTIONS(6772), - [anon_sym_ATauth] = ACTIONS(6774), - [anon_sym_ATguest] = ACTIONS(6776), - [anon_sym_ATproduction] = ACTIONS(6778), - [anon_sym_ATenv] = ACTIONS(6780), - [anon_sym_AThasSection] = ACTIONS(6782), - [anon_sym_ATsectionMissing] = ACTIONS(6784), - [anon_sym_ATerror] = ACTIONS(6786), - [anon_sym_ATcan] = ACTIONS(6788), - [anon_sym_ATcannot] = ACTIONS(6790), - [anon_sym_ATcanany] = ACTIONS(6792), - [anon_sym_ATfeature] = ACTIONS(6794), - [aux_sym__custom_token1] = ACTIONS(6796), - [aux_sym__custom_token2] = ACTIONS(6798), - [anon_sym_ATswitch] = ACTIONS(6800), - [aux_sym_loop_operator_token1] = ACTIONS(6802), - [anon_sym_ATfor] = ACTIONS(6804), - [anon_sym_ATforeach] = ACTIONS(6806), - [anon_sym_ATforelse] = ACTIONS(6808), - [anon_sym_ATendforelse] = ACTIONS(4712), - [anon_sym_ATwhile] = ACTIONS(6810), - [anon_sym_ATsetup] = ACTIONS(6812), - [anon_sym_ATtask] = ACTIONS(6814), - [anon_sym_ATstory] = ACTIONS(6816), - [anon_sym_ATbefore] = ACTIONS(6818), - [anon_sym_ATafter] = ACTIONS(6820), - [anon_sym_ATsuccess] = ACTIONS(6822), - [anon_sym_ATfinished] = ACTIONS(6824), - [anon_sym_ATpersist] = ACTIONS(6826), - [anon_sym_ATteleport] = ACTIONS(6828), - [anon_sym_ATvolt] = ACTIONS(6830), - [aux_sym__text_token1] = ACTIONS(6832), - [aux_sym__text_token2] = ACTIONS(6832), - [aux_sym__text_token3] = ACTIONS(6834), - }, - [550] = { - [sym__definition] = STATE(545), - [sym_comment] = STATE(545), - [sym_keyword] = STATE(545), - [sym_php_statement] = STATE(545), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(545), - [sym__inline_directive] = STATE(545), - [sym__nested_directive] = STATE(545), - [sym_fragment] = STATE(545), - [sym_section] = STATE(545), - [sym_inlineSection] = STATE(545), - [sym_once] = STATE(545), - [sym_verbatim] = STATE(545), - [sym_stack] = STATE(545), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(545), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(545), - [sym_loop] = STATE(545), - [sym_loop_operator] = STATE(545), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(545), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(545), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(545), - [sym_text] = STATE(545), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6836), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [551] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -93154,118 +91742,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6838), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7441), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [552] = { + [549] = { + [sym__definition] = STATE(547), + [sym_keyword] = STATE(547), + [sym_php_statement] = STATE(547), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(547), + [sym__inline_directive] = STATE(547), + [sym__nested_directive] = STATE(547), + [sym_fragment] = STATE(547), + [sym_section] = STATE(547), + [sym_inlineSection] = STATE(547), + [sym_once] = STATE(547), + [sym_verbatim] = STATE(547), + [sym_stack] = STATE(547), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(547), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(547), + [sym_loop] = STATE(547), + [sym_loop_operator] = STATE(547), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(547), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(547), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(547), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(547), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7443), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7445), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [550] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7445), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [551] = { [sym__definition] = STATE(548), - [sym_comment] = STATE(548), [sym_keyword] = STATE(548), [sym_php_statement] = STATE(548), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(548), [sym__inline_directive] = STATE(548), [sym__nested_directive] = STATE(548), @@ -93275,965 +92102,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(548), [sym_verbatim] = STATE(548), [sym_stack] = STATE(548), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(548), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(548), [sym_loop] = STATE(548), [sym_loop_operator] = STATE(548), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(548), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(548), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(548), [sym_text] = STATE(548), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(548), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6840), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [553] = { - [sym__definition] = STATE(551), - [sym_comment] = STATE(551), - [sym_keyword] = STATE(551), - [sym_php_statement] = STATE(551), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(551), - [sym__inline_directive] = STATE(551), - [sym__nested_directive] = STATE(551), - [sym_fragment] = STATE(551), - [sym_section] = STATE(551), - [sym_inlineSection] = STATE(551), - [sym_once] = STATE(551), - [sym_verbatim] = STATE(551), - [sym_stack] = STATE(551), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(551), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(551), - [sym_loop] = STATE(551), - [sym_loop_operator] = STATE(551), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(551), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(551), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(551), - [sym_text] = STATE(551), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6842), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [554] = { - [sym__definition] = STATE(648), - [sym_comment] = STATE(648), - [sym_keyword] = STATE(648), - [sym_php_statement] = STATE(648), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(648), - [sym__inline_directive] = STATE(648), - [sym__nested_directive] = STATE(648), - [sym_fragment] = STATE(648), - [sym_section] = STATE(648), - [sym_inlineSection] = STATE(648), - [sym_once] = STATE(648), - [sym_verbatim] = STATE(648), - [sym_stack] = STATE(648), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(648), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(648), - [sym_loop] = STATE(648), - [sym_loop_operator] = STATE(648), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(648), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(648), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(648), - [sym_text] = STATE(648), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6844), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [555] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6846), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [556] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6848), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [557] = { - [sym__definition] = STATE(555), - [sym_comment] = STATE(555), - [sym_keyword] = STATE(555), - [sym_php_statement] = STATE(555), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(555), - [sym__inline_directive] = STATE(555), - [sym__nested_directive] = STATE(555), - [sym_fragment] = STATE(555), - [sym_section] = STATE(555), - [sym_inlineSection] = STATE(555), - [sym_once] = STATE(555), - [sym_verbatim] = STATE(555), - [sym_stack] = STATE(555), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(555), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(555), - [sym_loop] = STATE(555), - [sym_loop_operator] = STATE(555), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(555), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(555), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(555), - [sym_text] = STATE(555), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(6850), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [558] = { - [sym__definition] = STATE(556), - [sym_comment] = STATE(556), - [sym_keyword] = STATE(556), - [sym_php_statement] = STATE(556), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(556), - [sym__inline_directive] = STATE(556), - [sym__nested_directive] = STATE(556), - [sym_fragment] = STATE(556), - [sym_section] = STATE(556), - [sym_inlineSection] = STATE(556), - [sym_once] = STATE(556), - [sym_verbatim] = STATE(556), - [sym_stack] = STATE(556), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(556), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(556), - [sym_loop] = STATE(556), - [sym_loop_operator] = STATE(556), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(556), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(556), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(556), - [sym_text] = STATE(556), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(6852), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7447), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7449), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [559] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6854), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [552] = { + [sym__definition] = STATE(422), + [sym_keyword] = STATE(422), + [sym_php_statement] = STATE(422), + [sym__escaped] = STATE(2110), + [sym__unescaped] = STATE(2110), + [sym__raw] = STATE(2110), + [sym__inline_raw] = STATE(2110), + [sym__multi_line_raw] = STATE(2110), + [sym_attribute] = STATE(422), + [sym__inline_directive] = STATE(422), + [sym__nested_directive] = STATE(422), + [sym_fragment] = STATE(422), + [sym_section] = STATE(422), + [sym_inlineSection] = STATE(422), + [sym_once] = STATE(422), + [sym_verbatim] = STATE(422), + [sym_stack] = STATE(422), + [sym__push] = STATE(2109), + [sym__pushOnce] = STATE(2109), + [sym__pushIf] = STATE(2109), + [sym__prepend] = STATE(2109), + [sym__prependOnce] = STATE(2109), + [sym_conditional] = STATE(422), + [sym__if] = STATE(2108), + [sym__unless] = STATE(2108), + [sym__isset] = STATE(2108), + [sym__empty] = STATE(2108), + [sym__auth] = STATE(2108), + [sym__guest] = STATE(2108), + [sym__production] = STATE(2108), + [sym__env] = STATE(2108), + [sym__hasSection] = STATE(2108), + [sym__sectionMissing] = STATE(2108), + [sym__error] = STATE(2108), + [sym_authorization] = STATE(2108), + [sym__can] = STATE(2107), + [sym__cannot] = STATE(2107), + [sym__canany] = STATE(2107), + [sym__feature] = STATE(2108), + [sym__custom] = STATE(2108), + [sym_switch] = STATE(422), + [sym_loop] = STATE(422), + [sym_loop_operator] = STATE(422), + [sym__for] = STATE(2106), + [sym__foreach] = STATE(2106), + [sym__forelse] = STATE(2106), + [sym__while] = STATE(2106), + [sym_envoy] = STATE(422), + [sym__setup] = STATE(2110), + [sym__task] = STATE(2105), + [sym__story] = STATE(2105), + [sym__hooks] = STATE(2110), + [sym__before] = STATE(2110), + [sym__after] = STATE(2110), + [sym__envoy_error] = STATE(2110), + [sym__success] = STATE(2110), + [sym__finished] = STATE(2110), + [sym_livewire] = STATE(422), + [sym__persist] = STATE(2104), + [sym__teleport] = STATE(2104), + [sym__volt] = STATE(2104), + [aux_sym__directive_body] = STATE(422), + [sym_text] = STATE(422), + [sym__text] = STATE(1169), + [aux_sym_php_only_repeat1] = STATE(1169), + [sym_comment] = ACTIONS(7451), + [aux_sym_keyword_token1] = ACTIONS(7150), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7152), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7154), + [anon_sym_ATphp] = ACTIONS(7156), + [aux_sym_attribute_token1] = ACTIONS(7158), + [aux_sym__inline_directive_token1] = ACTIONS(7160), + [anon_sym_ATfragment] = ACTIONS(7162), + [anon_sym_ATsection] = ACTIONS(7164), + [anon_sym_ATonce] = ACTIONS(7166), + [anon_sym_ATverbatim] = ACTIONS(7168), + [anon_sym_ATpush] = ACTIONS(7170), + [anon_sym_ATpushOnce] = ACTIONS(7172), + [anon_sym_ATpushIf] = ACTIONS(7174), + [anon_sym_ATprepend] = ACTIONS(7176), + [anon_sym_ATendprepend] = ACTIONS(4996), + [anon_sym_ATprependOnce] = ACTIONS(7178), + [anon_sym_ATif] = ACTIONS(7180), + [anon_sym_ATunless] = ACTIONS(7182), + [anon_sym_ATisset] = ACTIONS(7184), + [anon_sym_ATempty] = ACTIONS(7186), + [anon_sym_ATauth] = ACTIONS(7188), + [anon_sym_ATguest] = ACTIONS(7190), + [anon_sym_ATproduction] = ACTIONS(7192), + [anon_sym_ATenv] = ACTIONS(7194), + [anon_sym_AThasSection] = ACTIONS(7196), + [anon_sym_ATsectionMissing] = ACTIONS(7198), + [anon_sym_ATerror] = ACTIONS(7200), + [anon_sym_ATcan] = ACTIONS(7202), + [anon_sym_ATcannot] = ACTIONS(7204), + [anon_sym_ATcanany] = ACTIONS(7206), + [anon_sym_ATfeature] = ACTIONS(7208), + [aux_sym__custom_token1] = ACTIONS(7210), + [aux_sym__custom_token2] = ACTIONS(7212), + [anon_sym_ATswitch] = ACTIONS(7214), + [aux_sym_loop_operator_token1] = ACTIONS(7216), + [anon_sym_ATfor] = ACTIONS(7218), + [anon_sym_ATforeach] = ACTIONS(7220), + [anon_sym_ATforelse] = ACTIONS(7222), + [anon_sym_ATwhile] = ACTIONS(7224), + [anon_sym_ATsetup] = ACTIONS(7226), + [anon_sym_ATtask] = ACTIONS(7228), + [anon_sym_ATstory] = ACTIONS(7230), + [anon_sym_ATbefore] = ACTIONS(7232), + [anon_sym_ATafter] = ACTIONS(7234), + [anon_sym_ATsuccess] = ACTIONS(7236), + [anon_sym_ATfinished] = ACTIONS(7238), + [anon_sym_ATpersist] = ACTIONS(7240), + [anon_sym_ATteleport] = ACTIONS(7242), + [anon_sym_ATvolt] = ACTIONS(7244), + [aux_sym__text_token1] = ACTIONS(7246), + [aux_sym__text_token2] = ACTIONS(7246), + [aux_sym__text_token3] = ACTIONS(7248), }, - [560] = { + [553] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -94243,118 +92342,957 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6856), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7453), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [554] = { + [sym__definition] = STATE(554), + [sym_keyword] = STATE(554), + [sym_php_statement] = STATE(554), + [sym__escaped] = STATE(3461), + [sym__unescaped] = STATE(3461), + [sym__raw] = STATE(3461), + [sym__inline_raw] = STATE(3461), + [sym__multi_line_raw] = STATE(3461), + [sym_attribute] = STATE(554), + [sym__inline_directive] = STATE(554), + [sym__nested_directive] = STATE(554), + [sym_fragment] = STATE(554), + [sym_section] = STATE(554), + [sym_inlineSection] = STATE(554), + [sym_once] = STATE(554), + [sym_verbatim] = STATE(554), + [sym_stack] = STATE(554), + [sym__push] = STATE(3319), + [sym__pushOnce] = STATE(3319), + [sym__pushIf] = STATE(3319), + [sym__prepend] = STATE(3319), + [sym__prependOnce] = STATE(3319), + [sym_conditional] = STATE(554), + [sym__if] = STATE(3420), + [sym__unless] = STATE(3420), + [sym__isset] = STATE(3420), + [sym__empty] = STATE(3420), + [sym__auth] = STATE(3420), + [sym__guest] = STATE(3420), + [sym__production] = STATE(3420), + [sym__env] = STATE(3420), + [sym__hasSection] = STATE(3420), + [sym__sectionMissing] = STATE(3420), + [sym__error] = STATE(3420), + [sym_authorization] = STATE(3420), + [sym__can] = STATE(3408), + [sym__cannot] = STATE(3408), + [sym__canany] = STATE(3408), + [sym__feature] = STATE(3420), + [sym__custom] = STATE(3420), + [sym_switch] = STATE(554), + [sym_loop] = STATE(554), + [sym_loop_operator] = STATE(554), + [sym__for] = STATE(3401), + [sym__foreach] = STATE(3401), + [sym__forelse] = STATE(3401), + [sym__while] = STATE(3401), + [sym_envoy] = STATE(554), + [sym__setup] = STATE(3461), + [sym__task] = STATE(3399), + [sym__story] = STATE(3399), + [sym__hooks] = STATE(3461), + [sym__before] = STATE(3461), + [sym__after] = STATE(3461), + [sym__envoy_error] = STATE(3461), + [sym__success] = STATE(3461), + [sym__finished] = STATE(3461), + [sym_livewire] = STATE(554), + [sym__persist] = STATE(3398), + [sym__teleport] = STATE(3398), + [sym__volt] = STATE(3398), + [aux_sym__directive_body] = STATE(554), + [sym_text] = STATE(554), + [sym__text] = STATE(987), + [aux_sym_php_only_repeat1] = STATE(987), + [sym_comment] = ACTIONS(7455), + [aux_sym_keyword_token1] = ACTIONS(7458), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7461), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7464), + [anon_sym_ATphp] = ACTIONS(7467), + [aux_sym_attribute_token1] = ACTIONS(7470), + [aux_sym__inline_directive_token1] = ACTIONS(7473), + [anon_sym_ATfragment] = ACTIONS(7476), + [anon_sym_ATsection] = ACTIONS(7479), + [anon_sym_ATonce] = ACTIONS(7482), + [anon_sym_ATverbatim] = ACTIONS(7485), + [anon_sym_ATpush] = ACTIONS(7488), + [anon_sym_ATpushOnce] = ACTIONS(7491), + [anon_sym_ATendPushOnce] = ACTIONS(5035), + [anon_sym_ATpushIf] = ACTIONS(7494), + [anon_sym_ATprepend] = ACTIONS(7497), + [anon_sym_ATprependOnce] = ACTIONS(7500), + [anon_sym_ATif] = ACTIONS(7503), + [anon_sym_ATunless] = ACTIONS(7506), + [anon_sym_ATisset] = ACTIONS(7509), + [anon_sym_ATempty] = ACTIONS(7512), + [anon_sym_ATauth] = ACTIONS(7515), + [anon_sym_ATguest] = ACTIONS(7518), + [anon_sym_ATproduction] = ACTIONS(7521), + [anon_sym_ATenv] = ACTIONS(7524), + [anon_sym_AThasSection] = ACTIONS(7527), + [anon_sym_ATsectionMissing] = ACTIONS(7530), + [anon_sym_ATerror] = ACTIONS(7533), + [anon_sym_ATcan] = ACTIONS(7536), + [anon_sym_ATcannot] = ACTIONS(7539), + [anon_sym_ATcanany] = ACTIONS(7542), + [anon_sym_ATfeature] = ACTIONS(7545), + [aux_sym__custom_token1] = ACTIONS(7548), + [aux_sym__custom_token2] = ACTIONS(7551), + [anon_sym_ATswitch] = ACTIONS(7554), + [aux_sym_loop_operator_token1] = ACTIONS(7557), + [anon_sym_ATfor] = ACTIONS(7560), + [anon_sym_ATforeach] = ACTIONS(7563), + [anon_sym_ATforelse] = ACTIONS(7566), + [anon_sym_ATwhile] = ACTIONS(7569), + [anon_sym_ATsetup] = ACTIONS(7572), + [anon_sym_ATtask] = ACTIONS(7575), + [anon_sym_ATstory] = ACTIONS(7578), + [anon_sym_ATbefore] = ACTIONS(7581), + [anon_sym_ATafter] = ACTIONS(7584), + [anon_sym_ATsuccess] = ACTIONS(7587), + [anon_sym_ATfinished] = ACTIONS(7590), + [anon_sym_ATpersist] = ACTIONS(7593), + [anon_sym_ATteleport] = ACTIONS(7596), + [anon_sym_ATvolt] = ACTIONS(7599), + [aux_sym__text_token1] = ACTIONS(7602), + [aux_sym__text_token2] = ACTIONS(7602), + [aux_sym__text_token3] = ACTIONS(7605), + }, + [555] = { + [sym__definition] = STATE(550), + [sym_keyword] = STATE(550), + [sym_php_statement] = STATE(550), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(550), + [sym__inline_directive] = STATE(550), + [sym__nested_directive] = STATE(550), + [sym_fragment] = STATE(550), + [sym_section] = STATE(550), + [sym_inlineSection] = STATE(550), + [sym_once] = STATE(550), + [sym_verbatim] = STATE(550), + [sym_stack] = STATE(550), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(550), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(550), + [sym_loop] = STATE(550), + [sym_loop_operator] = STATE(550), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(550), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(550), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(550), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(550), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7608), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7610), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [556] = { + [sym__definition] = STATE(553), + [sym_keyword] = STATE(553), + [sym_php_statement] = STATE(553), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(553), + [sym__inline_directive] = STATE(553), + [sym__nested_directive] = STATE(553), + [sym_fragment] = STATE(553), + [sym_section] = STATE(553), + [sym_inlineSection] = STATE(553), + [sym_once] = STATE(553), + [sym_verbatim] = STATE(553), + [sym_stack] = STATE(553), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(553), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(553), + [sym_loop] = STATE(553), + [sym_loop_operator] = STATE(553), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(553), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(553), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(553), + [sym_text] = STATE(553), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7612), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7614), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [557] = { + [sym__definition] = STATE(598), + [sym_keyword] = STATE(598), + [sym_php_statement] = STATE(598), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(598), + [sym__inline_directive] = STATE(598), + [sym__nested_directive] = STATE(598), + [sym_fragment] = STATE(598), + [sym_section] = STATE(598), + [sym_inlineSection] = STATE(598), + [sym_once] = STATE(598), + [sym_verbatim] = STATE(598), + [sym_stack] = STATE(598), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(598), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(598), + [sym_loop] = STATE(598), + [sym_loop_operator] = STATE(598), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(598), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(598), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(598), + [sym_text] = STATE(598), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7616), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7618), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [558] = { + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7620), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [559] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7622), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [560] = { + [sym__definition] = STATE(558), + [sym_keyword] = STATE(558), + [sym_php_statement] = STATE(558), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(558), + [sym__inline_directive] = STATE(558), + [sym__nested_directive] = STATE(558), + [sym_fragment] = STATE(558), + [sym_section] = STATE(558), + [sym_inlineSection] = STATE(558), + [sym_once] = STATE(558), + [sym_verbatim] = STATE(558), + [sym_stack] = STATE(558), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(558), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(558), + [sym_loop] = STATE(558), + [sym_loop_operator] = STATE(558), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(558), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(558), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(558), + [sym_text] = STATE(558), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7624), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7626), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [561] = { [sym__definition] = STATE(559), - [sym_comment] = STATE(559), [sym_keyword] = STATE(559), [sym_php_statement] = STATE(559), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), [sym_attribute] = STATE(559), [sym__inline_directive] = STATE(559), [sym__nested_directive] = STATE(559), @@ -94364,481 +93302,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(559), [sym_verbatim] = STATE(559), [sym_stack] = STATE(559), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), [sym_conditional] = STATE(559), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), [sym_switch] = STATE(559), [sym_loop] = STATE(559), [sym_loop_operator] = STATE(559), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), [sym_envoy] = STATE(559), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), [sym_livewire] = STATE(559), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(559), [sym_text] = STATE(559), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(559), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6858), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7628), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7630), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [562] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(6858), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(655), + [sym_keyword] = STATE(655), + [sym_php_statement] = STATE(655), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(655), + [sym__inline_directive] = STATE(655), + [sym__nested_directive] = STATE(655), + [sym_fragment] = STATE(655), + [sym_section] = STATE(655), + [sym_inlineSection] = STATE(655), + [sym_once] = STATE(655), + [sym_verbatim] = STATE(655), + [sym_stack] = STATE(655), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(655), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(655), + [sym_loop] = STATE(655), + [sym_loop_operator] = STATE(655), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(655), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(655), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(655), + [sym_text] = STATE(655), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7632), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7634), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [563] = { - [sym__definition] = STATE(560), - [sym_comment] = STATE(560), - [sym_keyword] = STATE(560), - [sym_php_statement] = STATE(560), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(560), - [sym__inline_directive] = STATE(560), - [sym__nested_directive] = STATE(560), - [sym_fragment] = STATE(560), - [sym_section] = STATE(560), - [sym_inlineSection] = STATE(560), - [sym_once] = STATE(560), - [sym_verbatim] = STATE(560), - [sym_stack] = STATE(560), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(560), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(560), - [sym_loop] = STATE(560), - [sym_loop_operator] = STATE(560), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(560), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(560), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(560), - [sym_text] = STATE(560), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6860), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7636), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [564] = { - [sym__definition] = STATE(255), - [sym_comment] = STATE(255), - [sym_keyword] = STATE(255), - [sym_php_statement] = STATE(255), - [sym__escaped] = STATE(2133), - [sym__unescaped] = STATE(2133), - [sym__raw] = STATE(2133), - [sym__inline_raw] = STATE(2133), - [sym__multi_line_raw] = STATE(2133), - [sym_attribute] = STATE(255), - [sym__inline_directive] = STATE(255), - [sym__nested_directive] = STATE(255), - [sym_fragment] = STATE(255), - [sym_section] = STATE(255), - [sym_inlineSection] = STATE(255), - [sym_once] = STATE(255), - [sym_verbatim] = STATE(255), - [sym_stack] = STATE(255), - [sym__push] = STATE(2132), - [sym__pushOnce] = STATE(2132), - [sym__pushIf] = STATE(2132), - [sym__prepend] = STATE(2132), - [sym__prependOnce] = STATE(2132), - [sym_conditional] = STATE(255), - [sym__if] = STATE(2131), - [sym__unless] = STATE(2131), - [sym__isset] = STATE(2131), - [sym__empty] = STATE(2131), - [sym__auth] = STATE(2131), - [sym__guest] = STATE(2131), - [sym__production] = STATE(2131), - [sym__env] = STATE(2131), - [sym__hasSection] = STATE(2131), - [sym__sectionMissing] = STATE(2131), - [sym__error] = STATE(2131), - [sym_authorization] = STATE(2131), - [sym__can] = STATE(2130), - [sym__cannot] = STATE(2130), - [sym__canany] = STATE(2130), - [sym__feature] = STATE(2131), - [sym__custom] = STATE(2131), - [sym_switch] = STATE(255), - [sym_loop] = STATE(255), - [sym_loop_operator] = STATE(255), - [sym__for] = STATE(2129), - [sym__foreach] = STATE(2129), - [sym__forelse] = STATE(2129), - [sym__while] = STATE(2129), - [sym_envoy] = STATE(255), - [sym__setup] = STATE(2133), - [sym__task] = STATE(2128), - [sym__story] = STATE(2128), - [sym__hooks] = STATE(2133), - [sym__before] = STATE(2133), - [sym__after] = STATE(2133), - [sym__envoy_error] = STATE(2133), - [sym__success] = STATE(2133), - [sym__finished] = STATE(2133), - [sym_livewire] = STATE(255), - [sym__persist] = STATE(2127), - [sym__teleport] = STATE(2127), - [sym__volt] = STATE(2127), - [aux_sym__directive_body] = STATE(255), - [sym_text] = STATE(255), - [sym__text] = STATE(1282), - [aux_sym_php_only_repeat1] = STATE(1282), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6626), - [aux_sym_keyword_token1] = ACTIONS(6628), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6632), - [anon_sym_ATphp] = ACTIONS(6634), - [aux_sym_attribute_token1] = ACTIONS(6636), - [aux_sym__inline_directive_token1] = ACTIONS(6638), - [anon_sym_ATfragment] = ACTIONS(6640), - [anon_sym_ATsection] = ACTIONS(6642), - [anon_sym_ATonce] = ACTIONS(6644), - [anon_sym_ATverbatim] = ACTIONS(6646), - [anon_sym_ATpush] = ACTIONS(6648), - [anon_sym_ATpushOnce] = ACTIONS(6650), - [anon_sym_ATpushIf] = ACTIONS(6652), - [anon_sym_ATprepend] = ACTIONS(6654), - [anon_sym_ATendprepend] = ACTIONS(4626), - [anon_sym_ATprependOnce] = ACTIONS(6656), - [anon_sym_ATif] = ACTIONS(6658), - [anon_sym_ATunless] = ACTIONS(6660), - [anon_sym_ATisset] = ACTIONS(6662), - [anon_sym_ATempty] = ACTIONS(6664), - [anon_sym_ATauth] = ACTIONS(6666), - [anon_sym_ATguest] = ACTIONS(6668), - [anon_sym_ATproduction] = ACTIONS(6670), - [anon_sym_ATenv] = ACTIONS(6672), - [anon_sym_AThasSection] = ACTIONS(6674), - [anon_sym_ATsectionMissing] = ACTIONS(6676), - [anon_sym_ATerror] = ACTIONS(6678), - [anon_sym_ATcan] = ACTIONS(6680), - [anon_sym_ATcannot] = ACTIONS(6682), - [anon_sym_ATcanany] = ACTIONS(6684), - [anon_sym_ATfeature] = ACTIONS(6686), - [aux_sym__custom_token1] = ACTIONS(6688), - [aux_sym__custom_token2] = ACTIONS(6690), - [anon_sym_ATswitch] = ACTIONS(6692), - [aux_sym_loop_operator_token1] = ACTIONS(6694), - [anon_sym_ATfor] = ACTIONS(6696), - [anon_sym_ATforeach] = ACTIONS(6698), - [anon_sym_ATforelse] = ACTIONS(6700), - [anon_sym_ATwhile] = ACTIONS(6702), - [anon_sym_ATsetup] = ACTIONS(6704), - [anon_sym_ATtask] = ACTIONS(6706), - [anon_sym_ATstory] = ACTIONS(6708), - [anon_sym_ATbefore] = ACTIONS(6710), - [anon_sym_ATafter] = ACTIONS(6712), - [anon_sym_ATsuccess] = ACTIONS(6714), - [anon_sym_ATfinished] = ACTIONS(6716), - [anon_sym_ATpersist] = ACTIONS(6718), - [anon_sym_ATteleport] = ACTIONS(6720), - [anon_sym_ATvolt] = ACTIONS(6722), - [aux_sym__text_token1] = ACTIONS(6724), - [aux_sym__text_token2] = ACTIONS(6724), - [aux_sym__text_token3] = ACTIONS(6726), - }, - [565] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -94848,481 +93662,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(6862), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7638), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [565] = { + [sym__definition] = STATE(563), + [sym_keyword] = STATE(563), + [sym_php_statement] = STATE(563), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(563), + [sym__inline_directive] = STATE(563), + [sym__nested_directive] = STATE(563), + [sym_fragment] = STATE(563), + [sym_section] = STATE(563), + [sym_inlineSection] = STATE(563), + [sym_once] = STATE(563), + [sym_verbatim] = STATE(563), + [sym_stack] = STATE(563), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(563), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(563), + [sym_loop] = STATE(563), + [sym_loop_operator] = STATE(563), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(563), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(563), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(563), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(563), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7640), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7642), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [566] = { - [sym__definition] = STATE(566), - [sym_comment] = STATE(566), - [sym_keyword] = STATE(566), - [sym_php_statement] = STATE(566), - [sym__escaped] = STATE(3404), - [sym__unescaped] = STATE(3404), - [sym__raw] = STATE(3404), - [sym__inline_raw] = STATE(3404), - [sym__multi_line_raw] = STATE(3404), - [sym_attribute] = STATE(566), - [sym__inline_directive] = STATE(566), - [sym__nested_directive] = STATE(566), - [sym_fragment] = STATE(566), - [sym_section] = STATE(566), - [sym_inlineSection] = STATE(566), - [sym_once] = STATE(566), - [sym_verbatim] = STATE(566), - [sym_stack] = STATE(566), - [sym__push] = STATE(3403), - [sym__pushOnce] = STATE(3403), - [sym__pushIf] = STATE(3403), - [sym__prepend] = STATE(3403), - [sym__prependOnce] = STATE(3403), - [sym_conditional] = STATE(566), - [sym__if] = STATE(3401), - [sym__unless] = STATE(3401), - [sym__isset] = STATE(3401), - [sym__empty] = STATE(3401), - [sym__auth] = STATE(3401), - [sym__guest] = STATE(3401), - [sym__production] = STATE(3401), - [sym__env] = STATE(3401), - [sym__hasSection] = STATE(3401), - [sym__sectionMissing] = STATE(3401), - [sym__error] = STATE(3401), - [sym_authorization] = STATE(3401), - [sym__can] = STATE(3399), - [sym__cannot] = STATE(3399), - [sym__canany] = STATE(3399), - [sym__feature] = STATE(3401), - [sym__custom] = STATE(3401), - [sym_switch] = STATE(566), - [sym_loop] = STATE(566), - [sym_loop_operator] = STATE(566), - [sym__for] = STATE(3397), - [sym__foreach] = STATE(3397), - [sym__forelse] = STATE(3397), - [sym__while] = STATE(3397), - [sym_envoy] = STATE(566), - [sym__setup] = STATE(3404), - [sym__task] = STATE(3243), - [sym__story] = STATE(3243), - [sym__hooks] = STATE(3404), - [sym__before] = STATE(3404), - [sym__after] = STATE(3404), - [sym__envoy_error] = STATE(3404), - [sym__success] = STATE(3404), - [sym__finished] = STATE(3404), - [sym_livewire] = STATE(566), - [sym__persist] = STATE(3367), - [sym__teleport] = STATE(3367), - [sym__volt] = STATE(3367), - [aux_sym__directive_body] = STATE(566), - [sym_text] = STATE(566), - [sym__text] = STATE(1100), - [aux_sym_php_only_repeat1] = STATE(1100), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6864), - [aux_sym_keyword_token1] = ACTIONS(6867), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6870), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6873), - [anon_sym_ATphp] = ACTIONS(6876), - [aux_sym_attribute_token1] = ACTIONS(6879), - [aux_sym__inline_directive_token1] = ACTIONS(6882), - [anon_sym_ATfragment] = ACTIONS(6885), - [anon_sym_ATsection] = ACTIONS(6888), - [anon_sym_ATonce] = ACTIONS(6891), - [anon_sym_ATverbatim] = ACTIONS(6894), - [anon_sym_ATpush] = ACTIONS(6897), - [anon_sym_ATpushOnce] = ACTIONS(6900), - [anon_sym_ATendPushOnce] = ACTIONS(3925), - [anon_sym_ATpushIf] = ACTIONS(6903), - [anon_sym_ATprepend] = ACTIONS(6906), - [anon_sym_ATprependOnce] = ACTIONS(6909), - [anon_sym_ATif] = ACTIONS(6912), - [anon_sym_ATunless] = ACTIONS(6915), - [anon_sym_ATisset] = ACTIONS(6918), - [anon_sym_ATempty] = ACTIONS(6921), - [anon_sym_ATauth] = ACTIONS(6924), - [anon_sym_ATguest] = ACTIONS(6927), - [anon_sym_ATproduction] = ACTIONS(6930), - [anon_sym_ATenv] = ACTIONS(6933), - [anon_sym_AThasSection] = ACTIONS(6936), - [anon_sym_ATsectionMissing] = ACTIONS(6939), - [anon_sym_ATerror] = ACTIONS(6942), - [anon_sym_ATcan] = ACTIONS(6945), - [anon_sym_ATcannot] = ACTIONS(6948), - [anon_sym_ATcanany] = ACTIONS(6951), - [anon_sym_ATfeature] = ACTIONS(6954), - [aux_sym__custom_token1] = ACTIONS(6957), - [aux_sym__custom_token2] = ACTIONS(6960), - [anon_sym_ATswitch] = ACTIONS(6963), - [aux_sym_loop_operator_token1] = ACTIONS(6966), - [anon_sym_ATfor] = ACTIONS(6969), - [anon_sym_ATforeach] = ACTIONS(6972), - [anon_sym_ATforelse] = ACTIONS(6975), - [anon_sym_ATwhile] = ACTIONS(6978), - [anon_sym_ATsetup] = ACTIONS(6981), - [anon_sym_ATtask] = ACTIONS(6984), - [anon_sym_ATstory] = ACTIONS(6987), - [anon_sym_ATbefore] = ACTIONS(6990), - [anon_sym_ATafter] = ACTIONS(6993), - [anon_sym_ATsuccess] = ACTIONS(6996), - [anon_sym_ATfinished] = ACTIONS(6999), - [anon_sym_ATpersist] = ACTIONS(7002), - [anon_sym_ATteleport] = ACTIONS(7005), - [anon_sym_ATvolt] = ACTIONS(7008), - [aux_sym__text_token1] = ACTIONS(7011), - [aux_sym__text_token2] = ACTIONS(7011), - [aux_sym__text_token3] = ACTIONS(7014), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7642), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [567] = { - [sym__definition] = STATE(562), - [sym_comment] = STATE(562), - [sym_keyword] = STATE(562), - [sym_php_statement] = STATE(562), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(562), - [sym__inline_directive] = STATE(562), - [sym__nested_directive] = STATE(562), - [sym_fragment] = STATE(562), - [sym_section] = STATE(562), - [sym_inlineSection] = STATE(562), - [sym_once] = STATE(562), - [sym_verbatim] = STATE(562), - [sym_stack] = STATE(562), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(562), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(562), - [sym_loop] = STATE(562), - [sym_loop_operator] = STATE(562), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(562), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(562), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(562), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(562), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7017), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(564), + [sym_keyword] = STATE(564), + [sym_php_statement] = STATE(564), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(564), + [sym__inline_directive] = STATE(564), + [sym__nested_directive] = STATE(564), + [sym_fragment] = STATE(564), + [sym_section] = STATE(564), + [sym_inlineSection] = STATE(564), + [sym_once] = STATE(564), + [sym_verbatim] = STATE(564), + [sym_stack] = STATE(564), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(564), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(564), + [sym_loop] = STATE(564), + [sym_loop_operator] = STATE(564), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(564), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(564), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(564), + [sym_text] = STATE(564), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7644), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7646), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [568] = { - [sym__definition] = STATE(565), - [sym_comment] = STATE(565), - [sym_keyword] = STATE(565), - [sym_php_statement] = STATE(565), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(565), - [sym__inline_directive] = STATE(565), - [sym__nested_directive] = STATE(565), - [sym_fragment] = STATE(565), - [sym_section] = STATE(565), - [sym_inlineSection] = STATE(565), - [sym_once] = STATE(565), - [sym_verbatim] = STATE(565), - [sym_stack] = STATE(565), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(565), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(565), - [sym_loop] = STATE(565), - [sym_loop_operator] = STATE(565), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(565), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(565), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(565), - [sym_text] = STATE(565), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7019), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(366), + [sym_keyword] = STATE(366), + [sym_php_statement] = STATE(366), + [sym__escaped] = STATE(1993), + [sym__unescaped] = STATE(1993), + [sym__raw] = STATE(1993), + [sym__inline_raw] = STATE(1993), + [sym__multi_line_raw] = STATE(1993), + [sym_attribute] = STATE(366), + [sym__inline_directive] = STATE(366), + [sym__nested_directive] = STATE(366), + [sym_fragment] = STATE(366), + [sym_section] = STATE(366), + [sym_inlineSection] = STATE(366), + [sym_once] = STATE(366), + [sym_verbatim] = STATE(366), + [sym_stack] = STATE(366), + [sym__push] = STATE(2111), + [sym__pushOnce] = STATE(2111), + [sym__pushIf] = STATE(2111), + [sym__prepend] = STATE(2111), + [sym__prependOnce] = STATE(2111), + [sym_conditional] = STATE(366), + [sym__if] = STATE(2008), + [sym__unless] = STATE(2008), + [sym__isset] = STATE(2008), + [sym__empty] = STATE(2008), + [sym__auth] = STATE(2008), + [sym__guest] = STATE(2008), + [sym__production] = STATE(2008), + [sym__env] = STATE(2008), + [sym__hasSection] = STATE(2008), + [sym__sectionMissing] = STATE(2008), + [sym__error] = STATE(2008), + [sym_authorization] = STATE(2008), + [sym__can] = STATE(2011), + [sym__cannot] = STATE(2011), + [sym__canany] = STATE(2011), + [sym__feature] = STATE(2008), + [sym__custom] = STATE(2008), + [sym_switch] = STATE(366), + [sym_loop] = STATE(366), + [sym_loop_operator] = STATE(366), + [sym__for] = STATE(2025), + [sym__foreach] = STATE(2025), + [sym__forelse] = STATE(2025), + [sym__while] = STATE(2025), + [sym_envoy] = STATE(366), + [sym__setup] = STATE(1993), + [sym__task] = STATE(2065), + [sym__story] = STATE(2065), + [sym__hooks] = STATE(1993), + [sym__before] = STATE(1993), + [sym__after] = STATE(1993), + [sym__envoy_error] = STATE(1993), + [sym__success] = STATE(1993), + [sym__finished] = STATE(1993), + [sym_livewire] = STATE(366), + [sym__persist] = STATE(2070), + [sym__teleport] = STATE(2070), + [sym__volt] = STATE(2070), + [aux_sym__directive_body] = STATE(366), + [sym_text] = STATE(366), + [sym__text] = STATE(1106), + [aux_sym_php_only_repeat1] = STATE(1106), + [sym_comment] = ACTIONS(7648), + [aux_sym_keyword_token1] = ACTIONS(6402), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6404), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6406), + [anon_sym_ATphp] = ACTIONS(6408), + [aux_sym_attribute_token1] = ACTIONS(6410), + [aux_sym__inline_directive_token1] = ACTIONS(6412), + [anon_sym_ATfragment] = ACTIONS(6414), + [anon_sym_ATendfragment] = ACTIONS(4996), + [anon_sym_ATsection] = ACTIONS(6416), + [anon_sym_ATonce] = ACTIONS(6418), + [anon_sym_ATverbatim] = ACTIONS(6420), + [anon_sym_ATpush] = ACTIONS(6422), + [anon_sym_ATpushOnce] = ACTIONS(6424), + [anon_sym_ATpushIf] = ACTIONS(6426), + [anon_sym_ATprepend] = ACTIONS(6428), + [anon_sym_ATprependOnce] = ACTIONS(6430), + [anon_sym_ATif] = ACTIONS(6432), + [anon_sym_ATunless] = ACTIONS(6434), + [anon_sym_ATisset] = ACTIONS(6436), + [anon_sym_ATempty] = ACTIONS(6438), + [anon_sym_ATauth] = ACTIONS(6440), + [anon_sym_ATguest] = ACTIONS(6442), + [anon_sym_ATproduction] = ACTIONS(6444), + [anon_sym_ATenv] = ACTIONS(6446), + [anon_sym_AThasSection] = ACTIONS(6448), + [anon_sym_ATsectionMissing] = ACTIONS(6450), + [anon_sym_ATerror] = ACTIONS(6452), + [anon_sym_ATcan] = ACTIONS(6454), + [anon_sym_ATcannot] = ACTIONS(6456), + [anon_sym_ATcanany] = ACTIONS(6458), + [anon_sym_ATfeature] = ACTIONS(6460), + [aux_sym__custom_token1] = ACTIONS(6462), + [aux_sym__custom_token2] = ACTIONS(6464), + [anon_sym_ATswitch] = ACTIONS(6466), + [aux_sym_loop_operator_token1] = ACTIONS(6468), + [anon_sym_ATfor] = ACTIONS(6470), + [anon_sym_ATforeach] = ACTIONS(6472), + [anon_sym_ATforelse] = ACTIONS(6474), + [anon_sym_ATwhile] = ACTIONS(6476), + [anon_sym_ATsetup] = ACTIONS(6478), + [anon_sym_ATtask] = ACTIONS(6480), + [anon_sym_ATstory] = ACTIONS(6482), + [anon_sym_ATbefore] = ACTIONS(6484), + [anon_sym_ATafter] = ACTIONS(6486), + [anon_sym_ATsuccess] = ACTIONS(6488), + [anon_sym_ATfinished] = ACTIONS(6490), + [anon_sym_ATpersist] = ACTIONS(6492), + [anon_sym_ATteleport] = ACTIONS(6494), + [anon_sym_ATvolt] = ACTIONS(6496), + [aux_sym__text_token1] = ACTIONS(6498), + [aux_sym__text_token2] = ACTIONS(6498), + [aux_sym__text_token3] = ACTIONS(6500), }, [569] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -95332,844 +94262,1077 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7021), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7650), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [570] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7023), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [571] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7025), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [572] = { - [sym__definition] = STATE(570), - [sym_comment] = STATE(570), - [sym_keyword] = STATE(570), - [sym_php_statement] = STATE(570), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(570), - [sym__inline_directive] = STATE(570), - [sym__nested_directive] = STATE(570), - [sym_fragment] = STATE(570), - [sym_section] = STATE(570), - [sym_inlineSection] = STATE(570), - [sym_once] = STATE(570), - [sym_verbatim] = STATE(570), - [sym_stack] = STATE(570), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(570), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(570), - [sym_loop] = STATE(570), - [sym_loop_operator] = STATE(570), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(570), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(570), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(570), - [sym_text] = STATE(570), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7027), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), - }, - [573] = { - [sym__definition] = STATE(571), - [sym_comment] = STATE(571), - [sym_keyword] = STATE(571), - [sym_php_statement] = STATE(571), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(571), - [sym__inline_directive] = STATE(571), - [sym__nested_directive] = STATE(571), - [sym_fragment] = STATE(571), - [sym_section] = STATE(571), - [sym_inlineSection] = STATE(571), - [sym_once] = STATE(571), - [sym_verbatim] = STATE(571), - [sym_stack] = STATE(571), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(571), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(571), - [sym_loop] = STATE(571), - [sym_loop_operator] = STATE(571), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(571), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(571), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(571), - [sym_text] = STATE(571), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7029), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [574] = { - [sym__definition] = STATE(597), - [sym_comment] = STATE(597), - [sym_keyword] = STATE(597), - [sym_php_statement] = STATE(597), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(597), - [sym__inline_directive] = STATE(597), - [sym__nested_directive] = STATE(597), - [sym_fragment] = STATE(597), - [sym_section] = STATE(597), - [sym_inlineSection] = STATE(597), - [sym_once] = STATE(597), - [sym_verbatim] = STATE(597), - [sym_stack] = STATE(597), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(597), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(597), - [sym_loop] = STATE(597), - [sym_loop_operator] = STATE(597), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(597), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(597), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(597), - [sym_text] = STATE(597), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7031), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [575] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7033), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(566), + [sym_keyword] = STATE(566), + [sym_php_statement] = STATE(566), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(566), + [sym__inline_directive] = STATE(566), + [sym__nested_directive] = STATE(566), + [sym_fragment] = STATE(566), + [sym_section] = STATE(566), + [sym_inlineSection] = STATE(566), + [sym_once] = STATE(566), + [sym_verbatim] = STATE(566), + [sym_stack] = STATE(566), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(566), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(566), + [sym_loop] = STATE(566), + [sym_loop_operator] = STATE(566), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(566), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(566), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(566), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(566), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7652), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7654), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [571] = { + [sym__definition] = STATE(569), + [sym_keyword] = STATE(569), + [sym_php_statement] = STATE(569), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(569), + [sym__inline_directive] = STATE(569), + [sym__nested_directive] = STATE(569), + [sym_fragment] = STATE(569), + [sym_section] = STATE(569), + [sym_inlineSection] = STATE(569), + [sym_once] = STATE(569), + [sym_verbatim] = STATE(569), + [sym_stack] = STATE(569), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(569), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(569), + [sym_loop] = STATE(569), + [sym_loop_operator] = STATE(569), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(569), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(569), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(569), + [sym_text] = STATE(569), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7656), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7658), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [572] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7660), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [573] = { + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7662), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [574] = { + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7664), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [575] = { + [sym__definition] = STATE(573), + [sym_keyword] = STATE(573), + [sym_php_statement] = STATE(573), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(573), + [sym__inline_directive] = STATE(573), + [sym__nested_directive] = STATE(573), + [sym_fragment] = STATE(573), + [sym_section] = STATE(573), + [sym_inlineSection] = STATE(573), + [sym_once] = STATE(573), + [sym_verbatim] = STATE(573), + [sym_stack] = STATE(573), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(573), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(573), + [sym_loop] = STATE(573), + [sym_loop_operator] = STATE(573), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(573), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(573), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(573), + [sym_text] = STATE(573), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7666), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7668), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [576] = { + [sym__definition] = STATE(574), + [sym_keyword] = STATE(574), + [sym_php_statement] = STATE(574), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(574), + [sym__inline_directive] = STATE(574), + [sym__nested_directive] = STATE(574), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_inlineSection] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(574), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(574), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(574), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(574), + [sym_text] = STATE(574), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7670), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7672), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [577] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7674), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [578] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -96179,602 +95342,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7035), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [577] = { - [sym__definition] = STATE(575), - [sym_comment] = STATE(575), - [sym_keyword] = STATE(575), - [sym_php_statement] = STATE(575), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(575), - [sym__inline_directive] = STATE(575), - [sym__nested_directive] = STATE(575), - [sym_fragment] = STATE(575), - [sym_section] = STATE(575), - [sym_inlineSection] = STATE(575), - [sym_once] = STATE(575), - [sym_verbatim] = STATE(575), - [sym_stack] = STATE(575), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(575), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(575), - [sym_loop] = STATE(575), - [sym_loop_operator] = STATE(575), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(575), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(575), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(575), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(575), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7037), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [578] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7037), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7676), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [579] = { - [sym__definition] = STATE(576), - [sym_comment] = STATE(576), - [sym_keyword] = STATE(576), - [sym_php_statement] = STATE(576), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(576), - [sym__inline_directive] = STATE(576), - [sym__nested_directive] = STATE(576), - [sym_fragment] = STATE(576), - [sym_section] = STATE(576), - [sym_inlineSection] = STATE(576), - [sym_once] = STATE(576), - [sym_verbatim] = STATE(576), - [sym_stack] = STATE(576), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(576), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(576), - [sym_loop] = STATE(576), - [sym_loop_operator] = STATE(576), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(576), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(576), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(576), - [sym_text] = STATE(576), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7039), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(577), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(577), + [sym_section] = STATE(577), + [sym_inlineSection] = STATE(577), + [sym_once] = STATE(577), + [sym_verbatim] = STATE(577), + [sym_stack] = STATE(577), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(577), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(577), + [sym_loop] = STATE(577), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(577), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(577), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(577), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(577), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7678), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7680), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [580] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7041), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7680), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [581] = { + [sym__definition] = STATE(578), + [sym_keyword] = STATE(578), + [sym_php_statement] = STATE(578), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(578), + [sym__inline_directive] = STATE(578), + [sym__nested_directive] = STATE(578), + [sym_fragment] = STATE(578), + [sym_section] = STATE(578), + [sym_inlineSection] = STATE(578), + [sym_once] = STATE(578), + [sym_verbatim] = STATE(578), + [sym_stack] = STATE(578), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(578), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(578), + [sym_loop] = STATE(578), + [sym_loop_operator] = STATE(578), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(578), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(578), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(578), + [sym_text] = STATE(578), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7682), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7684), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [582] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -96784,844 +95822,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7043), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [582] = { - [sym__definition] = STATE(578), - [sym_comment] = STATE(578), - [sym_keyword] = STATE(578), - [sym_php_statement] = STATE(578), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(578), - [sym__inline_directive] = STATE(578), - [sym__nested_directive] = STATE(578), - [sym_fragment] = STATE(578), - [sym_section] = STATE(578), - [sym_inlineSection] = STATE(578), - [sym_once] = STATE(578), - [sym_verbatim] = STATE(578), - [sym_stack] = STATE(578), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(578), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(578), - [sym_loop] = STATE(578), - [sym_loop_operator] = STATE(578), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(578), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(578), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(578), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(578), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7045), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7686), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [583] = { - [sym__definition] = STATE(581), - [sym_comment] = STATE(581), - [sym_keyword] = STATE(581), - [sym_php_statement] = STATE(581), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(581), - [sym__inline_directive] = STATE(581), - [sym__nested_directive] = STATE(581), - [sym_fragment] = STATE(581), - [sym_section] = STATE(581), - [sym_inlineSection] = STATE(581), - [sym_once] = STATE(581), - [sym_verbatim] = STATE(581), - [sym_stack] = STATE(581), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(581), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(581), - [sym_loop] = STATE(581), - [sym_loop_operator] = STATE(581), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(581), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(581), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(581), - [sym_text] = STATE(581), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7047), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(580), + [sym_keyword] = STATE(580), + [sym_php_statement] = STATE(580), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(580), + [sym__inline_directive] = STATE(580), + [sym__nested_directive] = STATE(580), + [sym_fragment] = STATE(580), + [sym_section] = STATE(580), + [sym_inlineSection] = STATE(580), + [sym_once] = STATE(580), + [sym_verbatim] = STATE(580), + [sym_stack] = STATE(580), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(580), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(580), + [sym_loop] = STATE(580), + [sym_loop_operator] = STATE(580), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(580), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(580), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(580), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(580), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7688), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7690), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [584] = { - [sym__definition] = STATE(610), - [sym_comment] = STATE(610), - [sym_keyword] = STATE(610), - [sym_php_statement] = STATE(610), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(610), - [sym__inline_directive] = STATE(610), - [sym__nested_directive] = STATE(610), - [sym_fragment] = STATE(610), - [sym_section] = STATE(610), - [sym_inlineSection] = STATE(610), - [sym_once] = STATE(610), - [sym_verbatim] = STATE(610), - [sym_stack] = STATE(610), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(610), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(610), - [sym_loop] = STATE(610), - [sym_loop_operator] = STATE(610), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(610), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(610), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(610), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(610), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7041), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(582), + [sym_keyword] = STATE(582), + [sym_php_statement] = STATE(582), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(582), + [sym__inline_directive] = STATE(582), + [sym__nested_directive] = STATE(582), + [sym_fragment] = STATE(582), + [sym_section] = STATE(582), + [sym_inlineSection] = STATE(582), + [sym_once] = STATE(582), + [sym_verbatim] = STATE(582), + [sym_stack] = STATE(582), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(582), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(582), + [sym_loop] = STATE(582), + [sym_loop_operator] = STATE(582), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(582), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(582), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(582), + [sym_text] = STATE(582), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7692), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7694), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [585] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7049), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(613), + [sym_keyword] = STATE(613), + [sym_php_statement] = STATE(613), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(613), + [sym__inline_directive] = STATE(613), + [sym__nested_directive] = STATE(613), + [sym_fragment] = STATE(613), + [sym_section] = STATE(613), + [sym_inlineSection] = STATE(613), + [sym_once] = STATE(613), + [sym_verbatim] = STATE(613), + [sym_stack] = STATE(613), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(613), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(613), + [sym_loop] = STATE(613), + [sym_loop_operator] = STATE(613), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(613), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(613), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(613), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(613), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7696), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7660), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [586] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7051), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7698), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [587] = { - [sym__definition] = STATE(585), - [sym_comment] = STATE(585), - [sym_keyword] = STATE(585), - [sym_php_statement] = STATE(585), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(585), - [sym__inline_directive] = STATE(585), - [sym__nested_directive] = STATE(585), - [sym_fragment] = STATE(585), - [sym_section] = STATE(585), - [sym_inlineSection] = STATE(585), - [sym_once] = STATE(585), - [sym_verbatim] = STATE(585), - [sym_stack] = STATE(585), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(585), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(585), - [sym_loop] = STATE(585), - [sym_loop_operator] = STATE(585), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(585), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(585), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(585), - [sym_text] = STATE(585), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7053), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7700), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [588] = { [sym__definition] = STATE(586), - [sym_comment] = STATE(586), [sym_keyword] = STATE(586), [sym_php_statement] = STATE(586), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(586), [sym__inline_directive] = STATE(586), [sym__nested_directive] = STATE(586), @@ -97631,239 +96542,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(586), [sym_verbatim] = STATE(586), [sym_stack] = STATE(586), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(586), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(586), [sym_loop] = STATE(586), [sym_loop_operator] = STATE(586), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(586), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(586), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(586), [sym_text] = STATE(586), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7055), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7702), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7704), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [589] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7057), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(587), + [sym_keyword] = STATE(587), + [sym_php_statement] = STATE(587), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(587), + [sym__inline_directive] = STATE(587), + [sym__nested_directive] = STATE(587), + [sym_fragment] = STATE(587), + [sym_section] = STATE(587), + [sym_inlineSection] = STATE(587), + [sym_once] = STATE(587), + [sym_verbatim] = STATE(587), + [sym_stack] = STATE(587), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(587), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(587), + [sym_loop] = STATE(587), + [sym_loop_operator] = STATE(587), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(587), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(587), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(587), + [sym_text] = STATE(587), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7706), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7708), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [590] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7710), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [591] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -97873,360 +96902,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7059), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [591] = { - [sym__definition] = STATE(589), - [sym_comment] = STATE(589), - [sym_keyword] = STATE(589), - [sym_php_statement] = STATE(589), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(589), - [sym__inline_directive] = STATE(589), - [sym__nested_directive] = STATE(589), - [sym_fragment] = STATE(589), - [sym_section] = STATE(589), - [sym_inlineSection] = STATE(589), - [sym_once] = STATE(589), - [sym_verbatim] = STATE(589), - [sym_stack] = STATE(589), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(589), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(589), - [sym_loop] = STATE(589), - [sym_loop_operator] = STATE(589), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(589), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(589), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(589), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(589), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7061), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7712), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [592] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7061), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [593] = { [sym__definition] = STATE(590), - [sym_comment] = STATE(590), [sym_keyword] = STATE(590), [sym_php_statement] = STATE(590), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(590), [sym__inline_directive] = STATE(590), [sym__nested_directive] = STATE(590), @@ -98236,118 +97022,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(590), [sym_verbatim] = STATE(590), [sym_stack] = STATE(590), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(590), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(590), [sym_loop] = STATE(590), [sym_loop_operator] = STATE(590), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(590), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(590), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(590), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(590), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7063), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(590), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7714), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7716), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [593] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7716), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [594] = { + [sym__definition] = STATE(591), + [sym_keyword] = STATE(591), + [sym_php_statement] = STATE(591), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(591), + [sym__inline_directive] = STATE(591), + [sym__nested_directive] = STATE(591), + [sym_fragment] = STATE(591), + [sym_section] = STATE(591), + [sym_inlineSection] = STATE(591), + [sym_once] = STATE(591), + [sym_verbatim] = STATE(591), + [sym_stack] = STATE(591), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(591), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(591), + [sym_loop] = STATE(591), + [sym_loop_operator] = STATE(591), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(591), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(591), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(591), + [sym_text] = STATE(591), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7718), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7720), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [595] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -98357,360 +97382,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7065), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [595] = { - [sym__definition] = STATE(592), - [sym_comment] = STATE(592), - [sym_keyword] = STATE(592), - [sym_php_statement] = STATE(592), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(592), - [sym__inline_directive] = STATE(592), - [sym__nested_directive] = STATE(592), - [sym_fragment] = STATE(592), - [sym_section] = STATE(592), - [sym_inlineSection] = STATE(592), - [sym_once] = STATE(592), - [sym_verbatim] = STATE(592), - [sym_stack] = STATE(592), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(592), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(592), - [sym_loop] = STATE(592), - [sym_loop_operator] = STATE(592), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(592), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(592), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(592), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(592), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7067), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7722), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [596] = { - [sym__definition] = STATE(594), - [sym_comment] = STATE(594), - [sym_keyword] = STATE(594), - [sym_php_statement] = STATE(594), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(594), - [sym__inline_directive] = STATE(594), - [sym__nested_directive] = STATE(594), - [sym_fragment] = STATE(594), - [sym_section] = STATE(594), - [sym_inlineSection] = STATE(594), - [sym_once] = STATE(594), - [sym_verbatim] = STATE(594), - [sym_stack] = STATE(594), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(594), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(594), - [sym_loop] = STATE(594), - [sym_loop_operator] = STATE(594), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(594), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(594), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(594), - [sym_text] = STATE(594), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7069), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(593), + [sym_keyword] = STATE(593), + [sym_php_statement] = STATE(593), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(593), + [sym__inline_directive] = STATE(593), + [sym__nested_directive] = STATE(593), + [sym_fragment] = STATE(593), + [sym_section] = STATE(593), + [sym_inlineSection] = STATE(593), + [sym_once] = STATE(593), + [sym_verbatim] = STATE(593), + [sym_stack] = STATE(593), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(593), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(593), + [sym_loop] = STATE(593), + [sym_loop_operator] = STATE(593), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(593), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(593), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(593), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(593), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7724), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7726), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [597] = { + [sym__definition] = STATE(595), + [sym_keyword] = STATE(595), + [sym_php_statement] = STATE(595), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(595), + [sym__inline_directive] = STATE(595), + [sym__nested_directive] = STATE(595), + [sym_fragment] = STATE(595), + [sym_section] = STATE(595), + [sym_inlineSection] = STATE(595), + [sym_once] = STATE(595), + [sym_verbatim] = STATE(595), + [sym_stack] = STATE(595), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(595), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(595), + [sym_loop] = STATE(595), + [sym_loop_operator] = STATE(595), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(595), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(595), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(595), + [sym_text] = STATE(595), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7728), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7730), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [598] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -98720,481 +97742,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7071), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [598] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7073), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7732), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [599] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7075), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7734), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [600] = { - [sym__definition] = STATE(598), - [sym_comment] = STATE(598), - [sym_keyword] = STATE(598), - [sym_php_statement] = STATE(598), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(598), - [sym__inline_directive] = STATE(598), - [sym__nested_directive] = STATE(598), - [sym_fragment] = STATE(598), - [sym_section] = STATE(598), - [sym_inlineSection] = STATE(598), - [sym_once] = STATE(598), - [sym_verbatim] = STATE(598), - [sym_stack] = STATE(598), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(598), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(598), - [sym_loop] = STATE(598), - [sym_loop_operator] = STATE(598), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(598), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(598), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(598), - [sym_text] = STATE(598), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7077), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7736), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [601] = { [sym__definition] = STATE(599), - [sym_comment] = STATE(599), [sym_keyword] = STATE(599), [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), [sym_attribute] = STATE(599), [sym__inline_directive] = STATE(599), [sym__nested_directive] = STATE(599), @@ -99204,239 +98102,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(599), [sym_verbatim] = STATE(599), [sym_stack] = STATE(599), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), [sym_conditional] = STATE(599), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), [sym_switch] = STATE(599), [sym_loop] = STATE(599), [sym_loop_operator] = STATE(599), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), [sym_envoy] = STATE(599), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), [sym_livewire] = STATE(599), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), [aux_sym__directive_body] = STATE(599), [sym_text] = STATE(599), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7079), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7738), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7740), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [602] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7081), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(600), + [sym_keyword] = STATE(600), + [sym_php_statement] = STATE(600), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(600), + [sym__inline_directive] = STATE(600), + [sym__nested_directive] = STATE(600), + [sym_fragment] = STATE(600), + [sym_section] = STATE(600), + [sym_inlineSection] = STATE(600), + [sym_once] = STATE(600), + [sym_verbatim] = STATE(600), + [sym_stack] = STATE(600), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(600), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(600), + [sym_loop] = STATE(600), + [sym_loop_operator] = STATE(600), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(600), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(600), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(600), + [sym_text] = STATE(600), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7742), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7744), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [603] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7746), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [604] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -99446,360 +98462,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7083), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [604] = { - [sym__definition] = STATE(602), - [sym_comment] = STATE(602), - [sym_keyword] = STATE(602), - [sym_php_statement] = STATE(602), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(602), - [sym__inline_directive] = STATE(602), - [sym__nested_directive] = STATE(602), - [sym_fragment] = STATE(602), - [sym_section] = STATE(602), - [sym_inlineSection] = STATE(602), - [sym_once] = STATE(602), - [sym_verbatim] = STATE(602), - [sym_stack] = STATE(602), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(602), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(602), - [sym_loop] = STATE(602), - [sym_loop_operator] = STATE(602), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(602), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(602), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(602), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(602), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7085), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7748), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [605] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7085), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [606] = { [sym__definition] = STATE(603), - [sym_comment] = STATE(603), [sym_keyword] = STATE(603), [sym_php_statement] = STATE(603), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(603), [sym__inline_directive] = STATE(603), [sym__nested_directive] = STATE(603), @@ -99809,118 +98582,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(603), [sym_verbatim] = STATE(603), [sym_stack] = STATE(603), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(603), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(603), [sym_loop] = STATE(603), [sym_loop_operator] = STATE(603), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(603), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(603), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(603), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(603), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7087), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(603), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7750), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7752), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), + }, + [606] = { + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7752), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [607] = { + [sym__definition] = STATE(604), + [sym_keyword] = STATE(604), + [sym_php_statement] = STATE(604), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(604), + [sym__inline_directive] = STATE(604), + [sym__nested_directive] = STATE(604), + [sym_fragment] = STATE(604), + [sym_section] = STATE(604), + [sym_inlineSection] = STATE(604), + [sym_once] = STATE(604), + [sym_verbatim] = STATE(604), + [sym_stack] = STATE(604), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(604), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(604), + [sym_loop] = STATE(604), + [sym_loop_operator] = STATE(604), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(604), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(604), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(604), + [sym_text] = STATE(604), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7754), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7756), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [608] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -99930,1570 +98942,1317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7089), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [608] = { - [sym__definition] = STATE(605), - [sym_comment] = STATE(605), - [sym_keyword] = STATE(605), - [sym_php_statement] = STATE(605), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(605), - [sym__inline_directive] = STATE(605), - [sym__nested_directive] = STATE(605), - [sym_fragment] = STATE(605), - [sym_section] = STATE(605), - [sym_inlineSection] = STATE(605), - [sym_once] = STATE(605), - [sym_verbatim] = STATE(605), - [sym_stack] = STATE(605), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(605), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(605), - [sym_loop] = STATE(605), - [sym_loop_operator] = STATE(605), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(605), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(605), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(605), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(605), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7091), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7758), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [609] = { - [sym__definition] = STATE(607), - [sym_comment] = STATE(607), - [sym_keyword] = STATE(607), - [sym_php_statement] = STATE(607), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(607), - [sym__inline_directive] = STATE(607), - [sym__nested_directive] = STATE(607), - [sym_fragment] = STATE(607), - [sym_section] = STATE(607), - [sym_inlineSection] = STATE(607), - [sym_once] = STATE(607), - [sym_verbatim] = STATE(607), - [sym_stack] = STATE(607), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(607), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(607), - [sym_loop] = STATE(607), - [sym_loop_operator] = STATE(607), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(607), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(607), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(607), - [sym_text] = STATE(607), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7093), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(606), + [sym_keyword] = STATE(606), + [sym_php_statement] = STATE(606), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(606), + [sym__inline_directive] = STATE(606), + [sym__nested_directive] = STATE(606), + [sym_fragment] = STATE(606), + [sym_section] = STATE(606), + [sym_inlineSection] = STATE(606), + [sym_once] = STATE(606), + [sym_verbatim] = STATE(606), + [sym_stack] = STATE(606), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(606), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(606), + [sym_loop] = STATE(606), + [sym_loop_operator] = STATE(606), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(606), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(606), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(606), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(606), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(7760), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7762), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [610] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7095), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7764), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [611] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7097), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(620), + [sym_keyword] = STATE(620), + [sym_php_statement] = STATE(620), + [sym__escaped] = STATE(2421), + [sym__unescaped] = STATE(2421), + [sym__raw] = STATE(2421), + [sym__inline_raw] = STATE(2421), + [sym__multi_line_raw] = STATE(2421), + [sym_attribute] = STATE(620), + [sym__inline_directive] = STATE(620), + [sym__nested_directive] = STATE(620), + [sym_fragment] = STATE(620), + [sym_section] = STATE(620), + [sym_inlineSection] = STATE(620), + [sym_once] = STATE(620), + [sym_verbatim] = STATE(620), + [sym_stack] = STATE(620), + [sym__push] = STATE(2422), + [sym__pushOnce] = STATE(2422), + [sym__pushIf] = STATE(2422), + [sym__prepend] = STATE(2422), + [sym__prependOnce] = STATE(2422), + [sym_conditional] = STATE(620), + [sym__if] = STATE(2423), + [sym__unless] = STATE(2423), + [sym__isset] = STATE(2423), + [sym__empty] = STATE(2423), + [sym__auth] = STATE(2423), + [sym__guest] = STATE(2423), + [sym__production] = STATE(2423), + [sym__env] = STATE(2423), + [sym__hasSection] = STATE(2423), + [sym__sectionMissing] = STATE(2423), + [sym__error] = STATE(2423), + [sym_authorization] = STATE(2423), + [sym__can] = STATE(2424), + [sym__cannot] = STATE(2424), + [sym__canany] = STATE(2424), + [sym__feature] = STATE(2423), + [sym__custom] = STATE(2423), + [sym_switch] = STATE(620), + [sym_loop] = STATE(620), + [sym_loop_operator] = STATE(620), + [sym__for] = STATE(2425), + [sym__foreach] = STATE(2425), + [sym__forelse] = STATE(2425), + [sym__while] = STATE(2425), + [sym_envoy] = STATE(620), + [sym__setup] = STATE(2421), + [sym__task] = STATE(2426), + [sym__story] = STATE(2426), + [sym__hooks] = STATE(2421), + [sym__before] = STATE(2421), + [sym__after] = STATE(2421), + [sym__envoy_error] = STATE(2421), + [sym__success] = STATE(2421), + [sym__finished] = STATE(2421), + [sym_livewire] = STATE(620), + [sym__persist] = STATE(2427), + [sym__teleport] = STATE(2427), + [sym__volt] = STATE(2427), + [aux_sym__directive_body] = STATE(620), + [sym_text] = STATE(620), + [sym__text] = STATE(986), + [aux_sym_php_only_repeat1] = STATE(986), + [sym_comment] = ACTIONS(7766), + [aux_sym_keyword_token1] = ACTIONS(7768), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7770), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7772), + [anon_sym_ATphp] = ACTIONS(7774), + [aux_sym_attribute_token1] = ACTIONS(7776), + [aux_sym__inline_directive_token1] = ACTIONS(7778), + [anon_sym_ATfragment] = ACTIONS(7780), + [anon_sym_ATsection] = ACTIONS(7782), + [anon_sym_ATonce] = ACTIONS(7784), + [anon_sym_ATverbatim] = ACTIONS(7786), + [anon_sym_ATpush] = ACTIONS(7788), + [anon_sym_ATpushOnce] = ACTIONS(7790), + [anon_sym_ATpushIf] = ACTIONS(7792), + [anon_sym_ATprepend] = ACTIONS(7794), + [anon_sym_ATprependOnce] = ACTIONS(7796), + [anon_sym_ATif] = ACTIONS(7798), + [anon_sym_ATunless] = ACTIONS(7800), + [anon_sym_ATisset] = ACTIONS(7802), + [anon_sym_ATempty] = ACTIONS(7804), + [anon_sym_ATauth] = ACTIONS(7806), + [anon_sym_ATguest] = ACTIONS(7808), + [anon_sym_ATproduction] = ACTIONS(7810), + [anon_sym_ATenv] = ACTIONS(7812), + [anon_sym_AThasSection] = ACTIONS(7814), + [anon_sym_ATsectionMissing] = ACTIONS(7816), + [anon_sym_ATerror] = ACTIONS(7818), + [anon_sym_ATcan] = ACTIONS(7820), + [anon_sym_ATcannot] = ACTIONS(7822), + [anon_sym_ATcanany] = ACTIONS(7824), + [anon_sym_ATfeature] = ACTIONS(7826), + [aux_sym__custom_token1] = ACTIONS(7828), + [aux_sym__custom_token2] = ACTIONS(7830), + [anon_sym_ATswitch] = ACTIONS(7832), + [aux_sym_loop_operator_token1] = ACTIONS(7834), + [anon_sym_ATfor] = ACTIONS(7836), + [anon_sym_ATforeach] = ACTIONS(7838), + [anon_sym_ATforelse] = ACTIONS(7840), + [anon_sym_ATwhile] = ACTIONS(7842), + [anon_sym_ATendwhile] = ACTIONS(4609), + [anon_sym_ATsetup] = ACTIONS(7844), + [anon_sym_ATtask] = ACTIONS(7846), + [anon_sym_ATstory] = ACTIONS(7848), + [anon_sym_ATbefore] = ACTIONS(7850), + [anon_sym_ATafter] = ACTIONS(7852), + [anon_sym_ATsuccess] = ACTIONS(7854), + [anon_sym_ATfinished] = ACTIONS(7856), + [anon_sym_ATpersist] = ACTIONS(7858), + [anon_sym_ATteleport] = ACTIONS(7860), + [anon_sym_ATvolt] = ACTIONS(7862), + [aux_sym__text_token1] = ACTIONS(7864), + [aux_sym__text_token2] = ACTIONS(7864), + [aux_sym__text_token3] = ACTIONS(7866), }, [612] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7099), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(608), + [sym_keyword] = STATE(608), + [sym_php_statement] = STATE(608), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(608), + [sym__inline_directive] = STATE(608), + [sym__nested_directive] = STATE(608), + [sym_fragment] = STATE(608), + [sym_section] = STATE(608), + [sym_inlineSection] = STATE(608), + [sym_once] = STATE(608), + [sym_verbatim] = STATE(608), + [sym_stack] = STATE(608), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(608), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(608), + [sym_loop] = STATE(608), + [sym_loop_operator] = STATE(608), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(608), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(608), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(608), + [sym_text] = STATE(608), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(7868), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7870), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [613] = { - [sym__definition] = STATE(611), - [sym_comment] = STATE(611), - [sym_keyword] = STATE(611), - [sym_php_statement] = STATE(611), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(611), - [sym__inline_directive] = STATE(611), - [sym__nested_directive] = STATE(611), - [sym_fragment] = STATE(611), - [sym_section] = STATE(611), - [sym_inlineSection] = STATE(611), - [sym_once] = STATE(611), - [sym_verbatim] = STATE(611), - [sym_stack] = STATE(611), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(611), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(611), - [sym_loop] = STATE(611), - [sym_loop_operator] = STATE(611), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(611), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(611), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(611), - [sym_text] = STATE(611), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7101), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7872), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [614] = { - [sym__definition] = STATE(612), - [sym_comment] = STATE(612), - [sym_keyword] = STATE(612), - [sym_php_statement] = STATE(612), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(612), - [sym__inline_directive] = STATE(612), - [sym__nested_directive] = STATE(612), - [sym_fragment] = STATE(612), - [sym_section] = STATE(612), - [sym_inlineSection] = STATE(612), - [sym_once] = STATE(612), - [sym_verbatim] = STATE(612), - [sym_stack] = STATE(612), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(612), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(612), - [sym_loop] = STATE(612), - [sym_loop_operator] = STATE(612), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(612), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(612), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(612), - [sym_text] = STATE(612), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(7103), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7874), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [615] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(7105), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7876), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [616] = { - [sym__definition] = STATE(628), - [sym_comment] = STATE(628), - [sym_keyword] = STATE(628), - [sym_php_statement] = STATE(628), - [sym__escaped] = STATE(2391), - [sym__unescaped] = STATE(2391), - [sym__raw] = STATE(2391), - [sym__inline_raw] = STATE(2391), - [sym__multi_line_raw] = STATE(2391), - [sym_attribute] = STATE(628), - [sym__inline_directive] = STATE(628), - [sym__nested_directive] = STATE(628), - [sym_fragment] = STATE(628), - [sym_section] = STATE(628), - [sym_inlineSection] = STATE(628), - [sym_once] = STATE(628), - [sym_verbatim] = STATE(628), - [sym_stack] = STATE(628), - [sym__push] = STATE(2392), - [sym__pushOnce] = STATE(2392), - [sym__pushIf] = STATE(2392), - [sym__prepend] = STATE(2392), - [sym__prependOnce] = STATE(2392), - [sym_conditional] = STATE(628), - [sym__if] = STATE(2393), - [sym__unless] = STATE(2393), - [sym__isset] = STATE(2393), - [sym__empty] = STATE(2393), - [sym__auth] = STATE(2393), - [sym__guest] = STATE(2393), - [sym__production] = STATE(2393), - [sym__env] = STATE(2393), - [sym__hasSection] = STATE(2393), - [sym__sectionMissing] = STATE(2393), - [sym__error] = STATE(2393), - [sym_authorization] = STATE(2393), - [sym__can] = STATE(2394), - [sym__cannot] = STATE(2394), - [sym__canany] = STATE(2394), - [sym__feature] = STATE(2393), - [sym__custom] = STATE(2393), - [sym_switch] = STATE(628), - [sym_loop] = STATE(628), - [sym_loop_operator] = STATE(628), - [sym__for] = STATE(2395), - [sym__foreach] = STATE(2395), - [sym__forelse] = STATE(2395), - [sym__while] = STATE(2395), - [sym_envoy] = STATE(628), - [sym__setup] = STATE(2391), - [sym__task] = STATE(2396), - [sym__story] = STATE(2396), - [sym__hooks] = STATE(2391), - [sym__before] = STATE(2391), - [sym__after] = STATE(2391), - [sym__envoy_error] = STATE(2391), - [sym__success] = STATE(2391), - [sym__finished] = STATE(2391), - [sym_livewire] = STATE(628), - [sym__persist] = STATE(2397), - [sym__teleport] = STATE(2397), - [sym__volt] = STATE(2397), - [aux_sym__directive_body] = STATE(628), - [sym_text] = STATE(628), - [sym__text] = STATE(980), - [aux_sym_php_only_repeat1] = STATE(980), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(6734), - [aux_sym_keyword_token1] = ACTIONS(6736), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6738), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6740), - [anon_sym_ATphp] = ACTIONS(6742), - [aux_sym_attribute_token1] = ACTIONS(6744), - [aux_sym__inline_directive_token1] = ACTIONS(6746), - [anon_sym_ATfragment] = ACTIONS(6748), - [anon_sym_ATsection] = ACTIONS(6750), - [anon_sym_ATonce] = ACTIONS(6752), - [anon_sym_ATverbatim] = ACTIONS(6754), - [anon_sym_ATpush] = ACTIONS(6756), - [anon_sym_ATpushOnce] = ACTIONS(6758), - [anon_sym_ATpushIf] = ACTIONS(6760), - [anon_sym_ATprepend] = ACTIONS(6762), - [anon_sym_ATprependOnce] = ACTIONS(6764), - [anon_sym_ATif] = ACTIONS(6766), - [anon_sym_ATunless] = ACTIONS(6768), - [anon_sym_ATisset] = ACTIONS(6770), - [anon_sym_ATempty] = ACTIONS(6772), - [anon_sym_ATauth] = ACTIONS(6774), - [anon_sym_ATguest] = ACTIONS(6776), - [anon_sym_ATproduction] = ACTIONS(6778), - [anon_sym_ATenv] = ACTIONS(6780), - [anon_sym_AThasSection] = ACTIONS(6782), - [anon_sym_ATsectionMissing] = ACTIONS(6784), - [anon_sym_ATerror] = ACTIONS(6786), - [anon_sym_ATcan] = ACTIONS(6788), - [anon_sym_ATcannot] = ACTIONS(6790), - [anon_sym_ATcanany] = ACTIONS(6792), - [anon_sym_ATfeature] = ACTIONS(6794), - [aux_sym__custom_token1] = ACTIONS(6796), - [aux_sym__custom_token2] = ACTIONS(6798), - [anon_sym_ATswitch] = ACTIONS(6800), - [aux_sym_loop_operator_token1] = ACTIONS(6802), - [anon_sym_ATfor] = ACTIONS(6804), - [anon_sym_ATforeach] = ACTIONS(6806), - [anon_sym_ATforelse] = ACTIONS(6808), - [anon_sym_ATendforelse] = ACTIONS(4626), - [anon_sym_ATwhile] = ACTIONS(6810), - [anon_sym_ATsetup] = ACTIONS(6812), - [anon_sym_ATtask] = ACTIONS(6814), - [anon_sym_ATstory] = ACTIONS(6816), - [anon_sym_ATbefore] = ACTIONS(6818), - [anon_sym_ATafter] = ACTIONS(6820), - [anon_sym_ATsuccess] = ACTIONS(6822), - [anon_sym_ATfinished] = ACTIONS(6824), - [anon_sym_ATpersist] = ACTIONS(6826), - [anon_sym_ATteleport] = ACTIONS(6828), - [anon_sym_ATvolt] = ACTIONS(6830), - [aux_sym__text_token1] = ACTIONS(6832), - [aux_sym__text_token2] = ACTIONS(6832), - [aux_sym__text_token3] = ACTIONS(6834), + [sym__definition] = STATE(614), + [sym_keyword] = STATE(614), + [sym_php_statement] = STATE(614), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(614), + [sym__inline_directive] = STATE(614), + [sym__nested_directive] = STATE(614), + [sym_fragment] = STATE(614), + [sym_section] = STATE(614), + [sym_inlineSection] = STATE(614), + [sym_once] = STATE(614), + [sym_verbatim] = STATE(614), + [sym_stack] = STATE(614), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(614), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(614), + [sym_loop] = STATE(614), + [sym_loop_operator] = STATE(614), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(614), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(614), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(614), + [sym_text] = STATE(614), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(7878), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(7880), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [617] = { - [sym__definition] = STATE(617), - [sym_comment] = STATE(617), - [sym_keyword] = STATE(617), - [sym_php_statement] = STATE(617), - [sym__escaped] = STATE(2223), - [sym__unescaped] = STATE(2223), - [sym__raw] = STATE(2223), - [sym__inline_raw] = STATE(2223), - [sym__multi_line_raw] = STATE(2223), - [sym_attribute] = STATE(617), - [sym__inline_directive] = STATE(617), - [sym__nested_directive] = STATE(617), - [sym_fragment] = STATE(617), - [sym_section] = STATE(617), - [sym_inlineSection] = STATE(617), - [sym_once] = STATE(617), - [sym_verbatim] = STATE(617), - [sym_stack] = STATE(617), - [sym__push] = STATE(2224), - [sym__pushOnce] = STATE(2224), - [sym__pushIf] = STATE(2224), - [sym__prepend] = STATE(2224), - [sym__prependOnce] = STATE(2224), - [sym_conditional] = STATE(617), - [sym__if] = STATE(2225), - [sym__unless] = STATE(2225), - [sym__isset] = STATE(2225), - [sym__empty] = STATE(2225), - [sym__auth] = STATE(2225), - [sym__guest] = STATE(2225), - [sym__production] = STATE(2225), - [sym__env] = STATE(2225), - [sym__hasSection] = STATE(2225), - [sym__sectionMissing] = STATE(2225), - [sym__error] = STATE(2225), - [sym_authorization] = STATE(2225), - [sym__can] = STATE(2226), - [sym__cannot] = STATE(2226), - [sym__canany] = STATE(2226), - [sym__feature] = STATE(2225), - [sym__custom] = STATE(2225), - [sym_switch] = STATE(617), - [sym_loop] = STATE(617), - [sym_loop_operator] = STATE(617), - [sym__for] = STATE(2227), - [sym__foreach] = STATE(2227), - [sym__forelse] = STATE(2227), - [sym__while] = STATE(2227), - [sym_envoy] = STATE(617), - [sym__setup] = STATE(2223), - [sym__task] = STATE(2228), - [sym__story] = STATE(2228), - [sym__hooks] = STATE(2223), - [sym__before] = STATE(2223), - [sym__after] = STATE(2223), - [sym__envoy_error] = STATE(2223), - [sym__success] = STATE(2223), - [sym__finished] = STATE(2223), - [sym_livewire] = STATE(617), - [sym__persist] = STATE(2229), - [sym__teleport] = STATE(2229), - [sym__volt] = STATE(2229), - [aux_sym__directive_body] = STATE(617), - [sym_text] = STATE(617), - [sym__text] = STATE(989), - [aux_sym_php_only_repeat1] = STATE(989), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7107), - [aux_sym_keyword_token1] = ACTIONS(7110), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7113), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7116), - [anon_sym_ATphp] = ACTIONS(7119), - [aux_sym_attribute_token1] = ACTIONS(7122), - [aux_sym__inline_directive_token1] = ACTIONS(7125), - [anon_sym_ATfragment] = ACTIONS(7128), - [anon_sym_ATsection] = ACTIONS(7131), - [anon_sym_ATonce] = ACTIONS(7134), - [anon_sym_ATverbatim] = ACTIONS(7137), - [anon_sym_ATpush] = ACTIONS(7140), - [anon_sym_ATpushOnce] = ACTIONS(7143), - [anon_sym_ATpushIf] = ACTIONS(7146), - [anon_sym_ATprepend] = ACTIONS(7149), - [anon_sym_ATprependOnce] = ACTIONS(7152), - [anon_sym_ATif] = ACTIONS(7155), - [anon_sym_ATunless] = ACTIONS(7158), - [anon_sym_ATisset] = ACTIONS(7161), - [anon_sym_ATempty] = ACTIONS(7164), - [anon_sym_ATauth] = ACTIONS(7167), - [anon_sym_ATguest] = ACTIONS(7170), - [anon_sym_ATproduction] = ACTIONS(7173), - [anon_sym_ATenv] = ACTIONS(7176), - [anon_sym_AThasSection] = ACTIONS(7179), - [anon_sym_ATsectionMissing] = ACTIONS(7182), - [anon_sym_ATerror] = ACTIONS(7185), - [anon_sym_ATcan] = ACTIONS(7188), - [anon_sym_ATcannot] = ACTIONS(7191), - [anon_sym_ATcanany] = ACTIONS(7194), - [anon_sym_ATfeature] = ACTIONS(7197), - [aux_sym__custom_token1] = ACTIONS(7200), - [aux_sym__custom_token2] = ACTIONS(7203), - [anon_sym_ATswitch] = ACTIONS(7206), - [aux_sym_loop_operator_token1] = ACTIONS(7209), - [anon_sym_ATfor] = ACTIONS(7212), - [anon_sym_ATendfor] = ACTIONS(3925), - [anon_sym_ATforeach] = ACTIONS(7215), - [anon_sym_ATforelse] = ACTIONS(7218), - [anon_sym_ATwhile] = ACTIONS(7221), - [anon_sym_ATsetup] = ACTIONS(7224), - [anon_sym_ATtask] = ACTIONS(7227), - [anon_sym_ATstory] = ACTIONS(7230), - [anon_sym_ATbefore] = ACTIONS(7233), - [anon_sym_ATafter] = ACTIONS(7236), - [anon_sym_ATsuccess] = ACTIONS(7239), - [anon_sym_ATfinished] = ACTIONS(7242), - [anon_sym_ATpersist] = ACTIONS(7245), - [anon_sym_ATteleport] = ACTIONS(7248), - [anon_sym_ATvolt] = ACTIONS(7251), - [aux_sym__text_token1] = ACTIONS(7254), - [aux_sym__text_token2] = ACTIONS(7254), - [aux_sym__text_token3] = ACTIONS(7257), + [sym__definition] = STATE(615), + [sym_keyword] = STATE(615), + [sym_php_statement] = STATE(615), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(615), + [sym__inline_directive] = STATE(615), + [sym__nested_directive] = STATE(615), + [sym_fragment] = STATE(615), + [sym_section] = STATE(615), + [sym_inlineSection] = STATE(615), + [sym_once] = STATE(615), + [sym_verbatim] = STATE(615), + [sym_stack] = STATE(615), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(615), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(615), + [sym_loop] = STATE(615), + [sym_loop_operator] = STATE(615), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(615), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(615), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(615), + [sym_text] = STATE(615), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(7882), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(7884), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), }, [618] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7260), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(7886), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [619] = { - [sym__definition] = STATE(621), - [sym_comment] = STATE(621), - [sym_keyword] = STATE(621), - [sym_php_statement] = STATE(621), - [sym__escaped] = STATE(2475), - [sym__unescaped] = STATE(2475), - [sym__raw] = STATE(2475), - [sym__inline_raw] = STATE(2475), - [sym__multi_line_raw] = STATE(2475), - [sym_attribute] = STATE(621), - [sym__inline_directive] = STATE(621), - [sym__nested_directive] = STATE(621), - [sym_fragment] = STATE(621), - [sym_section] = STATE(621), - [sym_inlineSection] = STATE(621), - [sym_once] = STATE(621), - [sym_verbatim] = STATE(621), - [sym_stack] = STATE(621), - [sym__push] = STATE(2476), - [sym__pushOnce] = STATE(2476), - [sym__pushIf] = STATE(2476), - [sym__prepend] = STATE(2476), - [sym__prependOnce] = STATE(2476), - [sym_conditional] = STATE(621), - [sym__if] = STATE(2477), - [sym__unless] = STATE(2477), - [sym__isset] = STATE(2477), - [sym__empty] = STATE(2477), - [sym__auth] = STATE(2477), - [sym__guest] = STATE(2477), - [sym__production] = STATE(2477), - [sym__env] = STATE(2477), - [sym__hasSection] = STATE(2477), - [sym__sectionMissing] = STATE(2477), - [sym__error] = STATE(2477), - [sym_authorization] = STATE(2477), - [sym__can] = STATE(2478), - [sym__cannot] = STATE(2478), - [sym__canany] = STATE(2478), - [sym__feature] = STATE(2477), - [sym__custom] = STATE(2477), - [sym_switch] = STATE(621), - [sym_loop] = STATE(621), - [sym_loop_operator] = STATE(621), - [sym__for] = STATE(2479), - [sym__foreach] = STATE(2479), - [sym__forelse] = STATE(2479), - [sym__while] = STATE(2479), - [sym_envoy] = STATE(621), - [sym__setup] = STATE(2475), - [sym__task] = STATE(2480), - [sym__story] = STATE(2480), - [sym__hooks] = STATE(2475), - [sym__before] = STATE(2475), - [sym__after] = STATE(2475), - [sym__envoy_error] = STATE(2475), - [sym__success] = STATE(2475), - [sym__finished] = STATE(2475), - [sym_livewire] = STATE(621), - [sym__persist] = STATE(2481), - [sym__teleport] = STATE(2481), - [sym__volt] = STATE(2481), - [aux_sym__directive_body] = STATE(621), - [sym_text] = STATE(621), - [sym__text] = STATE(976), - [aux_sym_php_only_repeat1] = STATE(976), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7262), - [aux_sym_keyword_token1] = ACTIONS(7264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7266), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7268), - [anon_sym_ATphp] = ACTIONS(7270), - [aux_sym_attribute_token1] = ACTIONS(7272), - [aux_sym__inline_directive_token1] = ACTIONS(7274), - [anon_sym_ATfragment] = ACTIONS(7276), - [anon_sym_ATsection] = ACTIONS(7278), - [anon_sym_ATonce] = ACTIONS(7280), - [anon_sym_ATverbatim] = ACTIONS(7282), - [anon_sym_ATpush] = ACTIONS(7284), - [anon_sym_ATpushOnce] = ACTIONS(7286), - [anon_sym_ATpushIf] = ACTIONS(7288), - [anon_sym_ATprepend] = ACTIONS(7290), - [anon_sym_ATprependOnce] = ACTIONS(7292), - [anon_sym_ATif] = ACTIONS(7294), - [anon_sym_ATunless] = ACTIONS(7296), - [anon_sym_ATisset] = ACTIONS(7298), - [anon_sym_ATempty] = ACTIONS(7300), - [anon_sym_ATauth] = ACTIONS(7302), - [anon_sym_ATguest] = ACTIONS(7304), - [anon_sym_ATproduction] = ACTIONS(7306), - [anon_sym_ATenv] = ACTIONS(7308), - [anon_sym_AThasSection] = ACTIONS(7310), - [anon_sym_ATsectionMissing] = ACTIONS(7312), - [anon_sym_ATerror] = ACTIONS(7314), - [anon_sym_ATcan] = ACTIONS(7316), - [anon_sym_ATcannot] = ACTIONS(7318), - [anon_sym_ATcanany] = ACTIONS(7320), - [anon_sym_ATfeature] = ACTIONS(7322), - [aux_sym__custom_token1] = ACTIONS(7324), - [aux_sym__custom_token2] = ACTIONS(7326), - [anon_sym_ATswitch] = ACTIONS(7328), - [aux_sym_loop_operator_token1] = ACTIONS(7330), - [anon_sym_ATfor] = ACTIONS(7332), - [anon_sym_ATforeach] = ACTIONS(7334), - [anon_sym_ATforelse] = ACTIONS(7336), - [anon_sym_ATwhile] = ACTIONS(7338), - [anon_sym_ATendwhile] = ACTIONS(4712), - [anon_sym_ATsetup] = ACTIONS(7340), - [anon_sym_ATtask] = ACTIONS(7342), - [anon_sym_ATstory] = ACTIONS(7344), - [anon_sym_ATbefore] = ACTIONS(7346), - [anon_sym_ATafter] = ACTIONS(7348), - [anon_sym_ATsuccess] = ACTIONS(7350), - [anon_sym_ATfinished] = ACTIONS(7352), - [anon_sym_ATpersist] = ACTIONS(7354), - [anon_sym_ATteleport] = ACTIONS(7356), - [anon_sym_ATvolt] = ACTIONS(7358), - [aux_sym__text_token1] = ACTIONS(7360), - [aux_sym__text_token2] = ACTIONS(7360), - [aux_sym__text_token3] = ACTIONS(7362), - }, - [620] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -101503,239 +100262,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7364), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(7888), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [620] = { + [sym__definition] = STATE(635), + [sym_keyword] = STATE(635), + [sym_php_statement] = STATE(635), + [sym__escaped] = STATE(2421), + [sym__unescaped] = STATE(2421), + [sym__raw] = STATE(2421), + [sym__inline_raw] = STATE(2421), + [sym__multi_line_raw] = STATE(2421), + [sym_attribute] = STATE(635), + [sym__inline_directive] = STATE(635), + [sym__nested_directive] = STATE(635), + [sym_fragment] = STATE(635), + [sym_section] = STATE(635), + [sym_inlineSection] = STATE(635), + [sym_once] = STATE(635), + [sym_verbatim] = STATE(635), + [sym_stack] = STATE(635), + [sym__push] = STATE(2422), + [sym__pushOnce] = STATE(2422), + [sym__pushIf] = STATE(2422), + [sym__prepend] = STATE(2422), + [sym__prependOnce] = STATE(2422), + [sym_conditional] = STATE(635), + [sym__if] = STATE(2423), + [sym__unless] = STATE(2423), + [sym__isset] = STATE(2423), + [sym__empty] = STATE(2423), + [sym__auth] = STATE(2423), + [sym__guest] = STATE(2423), + [sym__production] = STATE(2423), + [sym__env] = STATE(2423), + [sym__hasSection] = STATE(2423), + [sym__sectionMissing] = STATE(2423), + [sym__error] = STATE(2423), + [sym_authorization] = STATE(2423), + [sym__can] = STATE(2424), + [sym__cannot] = STATE(2424), + [sym__canany] = STATE(2424), + [sym__feature] = STATE(2423), + [sym__custom] = STATE(2423), + [sym_switch] = STATE(635), + [sym_loop] = STATE(635), + [sym_loop_operator] = STATE(635), + [sym__for] = STATE(2425), + [sym__foreach] = STATE(2425), + [sym__forelse] = STATE(2425), + [sym__while] = STATE(2425), + [sym_envoy] = STATE(635), + [sym__setup] = STATE(2421), + [sym__task] = STATE(2426), + [sym__story] = STATE(2426), + [sym__hooks] = STATE(2421), + [sym__before] = STATE(2421), + [sym__after] = STATE(2421), + [sym__envoy_error] = STATE(2421), + [sym__success] = STATE(2421), + [sym__finished] = STATE(2421), + [sym_livewire] = STATE(635), + [sym__persist] = STATE(2427), + [sym__teleport] = STATE(2427), + [sym__volt] = STATE(2427), + [aux_sym__directive_body] = STATE(635), + [sym_text] = STATE(635), + [sym__text] = STATE(986), + [aux_sym_php_only_repeat1] = STATE(986), + [sym_comment] = ACTIONS(7890), + [aux_sym_keyword_token1] = ACTIONS(7768), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7770), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7772), + [anon_sym_ATphp] = ACTIONS(7774), + [aux_sym_attribute_token1] = ACTIONS(7776), + [aux_sym__inline_directive_token1] = ACTIONS(7778), + [anon_sym_ATfragment] = ACTIONS(7780), + [anon_sym_ATsection] = ACTIONS(7782), + [anon_sym_ATonce] = ACTIONS(7784), + [anon_sym_ATverbatim] = ACTIONS(7786), + [anon_sym_ATpush] = ACTIONS(7788), + [anon_sym_ATpushOnce] = ACTIONS(7790), + [anon_sym_ATpushIf] = ACTIONS(7792), + [anon_sym_ATprepend] = ACTIONS(7794), + [anon_sym_ATprependOnce] = ACTIONS(7796), + [anon_sym_ATif] = ACTIONS(7798), + [anon_sym_ATunless] = ACTIONS(7800), + [anon_sym_ATisset] = ACTIONS(7802), + [anon_sym_ATempty] = ACTIONS(7804), + [anon_sym_ATauth] = ACTIONS(7806), + [anon_sym_ATguest] = ACTIONS(7808), + [anon_sym_ATproduction] = ACTIONS(7810), + [anon_sym_ATenv] = ACTIONS(7812), + [anon_sym_AThasSection] = ACTIONS(7814), + [anon_sym_ATsectionMissing] = ACTIONS(7816), + [anon_sym_ATerror] = ACTIONS(7818), + [anon_sym_ATcan] = ACTIONS(7820), + [anon_sym_ATcannot] = ACTIONS(7822), + [anon_sym_ATcanany] = ACTIONS(7824), + [anon_sym_ATfeature] = ACTIONS(7826), + [aux_sym__custom_token1] = ACTIONS(7828), + [aux_sym__custom_token2] = ACTIONS(7830), + [anon_sym_ATswitch] = ACTIONS(7832), + [aux_sym_loop_operator_token1] = ACTIONS(7834), + [anon_sym_ATfor] = ACTIONS(7836), + [anon_sym_ATforeach] = ACTIONS(7838), + [anon_sym_ATforelse] = ACTIONS(7840), + [anon_sym_ATwhile] = ACTIONS(7842), + [anon_sym_ATendwhile] = ACTIONS(4996), + [anon_sym_ATsetup] = ACTIONS(7844), + [anon_sym_ATtask] = ACTIONS(7846), + [anon_sym_ATstory] = ACTIONS(7848), + [anon_sym_ATbefore] = ACTIONS(7850), + [anon_sym_ATafter] = ACTIONS(7852), + [anon_sym_ATsuccess] = ACTIONS(7854), + [anon_sym_ATfinished] = ACTIONS(7856), + [anon_sym_ATpersist] = ACTIONS(7858), + [anon_sym_ATteleport] = ACTIONS(7860), + [anon_sym_ATvolt] = ACTIONS(7862), + [aux_sym__text_token1] = ACTIONS(7864), + [aux_sym__text_token2] = ACTIONS(7864), + [aux_sym__text_token3] = ACTIONS(7866), }, [621] = { - [sym__definition] = STATE(633), - [sym_comment] = STATE(633), - [sym_keyword] = STATE(633), - [sym_php_statement] = STATE(633), - [sym__escaped] = STATE(2475), - [sym__unescaped] = STATE(2475), - [sym__raw] = STATE(2475), - [sym__inline_raw] = STATE(2475), - [sym__multi_line_raw] = STATE(2475), - [sym_attribute] = STATE(633), - [sym__inline_directive] = STATE(633), - [sym__nested_directive] = STATE(633), - [sym_fragment] = STATE(633), - [sym_section] = STATE(633), - [sym_inlineSection] = STATE(633), - [sym_once] = STATE(633), - [sym_verbatim] = STATE(633), - [sym_stack] = STATE(633), - [sym__push] = STATE(2476), - [sym__pushOnce] = STATE(2476), - [sym__pushIf] = STATE(2476), - [sym__prepend] = STATE(2476), - [sym__prependOnce] = STATE(2476), - [sym_conditional] = STATE(633), - [sym__if] = STATE(2477), - [sym__unless] = STATE(2477), - [sym__isset] = STATE(2477), - [sym__empty] = STATE(2477), - [sym__auth] = STATE(2477), - [sym__guest] = STATE(2477), - [sym__production] = STATE(2477), - [sym__env] = STATE(2477), - [sym__hasSection] = STATE(2477), - [sym__sectionMissing] = STATE(2477), - [sym__error] = STATE(2477), - [sym_authorization] = STATE(2477), - [sym__can] = STATE(2478), - [sym__cannot] = STATE(2478), - [sym__canany] = STATE(2478), - [sym__feature] = STATE(2477), - [sym__custom] = STATE(2477), - [sym_switch] = STATE(633), - [sym_loop] = STATE(633), - [sym_loop_operator] = STATE(633), - [sym__for] = STATE(2479), - [sym__foreach] = STATE(2479), - [sym__forelse] = STATE(2479), - [sym__while] = STATE(2479), - [sym_envoy] = STATE(633), - [sym__setup] = STATE(2475), - [sym__task] = STATE(2480), - [sym__story] = STATE(2480), - [sym__hooks] = STATE(2475), - [sym__before] = STATE(2475), - [sym__after] = STATE(2475), - [sym__envoy_error] = STATE(2475), - [sym__success] = STATE(2475), - [sym__finished] = STATE(2475), - [sym_livewire] = STATE(633), - [sym__persist] = STATE(2481), - [sym__teleport] = STATE(2481), - [sym__volt] = STATE(2481), - [aux_sym__directive_body] = STATE(633), - [sym_text] = STATE(633), - [sym__text] = STATE(976), - [aux_sym_php_only_repeat1] = STATE(976), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7262), - [aux_sym_keyword_token1] = ACTIONS(7264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7266), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7268), - [anon_sym_ATphp] = ACTIONS(7270), - [aux_sym_attribute_token1] = ACTIONS(7272), - [aux_sym__inline_directive_token1] = ACTIONS(7274), - [anon_sym_ATfragment] = ACTIONS(7276), - [anon_sym_ATsection] = ACTIONS(7278), - [anon_sym_ATonce] = ACTIONS(7280), - [anon_sym_ATverbatim] = ACTIONS(7282), - [anon_sym_ATpush] = ACTIONS(7284), - [anon_sym_ATpushOnce] = ACTIONS(7286), - [anon_sym_ATpushIf] = ACTIONS(7288), - [anon_sym_ATprepend] = ACTIONS(7290), - [anon_sym_ATprependOnce] = ACTIONS(7292), - [anon_sym_ATif] = ACTIONS(7294), - [anon_sym_ATunless] = ACTIONS(7296), - [anon_sym_ATisset] = ACTIONS(7298), - [anon_sym_ATempty] = ACTIONS(7300), - [anon_sym_ATauth] = ACTIONS(7302), - [anon_sym_ATguest] = ACTIONS(7304), - [anon_sym_ATproduction] = ACTIONS(7306), - [anon_sym_ATenv] = ACTIONS(7308), - [anon_sym_AThasSection] = ACTIONS(7310), - [anon_sym_ATsectionMissing] = ACTIONS(7312), - [anon_sym_ATerror] = ACTIONS(7314), - [anon_sym_ATcan] = ACTIONS(7316), - [anon_sym_ATcannot] = ACTIONS(7318), - [anon_sym_ATcanany] = ACTIONS(7320), - [anon_sym_ATfeature] = ACTIONS(7322), - [aux_sym__custom_token1] = ACTIONS(7324), - [aux_sym__custom_token2] = ACTIONS(7326), - [anon_sym_ATswitch] = ACTIONS(7328), - [aux_sym_loop_operator_token1] = ACTIONS(7330), - [anon_sym_ATfor] = ACTIONS(7332), - [anon_sym_ATforeach] = ACTIONS(7334), - [anon_sym_ATforelse] = ACTIONS(7336), - [anon_sym_ATwhile] = ACTIONS(7338), - [anon_sym_ATendwhile] = ACTIONS(4626), - [anon_sym_ATsetup] = ACTIONS(7340), - [anon_sym_ATtask] = ACTIONS(7342), - [anon_sym_ATstory] = ACTIONS(7344), - [anon_sym_ATbefore] = ACTIONS(7346), - [anon_sym_ATafter] = ACTIONS(7348), - [anon_sym_ATsuccess] = ACTIONS(7350), - [anon_sym_ATfinished] = ACTIONS(7352), - [anon_sym_ATpersist] = ACTIONS(7354), - [anon_sym_ATteleport] = ACTIONS(7356), - [anon_sym_ATvolt] = ACTIONS(7358), - [aux_sym__text_token1] = ACTIONS(7360), - [aux_sym__text_token2] = ACTIONS(7360), - [aux_sym__text_token3] = ACTIONS(7362), + [sym__definition] = STATE(431), + [sym_keyword] = STATE(431), + [sym_php_statement] = STATE(431), + [sym__escaped] = STATE(2175), + [sym__unescaped] = STATE(2175), + [sym__raw] = STATE(2175), + [sym__inline_raw] = STATE(2175), + [sym__multi_line_raw] = STATE(2175), + [sym_attribute] = STATE(431), + [sym__inline_directive] = STATE(431), + [sym__nested_directive] = STATE(431), + [sym_fragment] = STATE(431), + [sym_section] = STATE(431), + [sym_inlineSection] = STATE(431), + [sym_once] = STATE(431), + [sym_verbatim] = STATE(431), + [sym_stack] = STATE(431), + [sym__push] = STATE(2176), + [sym__pushOnce] = STATE(2176), + [sym__pushIf] = STATE(2176), + [sym__prepend] = STATE(2176), + [sym__prependOnce] = STATE(2176), + [sym_conditional] = STATE(431), + [sym__if] = STATE(2177), + [sym__unless] = STATE(2177), + [sym__isset] = STATE(2177), + [sym__empty] = STATE(2177), + [sym__auth] = STATE(2177), + [sym__guest] = STATE(2177), + [sym__production] = STATE(2177), + [sym__env] = STATE(2177), + [sym__hasSection] = STATE(2177), + [sym__sectionMissing] = STATE(2177), + [sym__error] = STATE(2177), + [sym_authorization] = STATE(2177), + [sym__can] = STATE(2178), + [sym__cannot] = STATE(2178), + [sym__canany] = STATE(2178), + [sym__feature] = STATE(2177), + [sym__custom] = STATE(2177), + [sym_switch] = STATE(431), + [sym_loop] = STATE(431), + [sym_loop_operator] = STATE(431), + [sym__for] = STATE(2179), + [sym__foreach] = STATE(2179), + [sym__forelse] = STATE(2179), + [sym__while] = STATE(2179), + [sym_envoy] = STATE(431), + [sym__setup] = STATE(2175), + [sym__task] = STATE(2180), + [sym__story] = STATE(2180), + [sym__hooks] = STATE(2175), + [sym__before] = STATE(2175), + [sym__after] = STATE(2175), + [sym__envoy_error] = STATE(2175), + [sym__success] = STATE(2175), + [sym__finished] = STATE(2175), + [sym_livewire] = STATE(431), + [sym__persist] = STATE(2181), + [sym__teleport] = STATE(2181), + [sym__volt] = STATE(2181), + [aux_sym__directive_body] = STATE(431), + [sym_text] = STATE(431), + [sym__text] = STATE(1001), + [aux_sym_php_only_repeat1] = STATE(1001), + [sym_comment] = ACTIONS(7892), + [aux_sym_keyword_token1] = ACTIONS(6168), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6170), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6172), + [anon_sym_ATphp] = ACTIONS(6174), + [aux_sym_attribute_token1] = ACTIONS(6176), + [aux_sym__inline_directive_token1] = ACTIONS(6178), + [anon_sym_ATfragment] = ACTIONS(6180), + [anon_sym_ATsection] = ACTIONS(6182), + [anon_sym_ATonce] = ACTIONS(6184), + [anon_sym_ATverbatim] = ACTIONS(6186), + [anon_sym_ATpush] = ACTIONS(6188), + [anon_sym_ATpushOnce] = ACTIONS(6190), + [anon_sym_ATpushIf] = ACTIONS(6192), + [anon_sym_ATprepend] = ACTIONS(6194), + [anon_sym_ATprependOnce] = ACTIONS(6196), + [anon_sym_ATif] = ACTIONS(6198), + [anon_sym_ATunless] = ACTIONS(6200), + [anon_sym_ATisset] = ACTIONS(6202), + [anon_sym_ATempty] = ACTIONS(6204), + [anon_sym_ATauth] = ACTIONS(6206), + [anon_sym_ATguest] = ACTIONS(6208), + [anon_sym_ATproduction] = ACTIONS(6210), + [anon_sym_ATenv] = ACTIONS(6212), + [anon_sym_AThasSection] = ACTIONS(6214), + [anon_sym_ATsectionMissing] = ACTIONS(6216), + [anon_sym_ATerror] = ACTIONS(6218), + [anon_sym_ATcan] = ACTIONS(6220), + [anon_sym_ATcannot] = ACTIONS(6222), + [anon_sym_ATcanany] = ACTIONS(6224), + [anon_sym_ATfeature] = ACTIONS(6226), + [aux_sym__custom_token1] = ACTIONS(6228), + [aux_sym__custom_token2] = ACTIONS(6230), + [anon_sym_ATswitch] = ACTIONS(6232), + [aux_sym_loop_operator_token1] = ACTIONS(6234), + [anon_sym_ATfor] = ACTIONS(6236), + [anon_sym_ATendfor] = ACTIONS(4609), + [anon_sym_ATforeach] = ACTIONS(6238), + [anon_sym_ATforelse] = ACTIONS(6240), + [anon_sym_ATwhile] = ACTIONS(6242), + [anon_sym_ATsetup] = ACTIONS(6244), + [anon_sym_ATtask] = ACTIONS(6246), + [anon_sym_ATstory] = ACTIONS(6248), + [anon_sym_ATbefore] = ACTIONS(6250), + [anon_sym_ATafter] = ACTIONS(6252), + [anon_sym_ATsuccess] = ACTIONS(6254), + [anon_sym_ATfinished] = ACTIONS(6256), + [anon_sym_ATpersist] = ACTIONS(6258), + [anon_sym_ATteleport] = ACTIONS(6260), + [anon_sym_ATvolt] = ACTIONS(6262), + [aux_sym__text_token1] = ACTIONS(6264), + [aux_sym__text_token2] = ACTIONS(6264), + [aux_sym__text_token3] = ACTIONS(6266), }, [622] = { [sym__definition] = STATE(622), - [sym_comment] = STATE(622), [sym_keyword] = STATE(622), [sym_php_statement] = STATE(622), - [sym__escaped] = STATE(2307), - [sym__unescaped] = STATE(2307), - [sym__raw] = STATE(2307), - [sym__inline_raw] = STATE(2307), - [sym__multi_line_raw] = STATE(2307), + [sym__escaped] = STATE(2257), + [sym__unescaped] = STATE(2257), + [sym__raw] = STATE(2257), + [sym__inline_raw] = STATE(2257), + [sym__multi_line_raw] = STATE(2257), [sym_attribute] = STATE(622), [sym__inline_directive] = STATE(622), [sym__nested_directive] = STATE(622), @@ -101745,118 +100622,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(622), [sym_verbatim] = STATE(622), [sym_stack] = STATE(622), - [sym__push] = STATE(2308), - [sym__pushOnce] = STATE(2308), - [sym__pushIf] = STATE(2308), - [sym__prepend] = STATE(2308), - [sym__prependOnce] = STATE(2308), + [sym__push] = STATE(2258), + [sym__pushOnce] = STATE(2258), + [sym__pushIf] = STATE(2258), + [sym__prepend] = STATE(2258), + [sym__prependOnce] = STATE(2258), [sym_conditional] = STATE(622), - [sym__if] = STATE(2309), - [sym__unless] = STATE(2309), - [sym__isset] = STATE(2309), - [sym__empty] = STATE(2309), - [sym__auth] = STATE(2309), - [sym__guest] = STATE(2309), - [sym__production] = STATE(2309), - [sym__env] = STATE(2309), - [sym__hasSection] = STATE(2309), - [sym__sectionMissing] = STATE(2309), - [sym__error] = STATE(2309), - [sym_authorization] = STATE(2309), - [sym__can] = STATE(2310), - [sym__cannot] = STATE(2310), - [sym__canany] = STATE(2310), - [sym__feature] = STATE(2309), - [sym__custom] = STATE(2309), + [sym__if] = STATE(2259), + [sym__unless] = STATE(2259), + [sym__isset] = STATE(2259), + [sym__empty] = STATE(2259), + [sym__auth] = STATE(2259), + [sym__guest] = STATE(2259), + [sym__production] = STATE(2259), + [sym__env] = STATE(2259), + [sym__hasSection] = STATE(2259), + [sym__sectionMissing] = STATE(2259), + [sym__error] = STATE(2259), + [sym_authorization] = STATE(2259), + [sym__can] = STATE(2260), + [sym__cannot] = STATE(2260), + [sym__canany] = STATE(2260), + [sym__feature] = STATE(2259), + [sym__custom] = STATE(2259), [sym_switch] = STATE(622), [sym_loop] = STATE(622), [sym_loop_operator] = STATE(622), - [sym__for] = STATE(2311), - [sym__foreach] = STATE(2311), - [sym__forelse] = STATE(2311), - [sym__while] = STATE(2311), + [sym__for] = STATE(2261), + [sym__foreach] = STATE(2261), + [sym__forelse] = STATE(2261), + [sym__while] = STATE(2261), [sym_envoy] = STATE(622), - [sym__setup] = STATE(2307), - [sym__task] = STATE(2312), - [sym__story] = STATE(2312), - [sym__hooks] = STATE(2307), - [sym__before] = STATE(2307), - [sym__after] = STATE(2307), - [sym__envoy_error] = STATE(2307), - [sym__success] = STATE(2307), - [sym__finished] = STATE(2307), + [sym__setup] = STATE(2257), + [sym__task] = STATE(2262), + [sym__story] = STATE(2262), + [sym__hooks] = STATE(2257), + [sym__before] = STATE(2257), + [sym__after] = STATE(2257), + [sym__envoy_error] = STATE(2257), + [sym__success] = STATE(2257), + [sym__finished] = STATE(2257), [sym_livewire] = STATE(622), - [sym__persist] = STATE(2313), - [sym__teleport] = STATE(2313), - [sym__volt] = STATE(2313), + [sym__persist] = STATE(2263), + [sym__teleport] = STATE(2263), + [sym__volt] = STATE(2263), [aux_sym__directive_body] = STATE(622), [sym_text] = STATE(622), - [sym__text] = STATE(984), - [aux_sym_php_only_repeat1] = STATE(984), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7366), - [aux_sym_keyword_token1] = ACTIONS(7369), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7372), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7375), - [anon_sym_ATphp] = ACTIONS(7378), - [aux_sym_attribute_token1] = ACTIONS(7381), - [aux_sym__inline_directive_token1] = ACTIONS(7384), - [anon_sym_ATfragment] = ACTIONS(7387), - [anon_sym_ATsection] = ACTIONS(7390), - [anon_sym_ATonce] = ACTIONS(7393), - [anon_sym_ATverbatim] = ACTIONS(7396), - [anon_sym_ATpush] = ACTIONS(7399), - [anon_sym_ATpushOnce] = ACTIONS(7402), - [anon_sym_ATpushIf] = ACTIONS(7405), - [anon_sym_ATprepend] = ACTIONS(7408), - [anon_sym_ATprependOnce] = ACTIONS(7411), - [anon_sym_ATif] = ACTIONS(7414), - [anon_sym_ATunless] = ACTIONS(7417), - [anon_sym_ATisset] = ACTIONS(7420), - [anon_sym_ATempty] = ACTIONS(7423), - [anon_sym_ATauth] = ACTIONS(7426), - [anon_sym_ATguest] = ACTIONS(7429), - [anon_sym_ATproduction] = ACTIONS(7432), - [anon_sym_ATenv] = ACTIONS(7435), - [anon_sym_AThasSection] = ACTIONS(7438), - [anon_sym_ATsectionMissing] = ACTIONS(7441), - [anon_sym_ATerror] = ACTIONS(7444), - [anon_sym_ATcan] = ACTIONS(7447), - [anon_sym_ATcannot] = ACTIONS(7450), - [anon_sym_ATcanany] = ACTIONS(7453), - [anon_sym_ATfeature] = ACTIONS(7456), - [aux_sym__custom_token1] = ACTIONS(7459), - [aux_sym__custom_token2] = ACTIONS(7462), - [anon_sym_ATswitch] = ACTIONS(7465), - [aux_sym_loop_operator_token1] = ACTIONS(7468), - [anon_sym_ATfor] = ACTIONS(7471), - [anon_sym_ATforeach] = ACTIONS(7474), - [anon_sym_ATendforeach] = ACTIONS(3925), - [anon_sym_ATforelse] = ACTIONS(7477), - [anon_sym_ATwhile] = ACTIONS(7480), - [anon_sym_ATsetup] = ACTIONS(7483), - [anon_sym_ATtask] = ACTIONS(7486), - [anon_sym_ATstory] = ACTIONS(7489), - [anon_sym_ATbefore] = ACTIONS(7492), - [anon_sym_ATafter] = ACTIONS(7495), - [anon_sym_ATsuccess] = ACTIONS(7498), - [anon_sym_ATfinished] = ACTIONS(7501), - [anon_sym_ATpersist] = ACTIONS(7504), - [anon_sym_ATteleport] = ACTIONS(7507), - [anon_sym_ATvolt] = ACTIONS(7510), - [aux_sym__text_token1] = ACTIONS(7513), - [aux_sym__text_token2] = ACTIONS(7513), - [aux_sym__text_token3] = ACTIONS(7516), + [sym__text] = STATE(995), + [aux_sym_php_only_repeat1] = STATE(995), + [sym_comment] = ACTIONS(7894), + [aux_sym_keyword_token1] = ACTIONS(7897), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7900), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7903), + [anon_sym_ATphp] = ACTIONS(7906), + [aux_sym_attribute_token1] = ACTIONS(7909), + [aux_sym__inline_directive_token1] = ACTIONS(7912), + [anon_sym_ATfragment] = ACTIONS(7915), + [anon_sym_ATsection] = ACTIONS(7918), + [anon_sym_ATonce] = ACTIONS(7921), + [anon_sym_ATverbatim] = ACTIONS(7924), + [anon_sym_ATpush] = ACTIONS(7927), + [anon_sym_ATpushOnce] = ACTIONS(7930), + [anon_sym_ATpushIf] = ACTIONS(7933), + [anon_sym_ATprepend] = ACTIONS(7936), + [anon_sym_ATprependOnce] = ACTIONS(7939), + [anon_sym_ATif] = ACTIONS(7942), + [anon_sym_ATunless] = ACTIONS(7945), + [anon_sym_ATisset] = ACTIONS(7948), + [anon_sym_ATempty] = ACTIONS(7951), + [anon_sym_ATauth] = ACTIONS(7954), + [anon_sym_ATguest] = ACTIONS(7957), + [anon_sym_ATproduction] = ACTIONS(7960), + [anon_sym_ATenv] = ACTIONS(7963), + [anon_sym_AThasSection] = ACTIONS(7966), + [anon_sym_ATsectionMissing] = ACTIONS(7969), + [anon_sym_ATerror] = ACTIONS(7972), + [anon_sym_ATcan] = ACTIONS(7975), + [anon_sym_ATcannot] = ACTIONS(7978), + [anon_sym_ATcanany] = ACTIONS(7981), + [anon_sym_ATfeature] = ACTIONS(7984), + [aux_sym__custom_token1] = ACTIONS(7987), + [aux_sym__custom_token2] = ACTIONS(7990), + [anon_sym_ATswitch] = ACTIONS(7993), + [aux_sym_loop_operator_token1] = ACTIONS(7996), + [anon_sym_ATfor] = ACTIONS(7999), + [anon_sym_ATforeach] = ACTIONS(8002), + [anon_sym_ATendforeach] = ACTIONS(5035), + [anon_sym_ATforelse] = ACTIONS(8005), + [anon_sym_ATwhile] = ACTIONS(8008), + [anon_sym_ATsetup] = ACTIONS(8011), + [anon_sym_ATtask] = ACTIONS(8014), + [anon_sym_ATstory] = ACTIONS(8017), + [anon_sym_ATbefore] = ACTIONS(8020), + [anon_sym_ATafter] = ACTIONS(8023), + [anon_sym_ATsuccess] = ACTIONS(8026), + [anon_sym_ATfinished] = ACTIONS(8029), + [anon_sym_ATpersist] = ACTIONS(8032), + [anon_sym_ATteleport] = ACTIONS(8035), + [anon_sym_ATvolt] = ACTIONS(8038), + [aux_sym__text_token1] = ACTIONS(8041), + [aux_sym__text_token2] = ACTIONS(8041), + [aux_sym__text_token3] = ACTIONS(8044), }, [623] = { [sym__definition] = STATE(618), - [sym_comment] = STATE(618), [sym_keyword] = STATE(618), [sym_php_statement] = STATE(618), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(618), [sym__inline_directive] = STATE(618), [sym__nested_directive] = STATE(618), @@ -101866,602 +100742,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(618), [sym_verbatim] = STATE(618), [sym_stack] = STATE(618), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(618), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(618), [sym_loop] = STATE(618), [sym_loop_operator] = STATE(618), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(618), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(618), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(618), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(618), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7519), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(8047), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(8049), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [624] = { - [sym__definition] = STATE(263), - [sym_comment] = STATE(263), - [sym_keyword] = STATE(263), - [sym_php_statement] = STATE(263), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), - [sym_attribute] = STATE(263), - [sym__inline_directive] = STATE(263), - [sym__nested_directive] = STATE(263), - [sym_fragment] = STATE(263), - [sym_section] = STATE(263), - [sym_inlineSection] = STATE(263), - [sym_once] = STATE(263), - [sym_verbatim] = STATE(263), - [sym_stack] = STATE(263), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), - [sym_conditional] = STATE(263), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), - [sym_switch] = STATE(263), - [sym_loop] = STATE(263), - [sym_loop_operator] = STATE(263), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), - [sym_envoy] = STATE(263), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), - [sym_livewire] = STATE(263), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), - [sym_text] = STATE(263), - [sym__text] = STATE(941), - [aux_sym_blade_repeat1] = STATE(263), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7519), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), + [sym__definition] = STATE(257), + [sym_keyword] = STATE(257), + [sym_php_statement] = STATE(257), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), + [sym_attribute] = STATE(257), + [sym__inline_directive] = STATE(257), + [sym__nested_directive] = STATE(257), + [sym_fragment] = STATE(257), + [sym_section] = STATE(257), + [sym_inlineSection] = STATE(257), + [sym_once] = STATE(257), + [sym_verbatim] = STATE(257), + [sym_stack] = STATE(257), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), + [sym_conditional] = STATE(257), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), + [sym_switch] = STATE(257), + [sym_loop] = STATE(257), + [sym_loop_operator] = STATE(257), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), + [sym_envoy] = STATE(257), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), + [sym_livewire] = STATE(257), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), + [sym_text] = STATE(257), + [sym__text] = STATE(949), + [aux_sym_blade_repeat1] = STATE(257), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(4001), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(8049), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [625] = { - [sym__definition] = STATE(627), - [sym_comment] = STATE(627), - [sym_keyword] = STATE(627), - [sym_php_statement] = STATE(627), - [sym__escaped] = STATE(2559), - [sym__unescaped] = STATE(2559), - [sym__raw] = STATE(2559), - [sym__inline_raw] = STATE(2559), - [sym__multi_line_raw] = STATE(2559), - [sym_attribute] = STATE(627), - [sym__inline_directive] = STATE(627), - [sym__nested_directive] = STATE(627), - [sym_fragment] = STATE(627), - [sym_section] = STATE(627), - [sym_inlineSection] = STATE(627), - [sym_once] = STATE(627), - [sym_verbatim] = STATE(627), - [sym_stack] = STATE(627), - [sym__push] = STATE(2560), - [sym__pushOnce] = STATE(2560), - [sym__pushIf] = STATE(2560), - [sym__prepend] = STATE(2560), - [sym__prependOnce] = STATE(2560), - [sym_conditional] = STATE(627), - [sym__if] = STATE(2561), - [sym__unless] = STATE(2561), - [sym__isset] = STATE(2561), - [sym__empty] = STATE(2561), - [sym__auth] = STATE(2561), - [sym__guest] = STATE(2561), - [sym__production] = STATE(2561), - [sym__env] = STATE(2561), - [sym__hasSection] = STATE(2561), - [sym__sectionMissing] = STATE(2561), - [sym__error] = STATE(2561), - [sym_authorization] = STATE(2561), - [sym__can] = STATE(2562), - [sym__cannot] = STATE(2562), - [sym__canany] = STATE(2562), - [sym__feature] = STATE(2561), - [sym__custom] = STATE(2561), - [sym_switch] = STATE(627), - [sym_loop] = STATE(627), - [sym_loop_operator] = STATE(627), - [sym__for] = STATE(2563), - [sym__foreach] = STATE(2563), - [sym__forelse] = STATE(2563), - [sym__while] = STATE(2563), - [sym_envoy] = STATE(627), - [sym__setup] = STATE(2559), - [sym__task] = STATE(2564), - [sym__story] = STATE(2564), - [sym__hooks] = STATE(2559), - [sym__before] = STATE(2559), - [sym__after] = STATE(2559), - [sym__envoy_error] = STATE(2559), - [sym__success] = STATE(2559), - [sym__finished] = STATE(2559), - [sym_livewire] = STATE(627), - [sym__persist] = STATE(2565), - [sym__teleport] = STATE(2565), - [sym__volt] = STATE(2565), - [aux_sym__directive_body] = STATE(627), - [sym_text] = STATE(627), - [sym__text] = STATE(972), - [aux_sym_php_only_repeat1] = STATE(972), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7521), - [aux_sym_keyword_token1] = ACTIONS(7523), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7525), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7527), - [anon_sym_ATphp] = ACTIONS(7529), - [aux_sym_attribute_token1] = ACTIONS(7531), - [aux_sym__inline_directive_token1] = ACTIONS(7533), - [anon_sym_ATfragment] = ACTIONS(7535), - [anon_sym_ATsection] = ACTIONS(7537), - [anon_sym_ATonce] = ACTIONS(7539), - [anon_sym_ATverbatim] = ACTIONS(7541), - [anon_sym_ATpush] = ACTIONS(7543), - [anon_sym_ATpushOnce] = ACTIONS(7545), - [anon_sym_ATpushIf] = ACTIONS(7547), - [anon_sym_ATprepend] = ACTIONS(7549), - [anon_sym_ATprependOnce] = ACTIONS(7551), - [anon_sym_ATif] = ACTIONS(7553), - [anon_sym_ATunless] = ACTIONS(7555), - [anon_sym_ATisset] = ACTIONS(7557), - [anon_sym_ATempty] = ACTIONS(7559), - [anon_sym_ATauth] = ACTIONS(7561), - [anon_sym_ATguest] = ACTIONS(7563), - [anon_sym_ATproduction] = ACTIONS(7565), - [anon_sym_ATenv] = ACTIONS(7567), - [anon_sym_AThasSection] = ACTIONS(7569), - [anon_sym_ATsectionMissing] = ACTIONS(7571), - [anon_sym_ATerror] = ACTIONS(7573), - [anon_sym_ATcan] = ACTIONS(7575), - [anon_sym_ATcannot] = ACTIONS(7577), - [anon_sym_ATcanany] = ACTIONS(7579), - [anon_sym_ATfeature] = ACTIONS(7581), - [aux_sym__custom_token1] = ACTIONS(7583), - [aux_sym__custom_token2] = ACTIONS(7585), - [anon_sym_ATswitch] = ACTIONS(7587), - [aux_sym_loop_operator_token1] = ACTIONS(7589), - [anon_sym_ATfor] = ACTIONS(7591), - [anon_sym_ATforeach] = ACTIONS(7593), - [anon_sym_ATforelse] = ACTIONS(7595), - [anon_sym_ATwhile] = ACTIONS(7597), - [anon_sym_ATsetup] = ACTIONS(7599), - [anon_sym_ATtask] = ACTIONS(7601), - [anon_sym_ATendtask] = ACTIONS(4712), - [anon_sym_ATstory] = ACTIONS(7603), - [anon_sym_ATbefore] = ACTIONS(7605), - [anon_sym_ATafter] = ACTIONS(7607), - [anon_sym_ATsuccess] = ACTIONS(7609), - [anon_sym_ATfinished] = ACTIONS(7611), - [anon_sym_ATpersist] = ACTIONS(7613), - [anon_sym_ATteleport] = ACTIONS(7615), - [anon_sym_ATvolt] = ACTIONS(7617), - [aux_sym__text_token1] = ACTIONS(7619), - [aux_sym__text_token2] = ACTIONS(7619), - [aux_sym__text_token3] = ACTIONS(7621), - }, - [626] = { - [sym__definition] = STATE(620), - [sym_comment] = STATE(620), - [sym_keyword] = STATE(620), - [sym_php_statement] = STATE(620), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(620), - [sym__inline_directive] = STATE(620), - [sym__nested_directive] = STATE(620), - [sym_fragment] = STATE(620), - [sym_section] = STATE(620), - [sym_inlineSection] = STATE(620), - [sym_once] = STATE(620), - [sym_verbatim] = STATE(620), - [sym_stack] = STATE(620), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(620), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(620), - [sym_loop] = STATE(620), - [sym_loop_operator] = STATE(620), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(620), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(620), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(620), - [sym_text] = STATE(620), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7623), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), - }, - [627] = { - [sym__definition] = STATE(637), - [sym_comment] = STATE(637), - [sym_keyword] = STATE(637), - [sym_php_statement] = STATE(637), - [sym__escaped] = STATE(2559), - [sym__unescaped] = STATE(2559), - [sym__raw] = STATE(2559), - [sym__inline_raw] = STATE(2559), - [sym__multi_line_raw] = STATE(2559), - [sym_attribute] = STATE(637), - [sym__inline_directive] = STATE(637), - [sym__nested_directive] = STATE(637), - [sym_fragment] = STATE(637), - [sym_section] = STATE(637), - [sym_inlineSection] = STATE(637), - [sym_once] = STATE(637), - [sym_verbatim] = STATE(637), - [sym_stack] = STATE(637), - [sym__push] = STATE(2560), - [sym__pushOnce] = STATE(2560), - [sym__pushIf] = STATE(2560), - [sym__prepend] = STATE(2560), - [sym__prependOnce] = STATE(2560), - [sym_conditional] = STATE(637), - [sym__if] = STATE(2561), - [sym__unless] = STATE(2561), - [sym__isset] = STATE(2561), - [sym__empty] = STATE(2561), - [sym__auth] = STATE(2561), - [sym__guest] = STATE(2561), - [sym__production] = STATE(2561), - [sym__env] = STATE(2561), - [sym__hasSection] = STATE(2561), - [sym__sectionMissing] = STATE(2561), - [sym__error] = STATE(2561), - [sym_authorization] = STATE(2561), - [sym__can] = STATE(2562), - [sym__cannot] = STATE(2562), - [sym__canany] = STATE(2562), - [sym__feature] = STATE(2561), - [sym__custom] = STATE(2561), - [sym_switch] = STATE(637), - [sym_loop] = STATE(637), - [sym_loop_operator] = STATE(637), - [sym__for] = STATE(2563), - [sym__foreach] = STATE(2563), - [sym__forelse] = STATE(2563), - [sym__while] = STATE(2563), - [sym_envoy] = STATE(637), - [sym__setup] = STATE(2559), - [sym__task] = STATE(2564), - [sym__story] = STATE(2564), - [sym__hooks] = STATE(2559), - [sym__before] = STATE(2559), - [sym__after] = STATE(2559), - [sym__envoy_error] = STATE(2559), - [sym__success] = STATE(2559), - [sym__finished] = STATE(2559), - [sym_livewire] = STATE(637), - [sym__persist] = STATE(2565), - [sym__teleport] = STATE(2565), - [sym__volt] = STATE(2565), - [aux_sym__directive_body] = STATE(637), - [sym_text] = STATE(637), - [sym__text] = STATE(972), - [aux_sym_php_only_repeat1] = STATE(972), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7521), - [aux_sym_keyword_token1] = ACTIONS(7523), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7525), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7527), - [anon_sym_ATphp] = ACTIONS(7529), - [aux_sym_attribute_token1] = ACTIONS(7531), - [aux_sym__inline_directive_token1] = ACTIONS(7533), - [anon_sym_ATfragment] = ACTIONS(7535), - [anon_sym_ATsection] = ACTIONS(7537), - [anon_sym_ATonce] = ACTIONS(7539), - [anon_sym_ATverbatim] = ACTIONS(7541), - [anon_sym_ATpush] = ACTIONS(7543), - [anon_sym_ATpushOnce] = ACTIONS(7545), - [anon_sym_ATpushIf] = ACTIONS(7547), - [anon_sym_ATprepend] = ACTIONS(7549), - [anon_sym_ATprependOnce] = ACTIONS(7551), - [anon_sym_ATif] = ACTIONS(7553), - [anon_sym_ATunless] = ACTIONS(7555), - [anon_sym_ATisset] = ACTIONS(7557), - [anon_sym_ATempty] = ACTIONS(7559), - [anon_sym_ATauth] = ACTIONS(7561), - [anon_sym_ATguest] = ACTIONS(7563), - [anon_sym_ATproduction] = ACTIONS(7565), - [anon_sym_ATenv] = ACTIONS(7567), - [anon_sym_AThasSection] = ACTIONS(7569), - [anon_sym_ATsectionMissing] = ACTIONS(7571), - [anon_sym_ATerror] = ACTIONS(7573), - [anon_sym_ATcan] = ACTIONS(7575), - [anon_sym_ATcannot] = ACTIONS(7577), - [anon_sym_ATcanany] = ACTIONS(7579), - [anon_sym_ATfeature] = ACTIONS(7581), - [aux_sym__custom_token1] = ACTIONS(7583), - [aux_sym__custom_token2] = ACTIONS(7585), - [anon_sym_ATswitch] = ACTIONS(7587), - [aux_sym_loop_operator_token1] = ACTIONS(7589), - [anon_sym_ATfor] = ACTIONS(7591), - [anon_sym_ATforeach] = ACTIONS(7593), - [anon_sym_ATforelse] = ACTIONS(7595), - [anon_sym_ATwhile] = ACTIONS(7597), - [anon_sym_ATsetup] = ACTIONS(7599), - [anon_sym_ATtask] = ACTIONS(7601), - [anon_sym_ATendtask] = ACTIONS(4626), - [anon_sym_ATstory] = ACTIONS(7603), - [anon_sym_ATbefore] = ACTIONS(7605), - [anon_sym_ATafter] = ACTIONS(7607), - [anon_sym_ATsuccess] = ACTIONS(7609), - [anon_sym_ATfinished] = ACTIONS(7611), - [anon_sym_ATpersist] = ACTIONS(7613), - [anon_sym_ATteleport] = ACTIONS(7615), - [anon_sym_ATvolt] = ACTIONS(7617), - [aux_sym__text_token1] = ACTIONS(7619), - [aux_sym__text_token2] = ACTIONS(7619), - [aux_sym__text_token3] = ACTIONS(7621), - }, - [628] = { [sym__definition] = STATE(628), - [sym_comment] = STATE(628), [sym_keyword] = STATE(628), [sym_php_statement] = STATE(628), - [sym__escaped] = STATE(2391), - [sym__unescaped] = STATE(2391), - [sym__raw] = STATE(2391), - [sym__inline_raw] = STATE(2391), - [sym__multi_line_raw] = STATE(2391), + [sym__escaped] = STATE(2503), + [sym__unescaped] = STATE(2503), + [sym__raw] = STATE(2503), + [sym__inline_raw] = STATE(2503), + [sym__multi_line_raw] = STATE(2503), [sym_attribute] = STATE(628), [sym__inline_directive] = STATE(628), [sym__nested_directive] = STATE(628), @@ -102471,118 +100982,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(628), [sym_verbatim] = STATE(628), [sym_stack] = STATE(628), - [sym__push] = STATE(2392), - [sym__pushOnce] = STATE(2392), - [sym__pushIf] = STATE(2392), - [sym__prepend] = STATE(2392), - [sym__prependOnce] = STATE(2392), + [sym__push] = STATE(2504), + [sym__pushOnce] = STATE(2504), + [sym__pushIf] = STATE(2504), + [sym__prepend] = STATE(2504), + [sym__prependOnce] = STATE(2504), [sym_conditional] = STATE(628), - [sym__if] = STATE(2393), - [sym__unless] = STATE(2393), - [sym__isset] = STATE(2393), - [sym__empty] = STATE(2393), - [sym__auth] = STATE(2393), - [sym__guest] = STATE(2393), - [sym__production] = STATE(2393), - [sym__env] = STATE(2393), - [sym__hasSection] = STATE(2393), - [sym__sectionMissing] = STATE(2393), - [sym__error] = STATE(2393), - [sym_authorization] = STATE(2393), - [sym__can] = STATE(2394), - [sym__cannot] = STATE(2394), - [sym__canany] = STATE(2394), - [sym__feature] = STATE(2393), - [sym__custom] = STATE(2393), + [sym__if] = STATE(2505), + [sym__unless] = STATE(2505), + [sym__isset] = STATE(2505), + [sym__empty] = STATE(2505), + [sym__auth] = STATE(2505), + [sym__guest] = STATE(2505), + [sym__production] = STATE(2505), + [sym__env] = STATE(2505), + [sym__hasSection] = STATE(2505), + [sym__sectionMissing] = STATE(2505), + [sym__error] = STATE(2505), + [sym_authorization] = STATE(2505), + [sym__can] = STATE(2506), + [sym__cannot] = STATE(2506), + [sym__canany] = STATE(2506), + [sym__feature] = STATE(2505), + [sym__custom] = STATE(2505), [sym_switch] = STATE(628), [sym_loop] = STATE(628), [sym_loop_operator] = STATE(628), - [sym__for] = STATE(2395), - [sym__foreach] = STATE(2395), - [sym__forelse] = STATE(2395), - [sym__while] = STATE(2395), + [sym__for] = STATE(2507), + [sym__foreach] = STATE(2507), + [sym__forelse] = STATE(2507), + [sym__while] = STATE(2507), [sym_envoy] = STATE(628), - [sym__setup] = STATE(2391), - [sym__task] = STATE(2396), - [sym__story] = STATE(2396), - [sym__hooks] = STATE(2391), - [sym__before] = STATE(2391), - [sym__after] = STATE(2391), - [sym__envoy_error] = STATE(2391), - [sym__success] = STATE(2391), - [sym__finished] = STATE(2391), + [sym__setup] = STATE(2503), + [sym__task] = STATE(2508), + [sym__story] = STATE(2508), + [sym__hooks] = STATE(2503), + [sym__before] = STATE(2503), + [sym__after] = STATE(2503), + [sym__envoy_error] = STATE(2503), + [sym__success] = STATE(2503), + [sym__finished] = STATE(2503), [sym_livewire] = STATE(628), - [sym__persist] = STATE(2397), - [sym__teleport] = STATE(2397), - [sym__volt] = STATE(2397), + [sym__persist] = STATE(2509), + [sym__teleport] = STATE(2509), + [sym__volt] = STATE(2509), [aux_sym__directive_body] = STATE(628), [sym_text] = STATE(628), - [sym__text] = STATE(980), - [aux_sym_php_only_repeat1] = STATE(980), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7625), - [aux_sym_keyword_token1] = ACTIONS(7628), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7631), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7634), - [anon_sym_ATphp] = ACTIONS(7637), - [aux_sym_attribute_token1] = ACTIONS(7640), - [aux_sym__inline_directive_token1] = ACTIONS(7643), - [anon_sym_ATfragment] = ACTIONS(7646), - [anon_sym_ATsection] = ACTIONS(7649), - [anon_sym_ATonce] = ACTIONS(7652), - [anon_sym_ATverbatim] = ACTIONS(7655), - [anon_sym_ATpush] = ACTIONS(7658), - [anon_sym_ATpushOnce] = ACTIONS(7661), - [anon_sym_ATpushIf] = ACTIONS(7664), - [anon_sym_ATprepend] = ACTIONS(7667), - [anon_sym_ATprependOnce] = ACTIONS(7670), - [anon_sym_ATif] = ACTIONS(7673), - [anon_sym_ATunless] = ACTIONS(7676), - [anon_sym_ATisset] = ACTIONS(7679), - [anon_sym_ATempty] = ACTIONS(7682), - [anon_sym_ATauth] = ACTIONS(7685), - [anon_sym_ATguest] = ACTIONS(7688), - [anon_sym_ATproduction] = ACTIONS(7691), - [anon_sym_ATenv] = ACTIONS(7694), - [anon_sym_AThasSection] = ACTIONS(7697), - [anon_sym_ATsectionMissing] = ACTIONS(7700), - [anon_sym_ATerror] = ACTIONS(7703), - [anon_sym_ATcan] = ACTIONS(7706), - [anon_sym_ATcannot] = ACTIONS(7709), - [anon_sym_ATcanany] = ACTIONS(7712), - [anon_sym_ATfeature] = ACTIONS(7715), - [aux_sym__custom_token1] = ACTIONS(7718), - [aux_sym__custom_token2] = ACTIONS(7721), - [anon_sym_ATswitch] = ACTIONS(7724), - [aux_sym_loop_operator_token1] = ACTIONS(7727), - [anon_sym_ATfor] = ACTIONS(7730), - [anon_sym_ATforeach] = ACTIONS(7733), - [anon_sym_ATforelse] = ACTIONS(7736), - [anon_sym_ATendforelse] = ACTIONS(3925), - [anon_sym_ATwhile] = ACTIONS(7739), - [anon_sym_ATsetup] = ACTIONS(7742), - [anon_sym_ATtask] = ACTIONS(7745), - [anon_sym_ATstory] = ACTIONS(7748), - [anon_sym_ATbefore] = ACTIONS(7751), - [anon_sym_ATafter] = ACTIONS(7754), - [anon_sym_ATsuccess] = ACTIONS(7757), - [anon_sym_ATfinished] = ACTIONS(7760), - [anon_sym_ATpersist] = ACTIONS(7763), - [anon_sym_ATteleport] = ACTIONS(7766), - [anon_sym_ATvolt] = ACTIONS(7769), - [aux_sym__text_token1] = ACTIONS(7772), - [aux_sym__text_token2] = ACTIONS(7772), - [aux_sym__text_token3] = ACTIONS(7775), + [sym__text] = STATE(982), + [aux_sym_php_only_repeat1] = STATE(982), + [sym_comment] = ACTIONS(8051), + [aux_sym_keyword_token1] = ACTIONS(8053), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8055), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8057), + [anon_sym_ATphp] = ACTIONS(8059), + [aux_sym_attribute_token1] = ACTIONS(8061), + [aux_sym__inline_directive_token1] = ACTIONS(8063), + [anon_sym_ATfragment] = ACTIONS(8065), + [anon_sym_ATsection] = ACTIONS(8067), + [anon_sym_ATonce] = ACTIONS(8069), + [anon_sym_ATverbatim] = ACTIONS(8071), + [anon_sym_ATpush] = ACTIONS(8073), + [anon_sym_ATpushOnce] = ACTIONS(8075), + [anon_sym_ATpushIf] = ACTIONS(8077), + [anon_sym_ATprepend] = ACTIONS(8079), + [anon_sym_ATprependOnce] = ACTIONS(8081), + [anon_sym_ATif] = ACTIONS(8083), + [anon_sym_ATunless] = ACTIONS(8085), + [anon_sym_ATisset] = ACTIONS(8087), + [anon_sym_ATempty] = ACTIONS(8089), + [anon_sym_ATauth] = ACTIONS(8091), + [anon_sym_ATguest] = ACTIONS(8093), + [anon_sym_ATproduction] = ACTIONS(8095), + [anon_sym_ATenv] = ACTIONS(8097), + [anon_sym_AThasSection] = ACTIONS(8099), + [anon_sym_ATsectionMissing] = ACTIONS(8101), + [anon_sym_ATerror] = ACTIONS(8103), + [anon_sym_ATcan] = ACTIONS(8105), + [anon_sym_ATcannot] = ACTIONS(8107), + [anon_sym_ATcanany] = ACTIONS(8109), + [anon_sym_ATfeature] = ACTIONS(8111), + [aux_sym__custom_token1] = ACTIONS(8113), + [aux_sym__custom_token2] = ACTIONS(8115), + [anon_sym_ATswitch] = ACTIONS(8117), + [aux_sym_loop_operator_token1] = ACTIONS(8119), + [anon_sym_ATfor] = ACTIONS(8121), + [anon_sym_ATforeach] = ACTIONS(8123), + [anon_sym_ATforelse] = ACTIONS(8125), + [anon_sym_ATwhile] = ACTIONS(8127), + [anon_sym_ATsetup] = ACTIONS(8129), + [anon_sym_ATtask] = ACTIONS(8131), + [anon_sym_ATendtask] = ACTIONS(4609), + [anon_sym_ATstory] = ACTIONS(8133), + [anon_sym_ATbefore] = ACTIONS(8135), + [anon_sym_ATafter] = ACTIONS(8137), + [anon_sym_ATsuccess] = ACTIONS(8139), + [anon_sym_ATfinished] = ACTIONS(8141), + [anon_sym_ATpersist] = ACTIONS(8143), + [anon_sym_ATteleport] = ACTIONS(8145), + [anon_sym_ATvolt] = ACTIONS(8147), + [aux_sym__text_token1] = ACTIONS(8149), + [aux_sym__text_token2] = ACTIONS(8149), + [aux_sym__text_token3] = ACTIONS(8151), + }, + [626] = { + [sym__definition] = STATE(619), + [sym_keyword] = STATE(619), + [sym_php_statement] = STATE(619), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(619), + [sym__inline_directive] = STATE(619), + [sym__nested_directive] = STATE(619), + [sym_fragment] = STATE(619), + [sym_section] = STATE(619), + [sym_inlineSection] = STATE(619), + [sym_once] = STATE(619), + [sym_verbatim] = STATE(619), + [sym_stack] = STATE(619), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(619), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(619), + [sym_loop] = STATE(619), + [sym_loop_operator] = STATE(619), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(619), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(619), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(619), + [sym_text] = STATE(619), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(8153), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(8155), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), + }, + [627] = { + [sym__definition] = STATE(646), + [sym_keyword] = STATE(646), + [sym_php_statement] = STATE(646), + [sym__escaped] = STATE(2024), + [sym__unescaped] = STATE(2024), + [sym__raw] = STATE(2024), + [sym__inline_raw] = STATE(2024), + [sym__multi_line_raw] = STATE(2024), + [sym_attribute] = STATE(646), + [sym__inline_directive] = STATE(646), + [sym__nested_directive] = STATE(646), + [sym_fragment] = STATE(646), + [sym_section] = STATE(646), + [sym_inlineSection] = STATE(646), + [sym_once] = STATE(646), + [sym_verbatim] = STATE(646), + [sym_stack] = STATE(646), + [sym__push] = STATE(2023), + [sym__pushOnce] = STATE(2023), + [sym__pushIf] = STATE(2023), + [sym__prepend] = STATE(2023), + [sym__prependOnce] = STATE(2023), + [sym_conditional] = STATE(646), + [sym__if] = STATE(2022), + [sym__unless] = STATE(2022), + [sym__isset] = STATE(2022), + [sym__empty] = STATE(2022), + [sym__auth] = STATE(2022), + [sym__guest] = STATE(2022), + [sym__production] = STATE(2022), + [sym__env] = STATE(2022), + [sym__hasSection] = STATE(2022), + [sym__sectionMissing] = STATE(2022), + [sym__error] = STATE(2022), + [sym_authorization] = STATE(2022), + [sym__can] = STATE(2021), + [sym__cannot] = STATE(2021), + [sym__canany] = STATE(2021), + [sym__feature] = STATE(2022), + [sym__custom] = STATE(2022), + [sym_switch] = STATE(646), + [sym_loop] = STATE(646), + [sym_loop_operator] = STATE(646), + [sym__for] = STATE(2020), + [sym__foreach] = STATE(2020), + [sym__forelse] = STATE(2020), + [sym__while] = STATE(2020), + [sym_envoy] = STATE(646), + [sym__setup] = STATE(2024), + [sym__task] = STATE(2019), + [sym__story] = STATE(2019), + [sym__hooks] = STATE(2024), + [sym__before] = STATE(2024), + [sym__after] = STATE(2024), + [sym__envoy_error] = STATE(2024), + [sym__success] = STATE(2024), + [sym__finished] = STATE(2024), + [sym_livewire] = STATE(646), + [sym__persist] = STATE(2018), + [sym__teleport] = STATE(2018), + [sym__volt] = STATE(2018), + [aux_sym__directive_body] = STATE(646), + [sym_text] = STATE(646), + [sym__text] = STATE(1258), + [aux_sym_php_only_repeat1] = STATE(1258), + [sym_comment] = ACTIONS(8157), + [aux_sym_keyword_token1] = ACTIONS(8159), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8161), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8163), + [anon_sym_ATphp] = ACTIONS(8165), + [aux_sym_attribute_token1] = ACTIONS(8167), + [aux_sym__inline_directive_token1] = ACTIONS(8169), + [anon_sym_ATfragment] = ACTIONS(8171), + [anon_sym_ATsection] = ACTIONS(8173), + [anon_sym_ATonce] = ACTIONS(8175), + [anon_sym_ATverbatim] = ACTIONS(8177), + [anon_sym_ATpush] = ACTIONS(8179), + [anon_sym_ATpushOnce] = ACTIONS(8181), + [anon_sym_ATpushIf] = ACTIONS(8183), + [anon_sym_ATprepend] = ACTIONS(8185), + [anon_sym_ATprependOnce] = ACTIONS(8187), + [anon_sym_ATendPrependOnce] = ACTIONS(4609), + [anon_sym_ATif] = ACTIONS(8189), + [anon_sym_ATunless] = ACTIONS(8191), + [anon_sym_ATisset] = ACTIONS(8193), + [anon_sym_ATempty] = ACTIONS(8195), + [anon_sym_ATauth] = ACTIONS(8197), + [anon_sym_ATguest] = ACTIONS(8199), + [anon_sym_ATproduction] = ACTIONS(8201), + [anon_sym_ATenv] = ACTIONS(8203), + [anon_sym_AThasSection] = ACTIONS(8205), + [anon_sym_ATsectionMissing] = ACTIONS(8207), + [anon_sym_ATerror] = ACTIONS(8209), + [anon_sym_ATcan] = ACTIONS(8211), + [anon_sym_ATcannot] = ACTIONS(8213), + [anon_sym_ATcanany] = ACTIONS(8215), + [anon_sym_ATfeature] = ACTIONS(8217), + [aux_sym__custom_token1] = ACTIONS(8219), + [aux_sym__custom_token2] = ACTIONS(8221), + [anon_sym_ATswitch] = ACTIONS(8223), + [aux_sym_loop_operator_token1] = ACTIONS(8225), + [anon_sym_ATfor] = ACTIONS(8227), + [anon_sym_ATforeach] = ACTIONS(8229), + [anon_sym_ATforelse] = ACTIONS(8231), + [anon_sym_ATwhile] = ACTIONS(8233), + [anon_sym_ATsetup] = ACTIONS(8235), + [anon_sym_ATtask] = ACTIONS(8237), + [anon_sym_ATstory] = ACTIONS(8239), + [anon_sym_ATbefore] = ACTIONS(8241), + [anon_sym_ATafter] = ACTIONS(8243), + [anon_sym_ATsuccess] = ACTIONS(8245), + [anon_sym_ATfinished] = ACTIONS(8247), + [anon_sym_ATpersist] = ACTIONS(8249), + [anon_sym_ATteleport] = ACTIONS(8251), + [anon_sym_ATvolt] = ACTIONS(8253), + [aux_sym__text_token1] = ACTIONS(8255), + [aux_sym__text_token2] = ACTIONS(8255), + [aux_sym__text_token3] = ACTIONS(8257), + }, + [628] = { + [sym__definition] = STATE(639), + [sym_keyword] = STATE(639), + [sym_php_statement] = STATE(639), + [sym__escaped] = STATE(2503), + [sym__unescaped] = STATE(2503), + [sym__raw] = STATE(2503), + [sym__inline_raw] = STATE(2503), + [sym__multi_line_raw] = STATE(2503), + [sym_attribute] = STATE(639), + [sym__inline_directive] = STATE(639), + [sym__nested_directive] = STATE(639), + [sym_fragment] = STATE(639), + [sym_section] = STATE(639), + [sym_inlineSection] = STATE(639), + [sym_once] = STATE(639), + [sym_verbatim] = STATE(639), + [sym_stack] = STATE(639), + [sym__push] = STATE(2504), + [sym__pushOnce] = STATE(2504), + [sym__pushIf] = STATE(2504), + [sym__prepend] = STATE(2504), + [sym__prependOnce] = STATE(2504), + [sym_conditional] = STATE(639), + [sym__if] = STATE(2505), + [sym__unless] = STATE(2505), + [sym__isset] = STATE(2505), + [sym__empty] = STATE(2505), + [sym__auth] = STATE(2505), + [sym__guest] = STATE(2505), + [sym__production] = STATE(2505), + [sym__env] = STATE(2505), + [sym__hasSection] = STATE(2505), + [sym__sectionMissing] = STATE(2505), + [sym__error] = STATE(2505), + [sym_authorization] = STATE(2505), + [sym__can] = STATE(2506), + [sym__cannot] = STATE(2506), + [sym__canany] = STATE(2506), + [sym__feature] = STATE(2505), + [sym__custom] = STATE(2505), + [sym_switch] = STATE(639), + [sym_loop] = STATE(639), + [sym_loop_operator] = STATE(639), + [sym__for] = STATE(2507), + [sym__foreach] = STATE(2507), + [sym__forelse] = STATE(2507), + [sym__while] = STATE(2507), + [sym_envoy] = STATE(639), + [sym__setup] = STATE(2503), + [sym__task] = STATE(2508), + [sym__story] = STATE(2508), + [sym__hooks] = STATE(2503), + [sym__before] = STATE(2503), + [sym__after] = STATE(2503), + [sym__envoy_error] = STATE(2503), + [sym__success] = STATE(2503), + [sym__finished] = STATE(2503), + [sym_livewire] = STATE(639), + [sym__persist] = STATE(2509), + [sym__teleport] = STATE(2509), + [sym__volt] = STATE(2509), + [aux_sym__directive_body] = STATE(639), + [sym_text] = STATE(639), + [sym__text] = STATE(982), + [aux_sym_php_only_repeat1] = STATE(982), + [sym_comment] = ACTIONS(8259), + [aux_sym_keyword_token1] = ACTIONS(8053), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8055), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8057), + [anon_sym_ATphp] = ACTIONS(8059), + [aux_sym_attribute_token1] = ACTIONS(8061), + [aux_sym__inline_directive_token1] = ACTIONS(8063), + [anon_sym_ATfragment] = ACTIONS(8065), + [anon_sym_ATsection] = ACTIONS(8067), + [anon_sym_ATonce] = ACTIONS(8069), + [anon_sym_ATverbatim] = ACTIONS(8071), + [anon_sym_ATpush] = ACTIONS(8073), + [anon_sym_ATpushOnce] = ACTIONS(8075), + [anon_sym_ATpushIf] = ACTIONS(8077), + [anon_sym_ATprepend] = ACTIONS(8079), + [anon_sym_ATprependOnce] = ACTIONS(8081), + [anon_sym_ATif] = ACTIONS(8083), + [anon_sym_ATunless] = ACTIONS(8085), + [anon_sym_ATisset] = ACTIONS(8087), + [anon_sym_ATempty] = ACTIONS(8089), + [anon_sym_ATauth] = ACTIONS(8091), + [anon_sym_ATguest] = ACTIONS(8093), + [anon_sym_ATproduction] = ACTIONS(8095), + [anon_sym_ATenv] = ACTIONS(8097), + [anon_sym_AThasSection] = ACTIONS(8099), + [anon_sym_ATsectionMissing] = ACTIONS(8101), + [anon_sym_ATerror] = ACTIONS(8103), + [anon_sym_ATcan] = ACTIONS(8105), + [anon_sym_ATcannot] = ACTIONS(8107), + [anon_sym_ATcanany] = ACTIONS(8109), + [anon_sym_ATfeature] = ACTIONS(8111), + [aux_sym__custom_token1] = ACTIONS(8113), + [aux_sym__custom_token2] = ACTIONS(8115), + [anon_sym_ATswitch] = ACTIONS(8117), + [aux_sym_loop_operator_token1] = ACTIONS(8119), + [anon_sym_ATfor] = ACTIONS(8121), + [anon_sym_ATforeach] = ACTIONS(8123), + [anon_sym_ATforelse] = ACTIONS(8125), + [anon_sym_ATwhile] = ACTIONS(8127), + [anon_sym_ATsetup] = ACTIONS(8129), + [anon_sym_ATtask] = ACTIONS(8131), + [anon_sym_ATendtask] = ACTIONS(4996), + [anon_sym_ATstory] = ACTIONS(8133), + [anon_sym_ATbefore] = ACTIONS(8135), + [anon_sym_ATafter] = ACTIONS(8137), + [anon_sym_ATsuccess] = ACTIONS(8139), + [anon_sym_ATfinished] = ACTIONS(8141), + [anon_sym_ATpersist] = ACTIONS(8143), + [anon_sym_ATteleport] = ACTIONS(8145), + [anon_sym_ATvolt] = ACTIONS(8147), + [aux_sym__text_token1] = ACTIONS(8149), + [aux_sym__text_token2] = ACTIONS(8149), + [aux_sym__text_token3] = ACTIONS(8151), }, [629] = { + [sym__definition] = STATE(629), + [sym_keyword] = STATE(629), + [sym_php_statement] = STATE(629), + [sym__escaped] = STATE(2339), + [sym__unescaped] = STATE(2339), + [sym__raw] = STATE(2339), + [sym__inline_raw] = STATE(2339), + [sym__multi_line_raw] = STATE(2339), + [sym_attribute] = STATE(629), + [sym__inline_directive] = STATE(629), + [sym__nested_directive] = STATE(629), + [sym_fragment] = STATE(629), + [sym_section] = STATE(629), + [sym_inlineSection] = STATE(629), + [sym_once] = STATE(629), + [sym_verbatim] = STATE(629), + [sym_stack] = STATE(629), + [sym__push] = STATE(2340), + [sym__pushOnce] = STATE(2340), + [sym__pushIf] = STATE(2340), + [sym__prepend] = STATE(2340), + [sym__prependOnce] = STATE(2340), + [sym_conditional] = STATE(629), + [sym__if] = STATE(2341), + [sym__unless] = STATE(2341), + [sym__isset] = STATE(2341), + [sym__empty] = STATE(2341), + [sym__auth] = STATE(2341), + [sym__guest] = STATE(2341), + [sym__production] = STATE(2341), + [sym__env] = STATE(2341), + [sym__hasSection] = STATE(2341), + [sym__sectionMissing] = STATE(2341), + [sym__error] = STATE(2341), + [sym_authorization] = STATE(2341), + [sym__can] = STATE(2342), + [sym__cannot] = STATE(2342), + [sym__canany] = STATE(2342), + [sym__feature] = STATE(2341), + [sym__custom] = STATE(2341), + [sym_switch] = STATE(629), + [sym_loop] = STATE(629), + [sym_loop_operator] = STATE(629), + [sym__for] = STATE(2343), + [sym__foreach] = STATE(2343), + [sym__forelse] = STATE(2343), + [sym__while] = STATE(2343), + [sym_envoy] = STATE(629), + [sym__setup] = STATE(2339), + [sym__task] = STATE(2344), + [sym__story] = STATE(2344), + [sym__hooks] = STATE(2339), + [sym__before] = STATE(2339), + [sym__after] = STATE(2339), + [sym__envoy_error] = STATE(2339), + [sym__success] = STATE(2339), + [sym__finished] = STATE(2339), + [sym_livewire] = STATE(629), + [sym__persist] = STATE(2345), + [sym__teleport] = STATE(2345), + [sym__volt] = STATE(2345), + [aux_sym__directive_body] = STATE(629), + [sym_text] = STATE(629), + [sym__text] = STATE(991), + [aux_sym_php_only_repeat1] = STATE(991), + [sym_comment] = ACTIONS(8261), + [aux_sym_keyword_token1] = ACTIONS(8264), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8267), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8270), + [anon_sym_ATphp] = ACTIONS(8273), + [aux_sym_attribute_token1] = ACTIONS(8276), + [aux_sym__inline_directive_token1] = ACTIONS(8279), + [anon_sym_ATfragment] = ACTIONS(8282), + [anon_sym_ATsection] = ACTIONS(8285), + [anon_sym_ATonce] = ACTIONS(8288), + [anon_sym_ATverbatim] = ACTIONS(8291), + [anon_sym_ATpush] = ACTIONS(8294), + [anon_sym_ATpushOnce] = ACTIONS(8297), + [anon_sym_ATpushIf] = ACTIONS(8300), + [anon_sym_ATprepend] = ACTIONS(8303), + [anon_sym_ATprependOnce] = ACTIONS(8306), + [anon_sym_ATif] = ACTIONS(8309), + [anon_sym_ATunless] = ACTIONS(8312), + [anon_sym_ATisset] = ACTIONS(8315), + [anon_sym_ATempty] = ACTIONS(8318), + [anon_sym_ATauth] = ACTIONS(8321), + [anon_sym_ATguest] = ACTIONS(8324), + [anon_sym_ATproduction] = ACTIONS(8327), + [anon_sym_ATenv] = ACTIONS(8330), + [anon_sym_AThasSection] = ACTIONS(8333), + [anon_sym_ATsectionMissing] = ACTIONS(8336), + [anon_sym_ATerror] = ACTIONS(8339), + [anon_sym_ATcan] = ACTIONS(8342), + [anon_sym_ATcannot] = ACTIONS(8345), + [anon_sym_ATcanany] = ACTIONS(8348), + [anon_sym_ATfeature] = ACTIONS(8351), + [aux_sym__custom_token1] = ACTIONS(8354), + [aux_sym__custom_token2] = ACTIONS(8357), + [anon_sym_ATswitch] = ACTIONS(8360), + [aux_sym_loop_operator_token1] = ACTIONS(8363), + [anon_sym_ATfor] = ACTIONS(8366), + [anon_sym_ATforeach] = ACTIONS(8369), + [anon_sym_ATforelse] = ACTIONS(8372), + [anon_sym_ATendforelse] = ACTIONS(5035), + [anon_sym_ATwhile] = ACTIONS(8375), + [anon_sym_ATsetup] = ACTIONS(8378), + [anon_sym_ATtask] = ACTIONS(8381), + [anon_sym_ATstory] = ACTIONS(8384), + [anon_sym_ATbefore] = ACTIONS(8387), + [anon_sym_ATafter] = ACTIONS(8390), + [anon_sym_ATsuccess] = ACTIONS(8393), + [anon_sym_ATfinished] = ACTIONS(8396), + [anon_sym_ATpersist] = ACTIONS(8399), + [anon_sym_ATteleport] = ACTIONS(8402), + [anon_sym_ATvolt] = ACTIONS(8405), + [aux_sym__text_token1] = ACTIONS(8408), + [aux_sym__text_token2] = ACTIONS(8408), + [aux_sym__text_token3] = ACTIONS(8411), + }, + [630] = { + [sym__definition] = STATE(517), + [sym_keyword] = STATE(517), + [sym_php_statement] = STATE(517), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(517), + [sym__inline_directive] = STATE(517), + [sym__nested_directive] = STATE(517), + [sym_fragment] = STATE(517), + [sym_section] = STATE(517), + [sym_inlineSection] = STATE(517), + [sym_once] = STATE(517), + [sym_verbatim] = STATE(517), + [sym_stack] = STATE(517), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(517), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(517), + [sym_loop] = STATE(517), + [sym_loop_operator] = STATE(517), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(517), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(517), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(517), + [sym_text] = STATE(517), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(8414), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(8416), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [631] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -102592,118 +101702,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(7778), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(4319), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(8418), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, - [630] = { + [632] = { [sym__definition] = STATE(624), - [sym_comment] = STATE(624), [sym_keyword] = STATE(624), [sym_php_statement] = STATE(624), - [sym__escaped] = STATE(3063), - [sym__unescaped] = STATE(3063), - [sym__raw] = STATE(3063), - [sym__inline_raw] = STATE(3063), - [sym__multi_line_raw] = STATE(3063), + [sym__escaped] = STATE(2995), + [sym__unescaped] = STATE(2995), + [sym__raw] = STATE(2995), + [sym__inline_raw] = STATE(2995), + [sym__multi_line_raw] = STATE(2995), [sym_attribute] = STATE(624), [sym__inline_directive] = STATE(624), [sym__nested_directive] = STATE(624), @@ -102713,1449 +101822,1077 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(624), [sym_verbatim] = STATE(624), [sym_stack] = STATE(624), - [sym__push] = STATE(3064), - [sym__pushOnce] = STATE(3064), - [sym__pushIf] = STATE(3064), - [sym__prepend] = STATE(3064), - [sym__prependOnce] = STATE(3064), + [sym__push] = STATE(2996), + [sym__pushOnce] = STATE(2996), + [sym__pushIf] = STATE(2996), + [sym__prepend] = STATE(2996), + [sym__prependOnce] = STATE(2996), [sym_conditional] = STATE(624), - [sym__if] = STATE(3065), - [sym__unless] = STATE(3065), - [sym__isset] = STATE(3065), - [sym__empty] = STATE(3065), - [sym__auth] = STATE(3065), - [sym__guest] = STATE(3065), - [sym__production] = STATE(3065), - [sym__env] = STATE(3065), - [sym__hasSection] = STATE(3065), - [sym__sectionMissing] = STATE(3065), - [sym__error] = STATE(3065), - [sym_authorization] = STATE(3065), - [sym__can] = STATE(3066), - [sym__cannot] = STATE(3066), - [sym__canany] = STATE(3066), - [sym__feature] = STATE(3065), - [sym__custom] = STATE(3065), + [sym__if] = STATE(2997), + [sym__unless] = STATE(2997), + [sym__isset] = STATE(2997), + [sym__empty] = STATE(2997), + [sym__auth] = STATE(2997), + [sym__guest] = STATE(2997), + [sym__production] = STATE(2997), + [sym__env] = STATE(2997), + [sym__hasSection] = STATE(2997), + [sym__sectionMissing] = STATE(2997), + [sym__error] = STATE(2997), + [sym_authorization] = STATE(2997), + [sym__can] = STATE(2998), + [sym__cannot] = STATE(2998), + [sym__canany] = STATE(2998), + [sym__feature] = STATE(2997), + [sym__custom] = STATE(2997), [sym_switch] = STATE(624), [sym_loop] = STATE(624), [sym_loop_operator] = STATE(624), - [sym__for] = STATE(3067), - [sym__foreach] = STATE(3067), - [sym__forelse] = STATE(3067), - [sym__while] = STATE(3067), + [sym__for] = STATE(2999), + [sym__foreach] = STATE(2999), + [sym__forelse] = STATE(2999), + [sym__while] = STATE(2999), [sym_envoy] = STATE(624), - [sym__setup] = STATE(3063), - [sym__task] = STATE(3068), - [sym__story] = STATE(3068), - [sym__hooks] = STATE(3063), - [sym__before] = STATE(3063), - [sym__after] = STATE(3063), - [sym__envoy_error] = STATE(3063), - [sym__success] = STATE(3063), - [sym__finished] = STATE(3063), + [sym__setup] = STATE(2995), + [sym__task] = STATE(3000), + [sym__story] = STATE(3000), + [sym__hooks] = STATE(2995), + [sym__before] = STATE(2995), + [sym__after] = STATE(2995), + [sym__envoy_error] = STATE(2995), + [sym__success] = STATE(2995), + [sym__finished] = STATE(2995), [sym_livewire] = STATE(624), - [sym__persist] = STATE(3069), - [sym__teleport] = STATE(3069), - [sym__volt] = STATE(3069), + [sym__persist] = STATE(1935), + [sym__teleport] = STATE(1935), + [sym__volt] = STATE(1935), [sym_text] = STATE(624), - [sym__text] = STATE(941), + [sym__text] = STATE(949), [aux_sym_blade_repeat1] = STATE(624), - [aux_sym_php_only_repeat1] = STATE(941), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4266), - [aux_sym_keyword_token1] = ACTIONS(4268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4270), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4272), - [anon_sym_ATphp] = ACTIONS(4274), - [aux_sym_attribute_token1] = ACTIONS(4276), - [aux_sym__inline_directive_token1] = ACTIONS(4278), - [anon_sym_ATfragment] = ACTIONS(4280), - [anon_sym_ATsection] = ACTIONS(4282), - [anon_sym_ATonce] = ACTIONS(4284), - [anon_sym_ATverbatim] = ACTIONS(4286), - [anon_sym_ATpush] = ACTIONS(4288), - [anon_sym_ATpushOnce] = ACTIONS(4290), - [anon_sym_ATpushIf] = ACTIONS(4292), - [anon_sym_ATprepend] = ACTIONS(4294), - [anon_sym_ATprependOnce] = ACTIONS(4296), - [anon_sym_ATif] = ACTIONS(4298), - [anon_sym_ATunless] = ACTIONS(4300), - [anon_sym_ATisset] = ACTIONS(4302), - [anon_sym_ATempty] = ACTIONS(4304), - [anon_sym_ATauth] = ACTIONS(4306), - [anon_sym_ATguest] = ACTIONS(4308), - [anon_sym_ATproduction] = ACTIONS(4310), - [anon_sym_ATenv] = ACTIONS(4312), - [anon_sym_AThasSection] = ACTIONS(4314), - [anon_sym_ATsectionMissing] = ACTIONS(4316), - [anon_sym_ATerror] = ACTIONS(4318), - [anon_sym_ATcan] = ACTIONS(4320), - [anon_sym_ATcannot] = ACTIONS(4322), - [anon_sym_ATcanany] = ACTIONS(4324), - [anon_sym_ATfeature] = ACTIONS(4326), - [aux_sym__custom_token1] = ACTIONS(4328), - [aux_sym__custom_token2] = ACTIONS(4330), - [anon_sym_ATswitch] = ACTIONS(4332), - [anon_sym_ATendswitch] = ACTIONS(7780), - [aux_sym_loop_operator_token1] = ACTIONS(4336), - [anon_sym_ATfor] = ACTIONS(4338), - [anon_sym_ATforeach] = ACTIONS(4340), - [anon_sym_ATforelse] = ACTIONS(4342), - [anon_sym_ATwhile] = ACTIONS(4344), - [anon_sym_ATsetup] = ACTIONS(4346), - [anon_sym_ATtask] = ACTIONS(4348), - [anon_sym_ATstory] = ACTIONS(4350), - [anon_sym_ATbefore] = ACTIONS(4352), - [anon_sym_ATafter] = ACTIONS(4354), - [anon_sym_ATsuccess] = ACTIONS(4356), - [anon_sym_ATfinished] = ACTIONS(4358), - [anon_sym_ATpersist] = ACTIONS(4360), - [anon_sym_ATteleport] = ACTIONS(4362), - [anon_sym_ATvolt] = ACTIONS(4364), - [aux_sym__text_token1] = ACTIONS(4366), - [aux_sym__text_token2] = ACTIONS(4366), - [aux_sym__text_token3] = ACTIONS(4368), - }, - [631] = { - [sym__definition] = STATE(632), - [sym_comment] = STATE(632), - [sym_keyword] = STATE(632), - [sym_php_statement] = STATE(632), - [sym__escaped] = STATE(2643), - [sym__unescaped] = STATE(2643), - [sym__raw] = STATE(2643), - [sym__inline_raw] = STATE(2643), - [sym__multi_line_raw] = STATE(2643), - [sym_attribute] = STATE(632), - [sym__inline_directive] = STATE(632), - [sym__nested_directive] = STATE(632), - [sym_fragment] = STATE(632), - [sym_section] = STATE(632), - [sym_inlineSection] = STATE(632), - [sym_once] = STATE(632), - [sym_verbatim] = STATE(632), - [sym_stack] = STATE(632), - [sym__push] = STATE(2644), - [sym__pushOnce] = STATE(2644), - [sym__pushIf] = STATE(2644), - [sym__prepend] = STATE(2644), - [sym__prependOnce] = STATE(2644), - [sym_conditional] = STATE(632), - [sym__if] = STATE(2645), - [sym__unless] = STATE(2645), - [sym__isset] = STATE(2645), - [sym__empty] = STATE(2645), - [sym__auth] = STATE(2645), - [sym__guest] = STATE(2645), - [sym__production] = STATE(2645), - [sym__env] = STATE(2645), - [sym__hasSection] = STATE(2645), - [sym__sectionMissing] = STATE(2645), - [sym__error] = STATE(2645), - [sym_authorization] = STATE(2645), - [sym__can] = STATE(2646), - [sym__cannot] = STATE(2646), - [sym__canany] = STATE(2646), - [sym__feature] = STATE(2645), - [sym__custom] = STATE(2645), - [sym_switch] = STATE(632), - [sym_loop] = STATE(632), - [sym_loop_operator] = STATE(632), - [sym__for] = STATE(2647), - [sym__foreach] = STATE(2647), - [sym__forelse] = STATE(2647), - [sym__while] = STATE(2647), - [sym_envoy] = STATE(632), - [sym__setup] = STATE(2643), - [sym__task] = STATE(2648), - [sym__story] = STATE(2648), - [sym__hooks] = STATE(2643), - [sym__before] = STATE(2643), - [sym__after] = STATE(2643), - [sym__envoy_error] = STATE(2643), - [sym__success] = STATE(2643), - [sym__finished] = STATE(2643), - [sym_livewire] = STATE(632), - [sym__persist] = STATE(2649), - [sym__teleport] = STATE(2649), - [sym__volt] = STATE(2649), - [aux_sym__directive_body] = STATE(632), - [sym_text] = STATE(632), - [sym__text] = STATE(968), - [aux_sym_php_only_repeat1] = STATE(968), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7782), - [aux_sym_keyword_token1] = ACTIONS(7784), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7786), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7788), - [anon_sym_ATphp] = ACTIONS(7790), - [aux_sym_attribute_token1] = ACTIONS(7792), - [aux_sym__inline_directive_token1] = ACTIONS(7794), - [anon_sym_ATfragment] = ACTIONS(7796), - [anon_sym_ATsection] = ACTIONS(7798), - [anon_sym_ATonce] = ACTIONS(7800), - [anon_sym_ATverbatim] = ACTIONS(7802), - [anon_sym_ATpush] = ACTIONS(7804), - [anon_sym_ATpushOnce] = ACTIONS(7806), - [anon_sym_ATpushIf] = ACTIONS(7808), - [anon_sym_ATprepend] = ACTIONS(7810), - [anon_sym_ATprependOnce] = ACTIONS(7812), - [anon_sym_ATif] = ACTIONS(7814), - [anon_sym_ATunless] = ACTIONS(7816), - [anon_sym_ATisset] = ACTIONS(7818), - [anon_sym_ATempty] = ACTIONS(7820), - [anon_sym_ATauth] = ACTIONS(7822), - [anon_sym_ATguest] = ACTIONS(7824), - [anon_sym_ATproduction] = ACTIONS(7826), - [anon_sym_ATenv] = ACTIONS(7828), - [anon_sym_AThasSection] = ACTIONS(7830), - [anon_sym_ATsectionMissing] = ACTIONS(7832), - [anon_sym_ATerror] = ACTIONS(7834), - [anon_sym_ATcan] = ACTIONS(7836), - [anon_sym_ATcannot] = ACTIONS(7838), - [anon_sym_ATcanany] = ACTIONS(7840), - [anon_sym_ATfeature] = ACTIONS(7842), - [aux_sym__custom_token1] = ACTIONS(7844), - [aux_sym__custom_token2] = ACTIONS(7846), - [anon_sym_ATswitch] = ACTIONS(7848), - [aux_sym_loop_operator_token1] = ACTIONS(7850), - [anon_sym_ATfor] = ACTIONS(7852), - [anon_sym_ATforeach] = ACTIONS(7854), - [anon_sym_ATforelse] = ACTIONS(7856), - [anon_sym_ATwhile] = ACTIONS(7858), - [anon_sym_ATsetup] = ACTIONS(7860), - [anon_sym_ATtask] = ACTIONS(7862), - [anon_sym_ATstory] = ACTIONS(7864), - [anon_sym_ATendstory] = ACTIONS(4712), - [anon_sym_ATbefore] = ACTIONS(7866), - [anon_sym_ATafter] = ACTIONS(7868), - [anon_sym_ATsuccess] = ACTIONS(7870), - [anon_sym_ATfinished] = ACTIONS(7872), - [anon_sym_ATpersist] = ACTIONS(7874), - [anon_sym_ATteleport] = ACTIONS(7876), - [anon_sym_ATvolt] = ACTIONS(7878), - [aux_sym__text_token1] = ACTIONS(7880), - [aux_sym__text_token2] = ACTIONS(7880), - [aux_sym__text_token3] = ACTIONS(7882), - }, - [632] = { - [sym__definition] = STATE(642), - [sym_comment] = STATE(642), - [sym_keyword] = STATE(642), - [sym_php_statement] = STATE(642), - [sym__escaped] = STATE(2643), - [sym__unescaped] = STATE(2643), - [sym__raw] = STATE(2643), - [sym__inline_raw] = STATE(2643), - [sym__multi_line_raw] = STATE(2643), - [sym_attribute] = STATE(642), - [sym__inline_directive] = STATE(642), - [sym__nested_directive] = STATE(642), - [sym_fragment] = STATE(642), - [sym_section] = STATE(642), - [sym_inlineSection] = STATE(642), - [sym_once] = STATE(642), - [sym_verbatim] = STATE(642), - [sym_stack] = STATE(642), - [sym__push] = STATE(2644), - [sym__pushOnce] = STATE(2644), - [sym__pushIf] = STATE(2644), - [sym__prepend] = STATE(2644), - [sym__prependOnce] = STATE(2644), - [sym_conditional] = STATE(642), - [sym__if] = STATE(2645), - [sym__unless] = STATE(2645), - [sym__isset] = STATE(2645), - [sym__empty] = STATE(2645), - [sym__auth] = STATE(2645), - [sym__guest] = STATE(2645), - [sym__production] = STATE(2645), - [sym__env] = STATE(2645), - [sym__hasSection] = STATE(2645), - [sym__sectionMissing] = STATE(2645), - [sym__error] = STATE(2645), - [sym_authorization] = STATE(2645), - [sym__can] = STATE(2646), - [sym__cannot] = STATE(2646), - [sym__canany] = STATE(2646), - [sym__feature] = STATE(2645), - [sym__custom] = STATE(2645), - [sym_switch] = STATE(642), - [sym_loop] = STATE(642), - [sym_loop_operator] = STATE(642), - [sym__for] = STATE(2647), - [sym__foreach] = STATE(2647), - [sym__forelse] = STATE(2647), - [sym__while] = STATE(2647), - [sym_envoy] = STATE(642), - [sym__setup] = STATE(2643), - [sym__task] = STATE(2648), - [sym__story] = STATE(2648), - [sym__hooks] = STATE(2643), - [sym__before] = STATE(2643), - [sym__after] = STATE(2643), - [sym__envoy_error] = STATE(2643), - [sym__success] = STATE(2643), - [sym__finished] = STATE(2643), - [sym_livewire] = STATE(642), - [sym__persist] = STATE(2649), - [sym__teleport] = STATE(2649), - [sym__volt] = STATE(2649), - [aux_sym__directive_body] = STATE(642), - [sym_text] = STATE(642), - [sym__text] = STATE(968), - [aux_sym_php_only_repeat1] = STATE(968), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7782), - [aux_sym_keyword_token1] = ACTIONS(7784), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7786), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7788), - [anon_sym_ATphp] = ACTIONS(7790), - [aux_sym_attribute_token1] = ACTIONS(7792), - [aux_sym__inline_directive_token1] = ACTIONS(7794), - [anon_sym_ATfragment] = ACTIONS(7796), - [anon_sym_ATsection] = ACTIONS(7798), - [anon_sym_ATonce] = ACTIONS(7800), - [anon_sym_ATverbatim] = ACTIONS(7802), - [anon_sym_ATpush] = ACTIONS(7804), - [anon_sym_ATpushOnce] = ACTIONS(7806), - [anon_sym_ATpushIf] = ACTIONS(7808), - [anon_sym_ATprepend] = ACTIONS(7810), - [anon_sym_ATprependOnce] = ACTIONS(7812), - [anon_sym_ATif] = ACTIONS(7814), - [anon_sym_ATunless] = ACTIONS(7816), - [anon_sym_ATisset] = ACTIONS(7818), - [anon_sym_ATempty] = ACTIONS(7820), - [anon_sym_ATauth] = ACTIONS(7822), - [anon_sym_ATguest] = ACTIONS(7824), - [anon_sym_ATproduction] = ACTIONS(7826), - [anon_sym_ATenv] = ACTIONS(7828), - [anon_sym_AThasSection] = ACTIONS(7830), - [anon_sym_ATsectionMissing] = ACTIONS(7832), - [anon_sym_ATerror] = ACTIONS(7834), - [anon_sym_ATcan] = ACTIONS(7836), - [anon_sym_ATcannot] = ACTIONS(7838), - [anon_sym_ATcanany] = ACTIONS(7840), - [anon_sym_ATfeature] = ACTIONS(7842), - [aux_sym__custom_token1] = ACTIONS(7844), - [aux_sym__custom_token2] = ACTIONS(7846), - [anon_sym_ATswitch] = ACTIONS(7848), - [aux_sym_loop_operator_token1] = ACTIONS(7850), - [anon_sym_ATfor] = ACTIONS(7852), - [anon_sym_ATforeach] = ACTIONS(7854), - [anon_sym_ATforelse] = ACTIONS(7856), - [anon_sym_ATwhile] = ACTIONS(7858), - [anon_sym_ATsetup] = ACTIONS(7860), - [anon_sym_ATtask] = ACTIONS(7862), - [anon_sym_ATstory] = ACTIONS(7864), - [anon_sym_ATendstory] = ACTIONS(4626), - [anon_sym_ATbefore] = ACTIONS(7866), - [anon_sym_ATafter] = ACTIONS(7868), - [anon_sym_ATsuccess] = ACTIONS(7870), - [anon_sym_ATfinished] = ACTIONS(7872), - [anon_sym_ATpersist] = ACTIONS(7874), - [anon_sym_ATteleport] = ACTIONS(7876), - [anon_sym_ATvolt] = ACTIONS(7878), - [aux_sym__text_token1] = ACTIONS(7880), - [aux_sym__text_token2] = ACTIONS(7880), - [aux_sym__text_token3] = ACTIONS(7882), + [aux_sym_php_only_repeat1] = STATE(949), + [sym_comment] = ACTIONS(8420), + [aux_sym_keyword_token1] = ACTIONS(4003), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4005), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4007), + [anon_sym_ATphp] = ACTIONS(4009), + [aux_sym_attribute_token1] = ACTIONS(4011), + [aux_sym__inline_directive_token1] = ACTIONS(4013), + [anon_sym_ATfragment] = ACTIONS(4015), + [anon_sym_ATsection] = ACTIONS(4017), + [anon_sym_ATonce] = ACTIONS(4019), + [anon_sym_ATverbatim] = ACTIONS(4021), + [anon_sym_ATpush] = ACTIONS(4023), + [anon_sym_ATpushOnce] = ACTIONS(4025), + [anon_sym_ATpushIf] = ACTIONS(4027), + [anon_sym_ATprepend] = ACTIONS(4029), + [anon_sym_ATprependOnce] = ACTIONS(4031), + [anon_sym_ATif] = ACTIONS(4033), + [anon_sym_ATunless] = ACTIONS(4035), + [anon_sym_ATisset] = ACTIONS(4037), + [anon_sym_ATempty] = ACTIONS(4039), + [anon_sym_ATauth] = ACTIONS(4041), + [anon_sym_ATguest] = ACTIONS(4043), + [anon_sym_ATproduction] = ACTIONS(4045), + [anon_sym_ATenv] = ACTIONS(4047), + [anon_sym_AThasSection] = ACTIONS(4049), + [anon_sym_ATsectionMissing] = ACTIONS(4051), + [anon_sym_ATerror] = ACTIONS(4053), + [anon_sym_ATcan] = ACTIONS(4055), + [anon_sym_ATcannot] = ACTIONS(4057), + [anon_sym_ATcanany] = ACTIONS(4059), + [anon_sym_ATfeature] = ACTIONS(4061), + [aux_sym__custom_token1] = ACTIONS(4063), + [aux_sym__custom_token2] = ACTIONS(4065), + [anon_sym_ATswitch] = ACTIONS(4067), + [anon_sym_ATendswitch] = ACTIONS(8422), + [aux_sym_loop_operator_token1] = ACTIONS(4071), + [anon_sym_ATfor] = ACTIONS(4073), + [anon_sym_ATforeach] = ACTIONS(4075), + [anon_sym_ATforelse] = ACTIONS(4077), + [anon_sym_ATwhile] = ACTIONS(4079), + [anon_sym_ATsetup] = ACTIONS(4081), + [anon_sym_ATtask] = ACTIONS(4083), + [anon_sym_ATstory] = ACTIONS(4085), + [anon_sym_ATbefore] = ACTIONS(4087), + [anon_sym_ATafter] = ACTIONS(4089), + [anon_sym_ATsuccess] = ACTIONS(4091), + [anon_sym_ATfinished] = ACTIONS(4093), + [anon_sym_ATpersist] = ACTIONS(4095), + [anon_sym_ATteleport] = ACTIONS(4097), + [anon_sym_ATvolt] = ACTIONS(4099), + [aux_sym__text_token1] = ACTIONS(4101), + [aux_sym__text_token2] = ACTIONS(4101), + [aux_sym__text_token3] = ACTIONS(4103), }, [633] = { - [sym__definition] = STATE(633), - [sym_comment] = STATE(633), - [sym_keyword] = STATE(633), - [sym_php_statement] = STATE(633), - [sym__escaped] = STATE(2475), - [sym__unescaped] = STATE(2475), - [sym__raw] = STATE(2475), - [sym__inline_raw] = STATE(2475), - [sym__multi_line_raw] = STATE(2475), - [sym_attribute] = STATE(633), - [sym__inline_directive] = STATE(633), - [sym__nested_directive] = STATE(633), - [sym_fragment] = STATE(633), - [sym_section] = STATE(633), - [sym_inlineSection] = STATE(633), - [sym_once] = STATE(633), - [sym_verbatim] = STATE(633), - [sym_stack] = STATE(633), - [sym__push] = STATE(2476), - [sym__pushOnce] = STATE(2476), - [sym__pushIf] = STATE(2476), - [sym__prepend] = STATE(2476), - [sym__prependOnce] = STATE(2476), - [sym_conditional] = STATE(633), - [sym__if] = STATE(2477), - [sym__unless] = STATE(2477), - [sym__isset] = STATE(2477), - [sym__empty] = STATE(2477), - [sym__auth] = STATE(2477), - [sym__guest] = STATE(2477), - [sym__production] = STATE(2477), - [sym__env] = STATE(2477), - [sym__hasSection] = STATE(2477), - [sym__sectionMissing] = STATE(2477), - [sym__error] = STATE(2477), - [sym_authorization] = STATE(2477), - [sym__can] = STATE(2478), - [sym__cannot] = STATE(2478), - [sym__canany] = STATE(2478), - [sym__feature] = STATE(2477), - [sym__custom] = STATE(2477), - [sym_switch] = STATE(633), - [sym_loop] = STATE(633), - [sym_loop_operator] = STATE(633), - [sym__for] = STATE(2479), - [sym__foreach] = STATE(2479), - [sym__forelse] = STATE(2479), - [sym__while] = STATE(2479), - [sym_envoy] = STATE(633), - [sym__setup] = STATE(2475), - [sym__task] = STATE(2480), - [sym__story] = STATE(2480), - [sym__hooks] = STATE(2475), - [sym__before] = STATE(2475), - [sym__after] = STATE(2475), - [sym__envoy_error] = STATE(2475), - [sym__success] = STATE(2475), - [sym__finished] = STATE(2475), - [sym_livewire] = STATE(633), - [sym__persist] = STATE(2481), - [sym__teleport] = STATE(2481), - [sym__volt] = STATE(2481), - [aux_sym__directive_body] = STATE(633), - [sym_text] = STATE(633), - [sym__text] = STATE(976), - [aux_sym_php_only_repeat1] = STATE(976), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(7884), - [aux_sym_keyword_token1] = ACTIONS(7887), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7890), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7893), - [anon_sym_ATphp] = ACTIONS(7896), - [aux_sym_attribute_token1] = ACTIONS(7899), - [aux_sym__inline_directive_token1] = ACTIONS(7902), - [anon_sym_ATfragment] = ACTIONS(7905), - [anon_sym_ATsection] = ACTIONS(7908), - [anon_sym_ATonce] = ACTIONS(7911), - [anon_sym_ATverbatim] = ACTIONS(7914), - [anon_sym_ATpush] = ACTIONS(7917), - [anon_sym_ATpushOnce] = ACTIONS(7920), - [anon_sym_ATpushIf] = ACTIONS(7923), - [anon_sym_ATprepend] = ACTIONS(7926), - [anon_sym_ATprependOnce] = ACTIONS(7929), - [anon_sym_ATif] = ACTIONS(7932), - [anon_sym_ATunless] = ACTIONS(7935), - [anon_sym_ATisset] = ACTIONS(7938), - [anon_sym_ATempty] = ACTIONS(7941), - [anon_sym_ATauth] = ACTIONS(7944), - [anon_sym_ATguest] = ACTIONS(7947), - [anon_sym_ATproduction] = ACTIONS(7950), - [anon_sym_ATenv] = ACTIONS(7953), - [anon_sym_AThasSection] = ACTIONS(7956), - [anon_sym_ATsectionMissing] = ACTIONS(7959), - [anon_sym_ATerror] = ACTIONS(7962), - [anon_sym_ATcan] = ACTIONS(7965), - [anon_sym_ATcannot] = ACTIONS(7968), - [anon_sym_ATcanany] = ACTIONS(7971), - [anon_sym_ATfeature] = ACTIONS(7974), - [aux_sym__custom_token1] = ACTIONS(7977), - [aux_sym__custom_token2] = ACTIONS(7980), - [anon_sym_ATswitch] = ACTIONS(7983), - [aux_sym_loop_operator_token1] = ACTIONS(7986), - [anon_sym_ATfor] = ACTIONS(7989), - [anon_sym_ATforeach] = ACTIONS(7992), - [anon_sym_ATforelse] = ACTIONS(7995), - [anon_sym_ATwhile] = ACTIONS(7998), - [anon_sym_ATendwhile] = ACTIONS(3925), - [anon_sym_ATsetup] = ACTIONS(8001), - [anon_sym_ATtask] = ACTIONS(8004), - [anon_sym_ATstory] = ACTIONS(8007), - [anon_sym_ATbefore] = ACTIONS(8010), - [anon_sym_ATafter] = ACTIONS(8013), - [anon_sym_ATsuccess] = ACTIONS(8016), - [anon_sym_ATfinished] = ACTIONS(8019), - [anon_sym_ATpersist] = ACTIONS(8022), - [anon_sym_ATteleport] = ACTIONS(8025), - [anon_sym_ATvolt] = ACTIONS(8028), - [aux_sym__text_token1] = ACTIONS(8031), - [aux_sym__text_token2] = ACTIONS(8031), - [aux_sym__text_token3] = ACTIONS(8034), + [sym__definition] = STATE(634), + [sym_keyword] = STATE(634), + [sym_php_statement] = STATE(634), + [sym__escaped] = STATE(2585), + [sym__unescaped] = STATE(2585), + [sym__raw] = STATE(2585), + [sym__inline_raw] = STATE(2585), + [sym__multi_line_raw] = STATE(2585), + [sym_attribute] = STATE(634), + [sym__inline_directive] = STATE(634), + [sym__nested_directive] = STATE(634), + [sym_fragment] = STATE(634), + [sym_section] = STATE(634), + [sym_inlineSection] = STATE(634), + [sym_once] = STATE(634), + [sym_verbatim] = STATE(634), + [sym_stack] = STATE(634), + [sym__push] = STATE(2586), + [sym__pushOnce] = STATE(2586), + [sym__pushIf] = STATE(2586), + [sym__prepend] = STATE(2586), + [sym__prependOnce] = STATE(2586), + [sym_conditional] = STATE(634), + [sym__if] = STATE(2587), + [sym__unless] = STATE(2587), + [sym__isset] = STATE(2587), + [sym__empty] = STATE(2587), + [sym__auth] = STATE(2587), + [sym__guest] = STATE(2587), + [sym__production] = STATE(2587), + [sym__env] = STATE(2587), + [sym__hasSection] = STATE(2587), + [sym__sectionMissing] = STATE(2587), + [sym__error] = STATE(2587), + [sym_authorization] = STATE(2587), + [sym__can] = STATE(2588), + [sym__cannot] = STATE(2588), + [sym__canany] = STATE(2588), + [sym__feature] = STATE(2587), + [sym__custom] = STATE(2587), + [sym_switch] = STATE(634), + [sym_loop] = STATE(634), + [sym_loop_operator] = STATE(634), + [sym__for] = STATE(2589), + [sym__foreach] = STATE(2589), + [sym__forelse] = STATE(2589), + [sym__while] = STATE(2589), + [sym_envoy] = STATE(634), + [sym__setup] = STATE(2585), + [sym__task] = STATE(2590), + [sym__story] = STATE(2590), + [sym__hooks] = STATE(2585), + [sym__before] = STATE(2585), + [sym__after] = STATE(2585), + [sym__envoy_error] = STATE(2585), + [sym__success] = STATE(2585), + [sym__finished] = STATE(2585), + [sym_livewire] = STATE(634), + [sym__persist] = STATE(2591), + [sym__teleport] = STATE(2591), + [sym__volt] = STATE(2591), + [aux_sym__directive_body] = STATE(634), + [sym_text] = STATE(634), + [sym__text] = STATE(977), + [aux_sym_php_only_repeat1] = STATE(977), + [sym_comment] = ACTIONS(8424), + [aux_sym_keyword_token1] = ACTIONS(8426), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8428), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8430), + [anon_sym_ATphp] = ACTIONS(8432), + [aux_sym_attribute_token1] = ACTIONS(8434), + [aux_sym__inline_directive_token1] = ACTIONS(8436), + [anon_sym_ATfragment] = ACTIONS(8438), + [anon_sym_ATsection] = ACTIONS(8440), + [anon_sym_ATonce] = ACTIONS(8442), + [anon_sym_ATverbatim] = ACTIONS(8444), + [anon_sym_ATpush] = ACTIONS(8446), + [anon_sym_ATpushOnce] = ACTIONS(8448), + [anon_sym_ATpushIf] = ACTIONS(8450), + [anon_sym_ATprepend] = ACTIONS(8452), + [anon_sym_ATprependOnce] = ACTIONS(8454), + [anon_sym_ATif] = ACTIONS(8456), + [anon_sym_ATunless] = ACTIONS(8458), + [anon_sym_ATisset] = ACTIONS(8460), + [anon_sym_ATempty] = ACTIONS(8462), + [anon_sym_ATauth] = ACTIONS(8464), + [anon_sym_ATguest] = ACTIONS(8466), + [anon_sym_ATproduction] = ACTIONS(8468), + [anon_sym_ATenv] = ACTIONS(8470), + [anon_sym_AThasSection] = ACTIONS(8472), + [anon_sym_ATsectionMissing] = ACTIONS(8474), + [anon_sym_ATerror] = ACTIONS(8476), + [anon_sym_ATcan] = ACTIONS(8478), + [anon_sym_ATcannot] = ACTIONS(8480), + [anon_sym_ATcanany] = ACTIONS(8482), + [anon_sym_ATfeature] = ACTIONS(8484), + [aux_sym__custom_token1] = ACTIONS(8486), + [aux_sym__custom_token2] = ACTIONS(8488), + [anon_sym_ATswitch] = ACTIONS(8490), + [aux_sym_loop_operator_token1] = ACTIONS(8492), + [anon_sym_ATfor] = ACTIONS(8494), + [anon_sym_ATforeach] = ACTIONS(8496), + [anon_sym_ATforelse] = ACTIONS(8498), + [anon_sym_ATwhile] = ACTIONS(8500), + [anon_sym_ATsetup] = ACTIONS(8502), + [anon_sym_ATtask] = ACTIONS(8504), + [anon_sym_ATstory] = ACTIONS(8506), + [anon_sym_ATendstory] = ACTIONS(4609), + [anon_sym_ATbefore] = ACTIONS(8508), + [anon_sym_ATafter] = ACTIONS(8510), + [anon_sym_ATsuccess] = ACTIONS(8512), + [anon_sym_ATfinished] = ACTIONS(8514), + [anon_sym_ATpersist] = ACTIONS(8516), + [anon_sym_ATteleport] = ACTIONS(8518), + [anon_sym_ATvolt] = ACTIONS(8520), + [aux_sym__text_token1] = ACTIONS(8522), + [aux_sym__text_token2] = ACTIONS(8522), + [aux_sym__text_token3] = ACTIONS(8524), }, [634] = { - [sym__definition] = STATE(629), - [sym_comment] = STATE(629), - [sym_keyword] = STATE(629), - [sym_php_statement] = STATE(629), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), - [sym_attribute] = STATE(629), - [sym__inline_directive] = STATE(629), - [sym__nested_directive] = STATE(629), - [sym_fragment] = STATE(629), - [sym_section] = STATE(629), - [sym_inlineSection] = STATE(629), - [sym_once] = STATE(629), - [sym_verbatim] = STATE(629), - [sym_stack] = STATE(629), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), - [sym_conditional] = STATE(629), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), - [sym_switch] = STATE(629), - [sym_loop] = STATE(629), - [sym_loop_operator] = STATE(629), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), - [sym_envoy] = STATE(629), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), - [sym_livewire] = STATE(629), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), - [aux_sym__directive_body] = STATE(629), - [sym_text] = STATE(629), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4372), - [aux_sym_keyword_token1] = ACTIONS(4374), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4376), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4378), - [anon_sym_ATphp] = ACTIONS(4380), - [aux_sym_attribute_token1] = ACTIONS(4382), - [aux_sym__inline_directive_token1] = ACTIONS(4384), - [anon_sym_ATfragment] = ACTIONS(4386), - [anon_sym_ATsection] = ACTIONS(4388), - [aux_sym_section_token1] = ACTIONS(8037), - [anon_sym_ATonce] = ACTIONS(4392), - [anon_sym_ATverbatim] = ACTIONS(4394), - [anon_sym_ATpush] = ACTIONS(4396), - [anon_sym_ATpushOnce] = ACTIONS(4398), - [anon_sym_ATpushIf] = ACTIONS(4400), - [anon_sym_ATprepend] = ACTIONS(4402), - [anon_sym_ATprependOnce] = ACTIONS(4404), - [anon_sym_ATif] = ACTIONS(4406), - [anon_sym_ATunless] = ACTIONS(4408), - [anon_sym_ATisset] = ACTIONS(4410), - [anon_sym_ATempty] = ACTIONS(4412), - [anon_sym_ATauth] = ACTIONS(4414), - [anon_sym_ATguest] = ACTIONS(4416), - [anon_sym_ATproduction] = ACTIONS(4418), - [anon_sym_ATenv] = ACTIONS(4420), - [anon_sym_AThasSection] = ACTIONS(4422), - [anon_sym_ATsectionMissing] = ACTIONS(4424), - [anon_sym_ATerror] = ACTIONS(4426), - [anon_sym_ATcan] = ACTIONS(4428), - [anon_sym_ATcannot] = ACTIONS(4430), - [anon_sym_ATcanany] = ACTIONS(4432), - [anon_sym_ATfeature] = ACTIONS(4434), - [aux_sym__custom_token1] = ACTIONS(4436), - [aux_sym__custom_token2] = ACTIONS(4438), - [anon_sym_ATswitch] = ACTIONS(4440), - [aux_sym_loop_operator_token1] = ACTIONS(4442), - [anon_sym_ATfor] = ACTIONS(4444), - [anon_sym_ATforeach] = ACTIONS(4446), - [anon_sym_ATforelse] = ACTIONS(4448), - [anon_sym_ATwhile] = ACTIONS(4450), - [anon_sym_ATsetup] = ACTIONS(4452), - [anon_sym_ATtask] = ACTIONS(4454), - [anon_sym_ATstory] = ACTIONS(4456), - [anon_sym_ATbefore] = ACTIONS(4458), - [anon_sym_ATafter] = ACTIONS(4460), - [anon_sym_ATsuccess] = ACTIONS(4462), - [anon_sym_ATfinished] = ACTIONS(4464), - [anon_sym_ATpersist] = ACTIONS(4466), - [anon_sym_ATteleport] = ACTIONS(4468), - [anon_sym_ATvolt] = ACTIONS(4470), - [aux_sym__text_token1] = ACTIONS(4472), - [aux_sym__text_token2] = ACTIONS(4472), - [aux_sym__text_token3] = ACTIONS(4474), + [sym__definition] = STATE(643), + [sym_keyword] = STATE(643), + [sym_php_statement] = STATE(643), + [sym__escaped] = STATE(2585), + [sym__unescaped] = STATE(2585), + [sym__raw] = STATE(2585), + [sym__inline_raw] = STATE(2585), + [sym__multi_line_raw] = STATE(2585), + [sym_attribute] = STATE(643), + [sym__inline_directive] = STATE(643), + [sym__nested_directive] = STATE(643), + [sym_fragment] = STATE(643), + [sym_section] = STATE(643), + [sym_inlineSection] = STATE(643), + [sym_once] = STATE(643), + [sym_verbatim] = STATE(643), + [sym_stack] = STATE(643), + [sym__push] = STATE(2586), + [sym__pushOnce] = STATE(2586), + [sym__pushIf] = STATE(2586), + [sym__prepend] = STATE(2586), + [sym__prependOnce] = STATE(2586), + [sym_conditional] = STATE(643), + [sym__if] = STATE(2587), + [sym__unless] = STATE(2587), + [sym__isset] = STATE(2587), + [sym__empty] = STATE(2587), + [sym__auth] = STATE(2587), + [sym__guest] = STATE(2587), + [sym__production] = STATE(2587), + [sym__env] = STATE(2587), + [sym__hasSection] = STATE(2587), + [sym__sectionMissing] = STATE(2587), + [sym__error] = STATE(2587), + [sym_authorization] = STATE(2587), + [sym__can] = STATE(2588), + [sym__cannot] = STATE(2588), + [sym__canany] = STATE(2588), + [sym__feature] = STATE(2587), + [sym__custom] = STATE(2587), + [sym_switch] = STATE(643), + [sym_loop] = STATE(643), + [sym_loop_operator] = STATE(643), + [sym__for] = STATE(2589), + [sym__foreach] = STATE(2589), + [sym__forelse] = STATE(2589), + [sym__while] = STATE(2589), + [sym_envoy] = STATE(643), + [sym__setup] = STATE(2585), + [sym__task] = STATE(2590), + [sym__story] = STATE(2590), + [sym__hooks] = STATE(2585), + [sym__before] = STATE(2585), + [sym__after] = STATE(2585), + [sym__envoy_error] = STATE(2585), + [sym__success] = STATE(2585), + [sym__finished] = STATE(2585), + [sym_livewire] = STATE(643), + [sym__persist] = STATE(2591), + [sym__teleport] = STATE(2591), + [sym__volt] = STATE(2591), + [aux_sym__directive_body] = STATE(643), + [sym_text] = STATE(643), + [sym__text] = STATE(977), + [aux_sym_php_only_repeat1] = STATE(977), + [sym_comment] = ACTIONS(8526), + [aux_sym_keyword_token1] = ACTIONS(8426), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8428), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8430), + [anon_sym_ATphp] = ACTIONS(8432), + [aux_sym_attribute_token1] = ACTIONS(8434), + [aux_sym__inline_directive_token1] = ACTIONS(8436), + [anon_sym_ATfragment] = ACTIONS(8438), + [anon_sym_ATsection] = ACTIONS(8440), + [anon_sym_ATonce] = ACTIONS(8442), + [anon_sym_ATverbatim] = ACTIONS(8444), + [anon_sym_ATpush] = ACTIONS(8446), + [anon_sym_ATpushOnce] = ACTIONS(8448), + [anon_sym_ATpushIf] = ACTIONS(8450), + [anon_sym_ATprepend] = ACTIONS(8452), + [anon_sym_ATprependOnce] = ACTIONS(8454), + [anon_sym_ATif] = ACTIONS(8456), + [anon_sym_ATunless] = ACTIONS(8458), + [anon_sym_ATisset] = ACTIONS(8460), + [anon_sym_ATempty] = ACTIONS(8462), + [anon_sym_ATauth] = ACTIONS(8464), + [anon_sym_ATguest] = ACTIONS(8466), + [anon_sym_ATproduction] = ACTIONS(8468), + [anon_sym_ATenv] = ACTIONS(8470), + [anon_sym_AThasSection] = ACTIONS(8472), + [anon_sym_ATsectionMissing] = ACTIONS(8474), + [anon_sym_ATerror] = ACTIONS(8476), + [anon_sym_ATcan] = ACTIONS(8478), + [anon_sym_ATcannot] = ACTIONS(8480), + [anon_sym_ATcanany] = ACTIONS(8482), + [anon_sym_ATfeature] = ACTIONS(8484), + [aux_sym__custom_token1] = ACTIONS(8486), + [aux_sym__custom_token2] = ACTIONS(8488), + [anon_sym_ATswitch] = ACTIONS(8490), + [aux_sym_loop_operator_token1] = ACTIONS(8492), + [anon_sym_ATfor] = ACTIONS(8494), + [anon_sym_ATforeach] = ACTIONS(8496), + [anon_sym_ATforelse] = ACTIONS(8498), + [anon_sym_ATwhile] = ACTIONS(8500), + [anon_sym_ATsetup] = ACTIONS(8502), + [anon_sym_ATtask] = ACTIONS(8504), + [anon_sym_ATstory] = ACTIONS(8506), + [anon_sym_ATendstory] = ACTIONS(4996), + [anon_sym_ATbefore] = ACTIONS(8508), + [anon_sym_ATafter] = ACTIONS(8510), + [anon_sym_ATsuccess] = ACTIONS(8512), + [anon_sym_ATfinished] = ACTIONS(8514), + [anon_sym_ATpersist] = ACTIONS(8516), + [anon_sym_ATteleport] = ACTIONS(8518), + [anon_sym_ATvolt] = ACTIONS(8520), + [aux_sym__text_token1] = ACTIONS(8522), + [aux_sym__text_token2] = ACTIONS(8522), + [aux_sym__text_token3] = ACTIONS(8524), }, [635] = { - [sym__definition] = STATE(636), - [sym_comment] = STATE(636), - [sym_keyword] = STATE(636), - [sym_php_statement] = STATE(636), - [sym__escaped] = STATE(2727), - [sym__unescaped] = STATE(2727), - [sym__raw] = STATE(2727), - [sym__inline_raw] = STATE(2727), - [sym__multi_line_raw] = STATE(2727), - [sym_attribute] = STATE(636), - [sym__inline_directive] = STATE(636), - [sym__nested_directive] = STATE(636), - [sym_fragment] = STATE(636), - [sym_section] = STATE(636), - [sym_inlineSection] = STATE(636), - [sym_once] = STATE(636), - [sym_verbatim] = STATE(636), - [sym_stack] = STATE(636), - [sym__push] = STATE(2728), - [sym__pushOnce] = STATE(2728), - [sym__pushIf] = STATE(2728), - [sym__prepend] = STATE(2728), - [sym__prependOnce] = STATE(2728), - [sym_conditional] = STATE(636), - [sym__if] = STATE(2729), - [sym__unless] = STATE(2729), - [sym__isset] = STATE(2729), - [sym__empty] = STATE(2729), - [sym__auth] = STATE(2729), - [sym__guest] = STATE(2729), - [sym__production] = STATE(2729), - [sym__env] = STATE(2729), - [sym__hasSection] = STATE(2729), - [sym__sectionMissing] = STATE(2729), - [sym__error] = STATE(2729), - [sym_authorization] = STATE(2729), - [sym__can] = STATE(2730), - [sym__cannot] = STATE(2730), - [sym__canany] = STATE(2730), - [sym__feature] = STATE(2729), - [sym__custom] = STATE(2729), - [sym_switch] = STATE(636), - [sym_loop] = STATE(636), - [sym_loop_operator] = STATE(636), - [sym__for] = STATE(2731), - [sym__foreach] = STATE(2731), - [sym__forelse] = STATE(2731), - [sym__while] = STATE(2731), - [sym_envoy] = STATE(636), - [sym__setup] = STATE(2727), - [sym__task] = STATE(2732), - [sym__story] = STATE(2732), - [sym__hooks] = STATE(2727), - [sym__before] = STATE(2727), - [sym__after] = STATE(2727), - [sym__envoy_error] = STATE(2727), - [sym__success] = STATE(2727), - [sym__finished] = STATE(2727), - [sym_livewire] = STATE(636), - [sym__persist] = STATE(2733), - [sym__teleport] = STATE(2733), - [sym__volt] = STATE(2733), - [aux_sym__directive_body] = STATE(636), - [sym_text] = STATE(636), - [sym__text] = STATE(964), - [aux_sym_php_only_repeat1] = STATE(964), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8039), - [aux_sym_keyword_token1] = ACTIONS(8041), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8043), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8045), - [anon_sym_ATphp] = ACTIONS(8047), - [aux_sym_attribute_token1] = ACTIONS(8049), - [aux_sym__inline_directive_token1] = ACTIONS(8051), - [anon_sym_ATfragment] = ACTIONS(8053), - [anon_sym_ATsection] = ACTIONS(8055), - [anon_sym_ATonce] = ACTIONS(8057), - [anon_sym_ATverbatim] = ACTIONS(8059), - [anon_sym_ATpush] = ACTIONS(8061), - [anon_sym_ATpushOnce] = ACTIONS(8063), - [anon_sym_ATpushIf] = ACTIONS(8065), - [anon_sym_ATprepend] = ACTIONS(8067), - [anon_sym_ATprependOnce] = ACTIONS(8069), - [anon_sym_ATif] = ACTIONS(8071), - [anon_sym_ATunless] = ACTIONS(8073), - [anon_sym_ATisset] = ACTIONS(8075), - [anon_sym_ATempty] = ACTIONS(8077), - [anon_sym_ATauth] = ACTIONS(8079), - [anon_sym_ATguest] = ACTIONS(8081), - [anon_sym_ATproduction] = ACTIONS(8083), - [anon_sym_ATenv] = ACTIONS(8085), - [anon_sym_AThasSection] = ACTIONS(8087), - [anon_sym_ATsectionMissing] = ACTIONS(8089), - [anon_sym_ATerror] = ACTIONS(8091), - [anon_sym_ATcan] = ACTIONS(8093), - [anon_sym_ATcannot] = ACTIONS(8095), - [anon_sym_ATcanany] = ACTIONS(8097), - [anon_sym_ATfeature] = ACTIONS(8099), - [aux_sym__custom_token1] = ACTIONS(8101), - [aux_sym__custom_token2] = ACTIONS(8103), - [anon_sym_ATswitch] = ACTIONS(8105), - [aux_sym_loop_operator_token1] = ACTIONS(8107), - [anon_sym_ATfor] = ACTIONS(8109), - [anon_sym_ATforeach] = ACTIONS(8111), - [anon_sym_ATforelse] = ACTIONS(8113), - [anon_sym_ATwhile] = ACTIONS(8115), - [anon_sym_ATsetup] = ACTIONS(8117), - [anon_sym_ATtask] = ACTIONS(8119), - [anon_sym_ATstory] = ACTIONS(8121), - [anon_sym_ATbefore] = ACTIONS(8123), - [anon_sym_ATafter] = ACTIONS(8125), - [anon_sym_ATsuccess] = ACTIONS(8127), - [anon_sym_ATfinished] = ACTIONS(8129), - [anon_sym_ATpersist] = ACTIONS(8131), - [anon_sym_ATendpersist] = ACTIONS(4712), - [anon_sym_ATteleport] = ACTIONS(8133), - [anon_sym_ATvolt] = ACTIONS(8135), - [aux_sym__text_token1] = ACTIONS(8137), - [aux_sym__text_token2] = ACTIONS(8137), - [aux_sym__text_token3] = ACTIONS(8139), + [sym__definition] = STATE(635), + [sym_keyword] = STATE(635), + [sym_php_statement] = STATE(635), + [sym__escaped] = STATE(2421), + [sym__unescaped] = STATE(2421), + [sym__raw] = STATE(2421), + [sym__inline_raw] = STATE(2421), + [sym__multi_line_raw] = STATE(2421), + [sym_attribute] = STATE(635), + [sym__inline_directive] = STATE(635), + [sym__nested_directive] = STATE(635), + [sym_fragment] = STATE(635), + [sym_section] = STATE(635), + [sym_inlineSection] = STATE(635), + [sym_once] = STATE(635), + [sym_verbatim] = STATE(635), + [sym_stack] = STATE(635), + [sym__push] = STATE(2422), + [sym__pushOnce] = STATE(2422), + [sym__pushIf] = STATE(2422), + [sym__prepend] = STATE(2422), + [sym__prependOnce] = STATE(2422), + [sym_conditional] = STATE(635), + [sym__if] = STATE(2423), + [sym__unless] = STATE(2423), + [sym__isset] = STATE(2423), + [sym__empty] = STATE(2423), + [sym__auth] = STATE(2423), + [sym__guest] = STATE(2423), + [sym__production] = STATE(2423), + [sym__env] = STATE(2423), + [sym__hasSection] = STATE(2423), + [sym__sectionMissing] = STATE(2423), + [sym__error] = STATE(2423), + [sym_authorization] = STATE(2423), + [sym__can] = STATE(2424), + [sym__cannot] = STATE(2424), + [sym__canany] = STATE(2424), + [sym__feature] = STATE(2423), + [sym__custom] = STATE(2423), + [sym_switch] = STATE(635), + [sym_loop] = STATE(635), + [sym_loop_operator] = STATE(635), + [sym__for] = STATE(2425), + [sym__foreach] = STATE(2425), + [sym__forelse] = STATE(2425), + [sym__while] = STATE(2425), + [sym_envoy] = STATE(635), + [sym__setup] = STATE(2421), + [sym__task] = STATE(2426), + [sym__story] = STATE(2426), + [sym__hooks] = STATE(2421), + [sym__before] = STATE(2421), + [sym__after] = STATE(2421), + [sym__envoy_error] = STATE(2421), + [sym__success] = STATE(2421), + [sym__finished] = STATE(2421), + [sym_livewire] = STATE(635), + [sym__persist] = STATE(2427), + [sym__teleport] = STATE(2427), + [sym__volt] = STATE(2427), + [aux_sym__directive_body] = STATE(635), + [sym_text] = STATE(635), + [sym__text] = STATE(986), + [aux_sym_php_only_repeat1] = STATE(986), + [sym_comment] = ACTIONS(8528), + [aux_sym_keyword_token1] = ACTIONS(8531), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8534), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8537), + [anon_sym_ATphp] = ACTIONS(8540), + [aux_sym_attribute_token1] = ACTIONS(8543), + [aux_sym__inline_directive_token1] = ACTIONS(8546), + [anon_sym_ATfragment] = ACTIONS(8549), + [anon_sym_ATsection] = ACTIONS(8552), + [anon_sym_ATonce] = ACTIONS(8555), + [anon_sym_ATverbatim] = ACTIONS(8558), + [anon_sym_ATpush] = ACTIONS(8561), + [anon_sym_ATpushOnce] = ACTIONS(8564), + [anon_sym_ATpushIf] = ACTIONS(8567), + [anon_sym_ATprepend] = ACTIONS(8570), + [anon_sym_ATprependOnce] = ACTIONS(8573), + [anon_sym_ATif] = ACTIONS(8576), + [anon_sym_ATunless] = ACTIONS(8579), + [anon_sym_ATisset] = ACTIONS(8582), + [anon_sym_ATempty] = ACTIONS(8585), + [anon_sym_ATauth] = ACTIONS(8588), + [anon_sym_ATguest] = ACTIONS(8591), + [anon_sym_ATproduction] = ACTIONS(8594), + [anon_sym_ATenv] = ACTIONS(8597), + [anon_sym_AThasSection] = ACTIONS(8600), + [anon_sym_ATsectionMissing] = ACTIONS(8603), + [anon_sym_ATerror] = ACTIONS(8606), + [anon_sym_ATcan] = ACTIONS(8609), + [anon_sym_ATcannot] = ACTIONS(8612), + [anon_sym_ATcanany] = ACTIONS(8615), + [anon_sym_ATfeature] = ACTIONS(8618), + [aux_sym__custom_token1] = ACTIONS(8621), + [aux_sym__custom_token2] = ACTIONS(8624), + [anon_sym_ATswitch] = ACTIONS(8627), + [aux_sym_loop_operator_token1] = ACTIONS(8630), + [anon_sym_ATfor] = ACTIONS(8633), + [anon_sym_ATforeach] = ACTIONS(8636), + [anon_sym_ATforelse] = ACTIONS(8639), + [anon_sym_ATwhile] = ACTIONS(8642), + [anon_sym_ATendwhile] = ACTIONS(5035), + [anon_sym_ATsetup] = ACTIONS(8645), + [anon_sym_ATtask] = ACTIONS(8648), + [anon_sym_ATstory] = ACTIONS(8651), + [anon_sym_ATbefore] = ACTIONS(8654), + [anon_sym_ATafter] = ACTIONS(8657), + [anon_sym_ATsuccess] = ACTIONS(8660), + [anon_sym_ATfinished] = ACTIONS(8663), + [anon_sym_ATpersist] = ACTIONS(8666), + [anon_sym_ATteleport] = ACTIONS(8669), + [anon_sym_ATvolt] = ACTIONS(8672), + [aux_sym__text_token1] = ACTIONS(8675), + [aux_sym__text_token2] = ACTIONS(8675), + [aux_sym__text_token3] = ACTIONS(8678), }, [636] = { - [sym__definition] = STATE(646), - [sym_comment] = STATE(646), - [sym_keyword] = STATE(646), - [sym_php_statement] = STATE(646), - [sym__escaped] = STATE(2727), - [sym__unescaped] = STATE(2727), - [sym__raw] = STATE(2727), - [sym__inline_raw] = STATE(2727), - [sym__multi_line_raw] = STATE(2727), - [sym_attribute] = STATE(646), - [sym__inline_directive] = STATE(646), - [sym__nested_directive] = STATE(646), - [sym_fragment] = STATE(646), - [sym_section] = STATE(646), - [sym_inlineSection] = STATE(646), - [sym_once] = STATE(646), - [sym_verbatim] = STATE(646), - [sym_stack] = STATE(646), - [sym__push] = STATE(2728), - [sym__pushOnce] = STATE(2728), - [sym__pushIf] = STATE(2728), - [sym__prepend] = STATE(2728), - [sym__prependOnce] = STATE(2728), - [sym_conditional] = STATE(646), - [sym__if] = STATE(2729), - [sym__unless] = STATE(2729), - [sym__isset] = STATE(2729), - [sym__empty] = STATE(2729), - [sym__auth] = STATE(2729), - [sym__guest] = STATE(2729), - [sym__production] = STATE(2729), - [sym__env] = STATE(2729), - [sym__hasSection] = STATE(2729), - [sym__sectionMissing] = STATE(2729), - [sym__error] = STATE(2729), - [sym_authorization] = STATE(2729), - [sym__can] = STATE(2730), - [sym__cannot] = STATE(2730), - [sym__canany] = STATE(2730), - [sym__feature] = STATE(2729), - [sym__custom] = STATE(2729), - [sym_switch] = STATE(646), - [sym_loop] = STATE(646), - [sym_loop_operator] = STATE(646), - [sym__for] = STATE(2731), - [sym__foreach] = STATE(2731), - [sym__forelse] = STATE(2731), - [sym__while] = STATE(2731), - [sym_envoy] = STATE(646), - [sym__setup] = STATE(2727), - [sym__task] = STATE(2732), - [sym__story] = STATE(2732), - [sym__hooks] = STATE(2727), - [sym__before] = STATE(2727), - [sym__after] = STATE(2727), - [sym__envoy_error] = STATE(2727), - [sym__success] = STATE(2727), - [sym__finished] = STATE(2727), - [sym_livewire] = STATE(646), - [sym__persist] = STATE(2733), - [sym__teleport] = STATE(2733), - [sym__volt] = STATE(2733), - [aux_sym__directive_body] = STATE(646), - [sym_text] = STATE(646), - [sym__text] = STATE(964), - [aux_sym_php_only_repeat1] = STATE(964), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8039), - [aux_sym_keyword_token1] = ACTIONS(8041), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8043), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8045), - [anon_sym_ATphp] = ACTIONS(8047), - [aux_sym_attribute_token1] = ACTIONS(8049), - [aux_sym__inline_directive_token1] = ACTIONS(8051), - [anon_sym_ATfragment] = ACTIONS(8053), - [anon_sym_ATsection] = ACTIONS(8055), - [anon_sym_ATonce] = ACTIONS(8057), - [anon_sym_ATverbatim] = ACTIONS(8059), - [anon_sym_ATpush] = ACTIONS(8061), - [anon_sym_ATpushOnce] = ACTIONS(8063), - [anon_sym_ATpushIf] = ACTIONS(8065), - [anon_sym_ATprepend] = ACTIONS(8067), - [anon_sym_ATprependOnce] = ACTIONS(8069), - [anon_sym_ATif] = ACTIONS(8071), - [anon_sym_ATunless] = ACTIONS(8073), - [anon_sym_ATisset] = ACTIONS(8075), - [anon_sym_ATempty] = ACTIONS(8077), - [anon_sym_ATauth] = ACTIONS(8079), - [anon_sym_ATguest] = ACTIONS(8081), - [anon_sym_ATproduction] = ACTIONS(8083), - [anon_sym_ATenv] = ACTIONS(8085), - [anon_sym_AThasSection] = ACTIONS(8087), - [anon_sym_ATsectionMissing] = ACTIONS(8089), - [anon_sym_ATerror] = ACTIONS(8091), - [anon_sym_ATcan] = ACTIONS(8093), - [anon_sym_ATcannot] = ACTIONS(8095), - [anon_sym_ATcanany] = ACTIONS(8097), - [anon_sym_ATfeature] = ACTIONS(8099), - [aux_sym__custom_token1] = ACTIONS(8101), - [aux_sym__custom_token2] = ACTIONS(8103), - [anon_sym_ATswitch] = ACTIONS(8105), - [aux_sym_loop_operator_token1] = ACTIONS(8107), - [anon_sym_ATfor] = ACTIONS(8109), - [anon_sym_ATforeach] = ACTIONS(8111), - [anon_sym_ATforelse] = ACTIONS(8113), - [anon_sym_ATwhile] = ACTIONS(8115), - [anon_sym_ATsetup] = ACTIONS(8117), - [anon_sym_ATtask] = ACTIONS(8119), - [anon_sym_ATstory] = ACTIONS(8121), - [anon_sym_ATbefore] = ACTIONS(8123), - [anon_sym_ATafter] = ACTIONS(8125), - [anon_sym_ATsuccess] = ACTIONS(8127), - [anon_sym_ATfinished] = ACTIONS(8129), - [anon_sym_ATpersist] = ACTIONS(8131), - [anon_sym_ATendpersist] = ACTIONS(4626), - [anon_sym_ATteleport] = ACTIONS(8133), - [anon_sym_ATvolt] = ACTIONS(8135), - [aux_sym__text_token1] = ACTIONS(8137), - [aux_sym__text_token2] = ACTIONS(8137), - [aux_sym__text_token3] = ACTIONS(8139), + [sym__definition] = STATE(631), + [sym_keyword] = STATE(631), + [sym_php_statement] = STATE(631), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), + [sym_attribute] = STATE(631), + [sym__inline_directive] = STATE(631), + [sym__nested_directive] = STATE(631), + [sym_fragment] = STATE(631), + [sym_section] = STATE(631), + [sym_inlineSection] = STATE(631), + [sym_once] = STATE(631), + [sym_verbatim] = STATE(631), + [sym_stack] = STATE(631), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), + [sym_conditional] = STATE(631), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), + [sym_switch] = STATE(631), + [sym_loop] = STATE(631), + [sym_loop_operator] = STATE(631), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), + [sym_envoy] = STATE(631), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), + [sym_livewire] = STATE(631), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), + [aux_sym__directive_body] = STATE(631), + [sym_text] = STATE(631), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(8681), + [aux_sym_keyword_token1] = ACTIONS(4321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4323), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4325), + [anon_sym_ATphp] = ACTIONS(4327), + [aux_sym_attribute_token1] = ACTIONS(4329), + [aux_sym__inline_directive_token1] = ACTIONS(4331), + [anon_sym_ATfragment] = ACTIONS(4333), + [anon_sym_ATsection] = ACTIONS(4335), + [aux_sym_section_token1] = ACTIONS(8683), + [anon_sym_ATonce] = ACTIONS(4339), + [anon_sym_ATverbatim] = ACTIONS(4341), + [anon_sym_ATpush] = ACTIONS(4343), + [anon_sym_ATpushOnce] = ACTIONS(4345), + [anon_sym_ATpushIf] = ACTIONS(4347), + [anon_sym_ATprepend] = ACTIONS(4349), + [anon_sym_ATprependOnce] = ACTIONS(4351), + [anon_sym_ATif] = ACTIONS(4353), + [anon_sym_ATunless] = ACTIONS(4355), + [anon_sym_ATisset] = ACTIONS(4357), + [anon_sym_ATempty] = ACTIONS(4359), + [anon_sym_ATauth] = ACTIONS(4361), + [anon_sym_ATguest] = ACTIONS(4363), + [anon_sym_ATproduction] = ACTIONS(4365), + [anon_sym_ATenv] = ACTIONS(4367), + [anon_sym_AThasSection] = ACTIONS(4369), + [anon_sym_ATsectionMissing] = ACTIONS(4371), + [anon_sym_ATerror] = ACTIONS(4373), + [anon_sym_ATcan] = ACTIONS(4375), + [anon_sym_ATcannot] = ACTIONS(4377), + [anon_sym_ATcanany] = ACTIONS(4379), + [anon_sym_ATfeature] = ACTIONS(4381), + [aux_sym__custom_token1] = ACTIONS(4383), + [aux_sym__custom_token2] = ACTIONS(4385), + [anon_sym_ATswitch] = ACTIONS(4387), + [aux_sym_loop_operator_token1] = ACTIONS(4389), + [anon_sym_ATfor] = ACTIONS(4391), + [anon_sym_ATforeach] = ACTIONS(4393), + [anon_sym_ATforelse] = ACTIONS(4395), + [anon_sym_ATwhile] = ACTIONS(4397), + [anon_sym_ATsetup] = ACTIONS(4399), + [anon_sym_ATtask] = ACTIONS(4401), + [anon_sym_ATstory] = ACTIONS(4403), + [anon_sym_ATbefore] = ACTIONS(4405), + [anon_sym_ATafter] = ACTIONS(4407), + [anon_sym_ATsuccess] = ACTIONS(4409), + [anon_sym_ATfinished] = ACTIONS(4411), + [anon_sym_ATpersist] = ACTIONS(4413), + [anon_sym_ATteleport] = ACTIONS(4415), + [anon_sym_ATvolt] = ACTIONS(4417), + [aux_sym__text_token1] = ACTIONS(4419), + [aux_sym__text_token2] = ACTIONS(4419), + [aux_sym__text_token3] = ACTIONS(4421), }, [637] = { - [sym__definition] = STATE(637), - [sym_comment] = STATE(637), - [sym_keyword] = STATE(637), - [sym_php_statement] = STATE(637), - [sym__escaped] = STATE(2559), - [sym__unescaped] = STATE(2559), - [sym__raw] = STATE(2559), - [sym__inline_raw] = STATE(2559), - [sym__multi_line_raw] = STATE(2559), - [sym_attribute] = STATE(637), - [sym__inline_directive] = STATE(637), - [sym__nested_directive] = STATE(637), - [sym_fragment] = STATE(637), - [sym_section] = STATE(637), - [sym_inlineSection] = STATE(637), - [sym_once] = STATE(637), - [sym_verbatim] = STATE(637), - [sym_stack] = STATE(637), - [sym__push] = STATE(2560), - [sym__pushOnce] = STATE(2560), - [sym__pushIf] = STATE(2560), - [sym__prepend] = STATE(2560), - [sym__prependOnce] = STATE(2560), - [sym_conditional] = STATE(637), - [sym__if] = STATE(2561), - [sym__unless] = STATE(2561), - [sym__isset] = STATE(2561), - [sym__empty] = STATE(2561), - [sym__auth] = STATE(2561), - [sym__guest] = STATE(2561), - [sym__production] = STATE(2561), - [sym__env] = STATE(2561), - [sym__hasSection] = STATE(2561), - [sym__sectionMissing] = STATE(2561), - [sym__error] = STATE(2561), - [sym_authorization] = STATE(2561), - [sym__can] = STATE(2562), - [sym__cannot] = STATE(2562), - [sym__canany] = STATE(2562), - [sym__feature] = STATE(2561), - [sym__custom] = STATE(2561), - [sym_switch] = STATE(637), - [sym_loop] = STATE(637), - [sym_loop_operator] = STATE(637), - [sym__for] = STATE(2563), - [sym__foreach] = STATE(2563), - [sym__forelse] = STATE(2563), - [sym__while] = STATE(2563), - [sym_envoy] = STATE(637), - [sym__setup] = STATE(2559), - [sym__task] = STATE(2564), - [sym__story] = STATE(2564), - [sym__hooks] = STATE(2559), - [sym__before] = STATE(2559), - [sym__after] = STATE(2559), - [sym__envoy_error] = STATE(2559), - [sym__success] = STATE(2559), - [sym__finished] = STATE(2559), - [sym_livewire] = STATE(637), - [sym__persist] = STATE(2565), - [sym__teleport] = STATE(2565), - [sym__volt] = STATE(2565), - [aux_sym__directive_body] = STATE(637), - [sym_text] = STATE(637), - [sym__text] = STATE(972), - [aux_sym_php_only_repeat1] = STATE(972), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8141), - [aux_sym_keyword_token1] = ACTIONS(8144), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8147), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8150), - [anon_sym_ATphp] = ACTIONS(8153), - [aux_sym_attribute_token1] = ACTIONS(8156), - [aux_sym__inline_directive_token1] = ACTIONS(8159), - [anon_sym_ATfragment] = ACTIONS(8162), - [anon_sym_ATsection] = ACTIONS(8165), - [anon_sym_ATonce] = ACTIONS(8168), - [anon_sym_ATverbatim] = ACTIONS(8171), - [anon_sym_ATpush] = ACTIONS(8174), - [anon_sym_ATpushOnce] = ACTIONS(8177), - [anon_sym_ATpushIf] = ACTIONS(8180), - [anon_sym_ATprepend] = ACTIONS(8183), - [anon_sym_ATprependOnce] = ACTIONS(8186), - [anon_sym_ATif] = ACTIONS(8189), - [anon_sym_ATunless] = ACTIONS(8192), - [anon_sym_ATisset] = ACTIONS(8195), - [anon_sym_ATempty] = ACTIONS(8198), - [anon_sym_ATauth] = ACTIONS(8201), - [anon_sym_ATguest] = ACTIONS(8204), - [anon_sym_ATproduction] = ACTIONS(8207), - [anon_sym_ATenv] = ACTIONS(8210), - [anon_sym_AThasSection] = ACTIONS(8213), - [anon_sym_ATsectionMissing] = ACTIONS(8216), - [anon_sym_ATerror] = ACTIONS(8219), - [anon_sym_ATcan] = ACTIONS(8222), - [anon_sym_ATcannot] = ACTIONS(8225), - [anon_sym_ATcanany] = ACTIONS(8228), - [anon_sym_ATfeature] = ACTIONS(8231), - [aux_sym__custom_token1] = ACTIONS(8234), - [aux_sym__custom_token2] = ACTIONS(8237), - [anon_sym_ATswitch] = ACTIONS(8240), - [aux_sym_loop_operator_token1] = ACTIONS(8243), - [anon_sym_ATfor] = ACTIONS(8246), - [anon_sym_ATforeach] = ACTIONS(8249), - [anon_sym_ATforelse] = ACTIONS(8252), - [anon_sym_ATwhile] = ACTIONS(8255), - [anon_sym_ATsetup] = ACTIONS(8258), - [anon_sym_ATtask] = ACTIONS(8261), - [anon_sym_ATendtask] = ACTIONS(3925), - [anon_sym_ATstory] = ACTIONS(8264), - [anon_sym_ATbefore] = ACTIONS(8267), - [anon_sym_ATafter] = ACTIONS(8270), - [anon_sym_ATsuccess] = ACTIONS(8273), - [anon_sym_ATfinished] = ACTIONS(8276), - [anon_sym_ATpersist] = ACTIONS(8279), - [anon_sym_ATteleport] = ACTIONS(8282), - [anon_sym_ATvolt] = ACTIONS(8285), - [aux_sym__text_token1] = ACTIONS(8288), - [aux_sym__text_token2] = ACTIONS(8288), - [aux_sym__text_token3] = ACTIONS(8291), + [sym__definition] = STATE(638), + [sym_keyword] = STATE(638), + [sym_php_statement] = STATE(638), + [sym__escaped] = STATE(2667), + [sym__unescaped] = STATE(2667), + [sym__raw] = STATE(2667), + [sym__inline_raw] = STATE(2667), + [sym__multi_line_raw] = STATE(2667), + [sym_attribute] = STATE(638), + [sym__inline_directive] = STATE(638), + [sym__nested_directive] = STATE(638), + [sym_fragment] = STATE(638), + [sym_section] = STATE(638), + [sym_inlineSection] = STATE(638), + [sym_once] = STATE(638), + [sym_verbatim] = STATE(638), + [sym_stack] = STATE(638), + [sym__push] = STATE(2668), + [sym__pushOnce] = STATE(2668), + [sym__pushIf] = STATE(2668), + [sym__prepend] = STATE(2668), + [sym__prependOnce] = STATE(2668), + [sym_conditional] = STATE(638), + [sym__if] = STATE(2669), + [sym__unless] = STATE(2669), + [sym__isset] = STATE(2669), + [sym__empty] = STATE(2669), + [sym__auth] = STATE(2669), + [sym__guest] = STATE(2669), + [sym__production] = STATE(2669), + [sym__env] = STATE(2669), + [sym__hasSection] = STATE(2669), + [sym__sectionMissing] = STATE(2669), + [sym__error] = STATE(2669), + [sym_authorization] = STATE(2669), + [sym__can] = STATE(2670), + [sym__cannot] = STATE(2670), + [sym__canany] = STATE(2670), + [sym__feature] = STATE(2669), + [sym__custom] = STATE(2669), + [sym_switch] = STATE(638), + [sym_loop] = STATE(638), + [sym_loop_operator] = STATE(638), + [sym__for] = STATE(2671), + [sym__foreach] = STATE(2671), + [sym__forelse] = STATE(2671), + [sym__while] = STATE(2671), + [sym_envoy] = STATE(638), + [sym__setup] = STATE(2667), + [sym__task] = STATE(2672), + [sym__story] = STATE(2672), + [sym__hooks] = STATE(2667), + [sym__before] = STATE(2667), + [sym__after] = STATE(2667), + [sym__envoy_error] = STATE(2667), + [sym__success] = STATE(2667), + [sym__finished] = STATE(2667), + [sym_livewire] = STATE(638), + [sym__persist] = STATE(2673), + [sym__teleport] = STATE(2673), + [sym__volt] = STATE(2673), + [aux_sym__directive_body] = STATE(638), + [sym_text] = STATE(638), + [sym__text] = STATE(973), + [aux_sym_php_only_repeat1] = STATE(973), + [sym_comment] = ACTIONS(8685), + [aux_sym_keyword_token1] = ACTIONS(8687), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8689), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8691), + [anon_sym_ATphp] = ACTIONS(8693), + [aux_sym_attribute_token1] = ACTIONS(8695), + [aux_sym__inline_directive_token1] = ACTIONS(8697), + [anon_sym_ATfragment] = ACTIONS(8699), + [anon_sym_ATsection] = ACTIONS(8701), + [anon_sym_ATonce] = ACTIONS(8703), + [anon_sym_ATverbatim] = ACTIONS(8705), + [anon_sym_ATpush] = ACTIONS(8707), + [anon_sym_ATpushOnce] = ACTIONS(8709), + [anon_sym_ATpushIf] = ACTIONS(8711), + [anon_sym_ATprepend] = ACTIONS(8713), + [anon_sym_ATprependOnce] = ACTIONS(8715), + [anon_sym_ATif] = ACTIONS(8717), + [anon_sym_ATunless] = ACTIONS(8719), + [anon_sym_ATisset] = ACTIONS(8721), + [anon_sym_ATempty] = ACTIONS(8723), + [anon_sym_ATauth] = ACTIONS(8725), + [anon_sym_ATguest] = ACTIONS(8727), + [anon_sym_ATproduction] = ACTIONS(8729), + [anon_sym_ATenv] = ACTIONS(8731), + [anon_sym_AThasSection] = ACTIONS(8733), + [anon_sym_ATsectionMissing] = ACTIONS(8735), + [anon_sym_ATerror] = ACTIONS(8737), + [anon_sym_ATcan] = ACTIONS(8739), + [anon_sym_ATcannot] = ACTIONS(8741), + [anon_sym_ATcanany] = ACTIONS(8743), + [anon_sym_ATfeature] = ACTIONS(8745), + [aux_sym__custom_token1] = ACTIONS(8747), + [aux_sym__custom_token2] = ACTIONS(8749), + [anon_sym_ATswitch] = ACTIONS(8751), + [aux_sym_loop_operator_token1] = ACTIONS(8753), + [anon_sym_ATfor] = ACTIONS(8755), + [anon_sym_ATforeach] = ACTIONS(8757), + [anon_sym_ATforelse] = ACTIONS(8759), + [anon_sym_ATwhile] = ACTIONS(8761), + [anon_sym_ATsetup] = ACTIONS(8763), + [anon_sym_ATtask] = ACTIONS(8765), + [anon_sym_ATstory] = ACTIONS(8767), + [anon_sym_ATbefore] = ACTIONS(8769), + [anon_sym_ATafter] = ACTIONS(8771), + [anon_sym_ATsuccess] = ACTIONS(8773), + [anon_sym_ATfinished] = ACTIONS(8775), + [anon_sym_ATpersist] = ACTIONS(8777), + [anon_sym_ATendpersist] = ACTIONS(4609), + [anon_sym_ATteleport] = ACTIONS(8779), + [anon_sym_ATvolt] = ACTIONS(8781), + [aux_sym__text_token1] = ACTIONS(8783), + [aux_sym__text_token2] = ACTIONS(8783), + [aux_sym__text_token3] = ACTIONS(8785), }, [638] = { - [sym__definition] = STATE(274), - [sym_comment] = STATE(274), - [sym_keyword] = STATE(274), - [sym_php_statement] = STATE(274), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(274), - [sym__inline_directive] = STATE(274), - [sym__nested_directive] = STATE(274), - [sym_fragment] = STATE(274), - [sym_section] = STATE(274), - [sym_inlineSection] = STATE(274), - [sym_once] = STATE(274), - [sym_verbatim] = STATE(274), - [sym_stack] = STATE(274), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(274), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(274), - [sym_loop] = STATE(274), - [sym_loop_operator] = STATE(274), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(274), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(274), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(274), - [sym_text] = STATE(274), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(8294), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(647), + [sym_keyword] = STATE(647), + [sym_php_statement] = STATE(647), + [sym__escaped] = STATE(2667), + [sym__unescaped] = STATE(2667), + [sym__raw] = STATE(2667), + [sym__inline_raw] = STATE(2667), + [sym__multi_line_raw] = STATE(2667), + [sym_attribute] = STATE(647), + [sym__inline_directive] = STATE(647), + [sym__nested_directive] = STATE(647), + [sym_fragment] = STATE(647), + [sym_section] = STATE(647), + [sym_inlineSection] = STATE(647), + [sym_once] = STATE(647), + [sym_verbatim] = STATE(647), + [sym_stack] = STATE(647), + [sym__push] = STATE(2668), + [sym__pushOnce] = STATE(2668), + [sym__pushIf] = STATE(2668), + [sym__prepend] = STATE(2668), + [sym__prependOnce] = STATE(2668), + [sym_conditional] = STATE(647), + [sym__if] = STATE(2669), + [sym__unless] = STATE(2669), + [sym__isset] = STATE(2669), + [sym__empty] = STATE(2669), + [sym__auth] = STATE(2669), + [sym__guest] = STATE(2669), + [sym__production] = STATE(2669), + [sym__env] = STATE(2669), + [sym__hasSection] = STATE(2669), + [sym__sectionMissing] = STATE(2669), + [sym__error] = STATE(2669), + [sym_authorization] = STATE(2669), + [sym__can] = STATE(2670), + [sym__cannot] = STATE(2670), + [sym__canany] = STATE(2670), + [sym__feature] = STATE(2669), + [sym__custom] = STATE(2669), + [sym_switch] = STATE(647), + [sym_loop] = STATE(647), + [sym_loop_operator] = STATE(647), + [sym__for] = STATE(2671), + [sym__foreach] = STATE(2671), + [sym__forelse] = STATE(2671), + [sym__while] = STATE(2671), + [sym_envoy] = STATE(647), + [sym__setup] = STATE(2667), + [sym__task] = STATE(2672), + [sym__story] = STATE(2672), + [sym__hooks] = STATE(2667), + [sym__before] = STATE(2667), + [sym__after] = STATE(2667), + [sym__envoy_error] = STATE(2667), + [sym__success] = STATE(2667), + [sym__finished] = STATE(2667), + [sym_livewire] = STATE(647), + [sym__persist] = STATE(2673), + [sym__teleport] = STATE(2673), + [sym__volt] = STATE(2673), + [aux_sym__directive_body] = STATE(647), + [sym_text] = STATE(647), + [sym__text] = STATE(973), + [aux_sym_php_only_repeat1] = STATE(973), + [sym_comment] = ACTIONS(8787), + [aux_sym_keyword_token1] = ACTIONS(8687), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8689), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8691), + [anon_sym_ATphp] = ACTIONS(8693), + [aux_sym_attribute_token1] = ACTIONS(8695), + [aux_sym__inline_directive_token1] = ACTIONS(8697), + [anon_sym_ATfragment] = ACTIONS(8699), + [anon_sym_ATsection] = ACTIONS(8701), + [anon_sym_ATonce] = ACTIONS(8703), + [anon_sym_ATverbatim] = ACTIONS(8705), + [anon_sym_ATpush] = ACTIONS(8707), + [anon_sym_ATpushOnce] = ACTIONS(8709), + [anon_sym_ATpushIf] = ACTIONS(8711), + [anon_sym_ATprepend] = ACTIONS(8713), + [anon_sym_ATprependOnce] = ACTIONS(8715), + [anon_sym_ATif] = ACTIONS(8717), + [anon_sym_ATunless] = ACTIONS(8719), + [anon_sym_ATisset] = ACTIONS(8721), + [anon_sym_ATempty] = ACTIONS(8723), + [anon_sym_ATauth] = ACTIONS(8725), + [anon_sym_ATguest] = ACTIONS(8727), + [anon_sym_ATproduction] = ACTIONS(8729), + [anon_sym_ATenv] = ACTIONS(8731), + [anon_sym_AThasSection] = ACTIONS(8733), + [anon_sym_ATsectionMissing] = ACTIONS(8735), + [anon_sym_ATerror] = ACTIONS(8737), + [anon_sym_ATcan] = ACTIONS(8739), + [anon_sym_ATcannot] = ACTIONS(8741), + [anon_sym_ATcanany] = ACTIONS(8743), + [anon_sym_ATfeature] = ACTIONS(8745), + [aux_sym__custom_token1] = ACTIONS(8747), + [aux_sym__custom_token2] = ACTIONS(8749), + [anon_sym_ATswitch] = ACTIONS(8751), + [aux_sym_loop_operator_token1] = ACTIONS(8753), + [anon_sym_ATfor] = ACTIONS(8755), + [anon_sym_ATforeach] = ACTIONS(8757), + [anon_sym_ATforelse] = ACTIONS(8759), + [anon_sym_ATwhile] = ACTIONS(8761), + [anon_sym_ATsetup] = ACTIONS(8763), + [anon_sym_ATtask] = ACTIONS(8765), + [anon_sym_ATstory] = ACTIONS(8767), + [anon_sym_ATbefore] = ACTIONS(8769), + [anon_sym_ATafter] = ACTIONS(8771), + [anon_sym_ATsuccess] = ACTIONS(8773), + [anon_sym_ATfinished] = ACTIONS(8775), + [anon_sym_ATpersist] = ACTIONS(8777), + [anon_sym_ATendpersist] = ACTIONS(4996), + [anon_sym_ATteleport] = ACTIONS(8779), + [anon_sym_ATvolt] = ACTIONS(8781), + [aux_sym__text_token1] = ACTIONS(8783), + [aux_sym__text_token2] = ACTIONS(8783), + [aux_sym__text_token3] = ACTIONS(8785), }, [639] = { - [sym__definition] = STATE(641), - [sym_comment] = STATE(641), - [sym_keyword] = STATE(641), - [sym_php_statement] = STATE(641), - [sym__escaped] = STATE(2811), - [sym__unescaped] = STATE(2811), - [sym__raw] = STATE(2811), - [sym__inline_raw] = STATE(2811), - [sym__multi_line_raw] = STATE(2811), - [sym_attribute] = STATE(641), - [sym__inline_directive] = STATE(641), - [sym__nested_directive] = STATE(641), - [sym_fragment] = STATE(641), - [sym_section] = STATE(641), - [sym_inlineSection] = STATE(641), - [sym_once] = STATE(641), - [sym_verbatim] = STATE(641), - [sym_stack] = STATE(641), - [sym__push] = STATE(2812), - [sym__pushOnce] = STATE(2812), - [sym__pushIf] = STATE(2812), - [sym__prepend] = STATE(2812), - [sym__prependOnce] = STATE(2812), - [sym_conditional] = STATE(641), - [sym__if] = STATE(2813), - [sym__unless] = STATE(2813), - [sym__isset] = STATE(2813), - [sym__empty] = STATE(2813), - [sym__auth] = STATE(2813), - [sym__guest] = STATE(2813), - [sym__production] = STATE(2813), - [sym__env] = STATE(2813), - [sym__hasSection] = STATE(2813), - [sym__sectionMissing] = STATE(2813), - [sym__error] = STATE(2813), - [sym_authorization] = STATE(2813), - [sym__can] = STATE(2814), - [sym__cannot] = STATE(2814), - [sym__canany] = STATE(2814), - [sym__feature] = STATE(2813), - [sym__custom] = STATE(2813), - [sym_switch] = STATE(641), - [sym_loop] = STATE(641), - [sym_loop_operator] = STATE(641), - [sym__for] = STATE(2815), - [sym__foreach] = STATE(2815), - [sym__forelse] = STATE(2815), - [sym__while] = STATE(2815), - [sym_envoy] = STATE(641), - [sym__setup] = STATE(2811), - [sym__task] = STATE(2816), - [sym__story] = STATE(2816), - [sym__hooks] = STATE(2811), - [sym__before] = STATE(2811), - [sym__after] = STATE(2811), - [sym__envoy_error] = STATE(2811), - [sym__success] = STATE(2811), - [sym__finished] = STATE(2811), - [sym_livewire] = STATE(641), - [sym__persist] = STATE(2817), - [sym__teleport] = STATE(2817), - [sym__volt] = STATE(2817), - [aux_sym__directive_body] = STATE(641), - [sym_text] = STATE(641), - [sym__text] = STATE(958), - [aux_sym_php_only_repeat1] = STATE(958), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8296), - [aux_sym_keyword_token1] = ACTIONS(8298), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8300), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8302), - [anon_sym_ATphp] = ACTIONS(8304), - [aux_sym_attribute_token1] = ACTIONS(8306), - [aux_sym__inline_directive_token1] = ACTIONS(8308), - [anon_sym_ATfragment] = ACTIONS(8310), - [anon_sym_ATsection] = ACTIONS(8312), - [anon_sym_ATonce] = ACTIONS(8314), - [anon_sym_ATverbatim] = ACTIONS(8316), - [anon_sym_ATpush] = ACTIONS(8318), - [anon_sym_ATpushOnce] = ACTIONS(8320), - [anon_sym_ATpushIf] = ACTIONS(8322), - [anon_sym_ATprepend] = ACTIONS(8324), - [anon_sym_ATprependOnce] = ACTIONS(8326), - [anon_sym_ATif] = ACTIONS(8328), - [anon_sym_ATunless] = ACTIONS(8330), - [anon_sym_ATisset] = ACTIONS(8332), - [anon_sym_ATempty] = ACTIONS(8334), - [anon_sym_ATauth] = ACTIONS(8336), - [anon_sym_ATguest] = ACTIONS(8338), - [anon_sym_ATproduction] = ACTIONS(8340), - [anon_sym_ATenv] = ACTIONS(8342), - [anon_sym_AThasSection] = ACTIONS(8344), - [anon_sym_ATsectionMissing] = ACTIONS(8346), - [anon_sym_ATerror] = ACTIONS(8348), - [anon_sym_ATcan] = ACTIONS(8350), - [anon_sym_ATcannot] = ACTIONS(8352), - [anon_sym_ATcanany] = ACTIONS(8354), - [anon_sym_ATfeature] = ACTIONS(8356), - [aux_sym__custom_token1] = ACTIONS(8358), - [aux_sym__custom_token2] = ACTIONS(8360), - [anon_sym_ATswitch] = ACTIONS(8362), - [aux_sym_loop_operator_token1] = ACTIONS(8364), - [anon_sym_ATfor] = ACTIONS(8366), - [anon_sym_ATforeach] = ACTIONS(8368), - [anon_sym_ATforelse] = ACTIONS(8370), - [anon_sym_ATwhile] = ACTIONS(8372), - [anon_sym_ATsetup] = ACTIONS(8374), - [anon_sym_ATtask] = ACTIONS(8376), - [anon_sym_ATstory] = ACTIONS(8378), - [anon_sym_ATbefore] = ACTIONS(8380), - [anon_sym_ATafter] = ACTIONS(8382), - [anon_sym_ATsuccess] = ACTIONS(8384), - [anon_sym_ATfinished] = ACTIONS(8386), - [anon_sym_ATpersist] = ACTIONS(8388), - [anon_sym_ATteleport] = ACTIONS(8390), - [anon_sym_ATendteleport] = ACTIONS(4712), - [anon_sym_ATvolt] = ACTIONS(8392), - [aux_sym__text_token1] = ACTIONS(8394), - [aux_sym__text_token2] = ACTIONS(8394), - [aux_sym__text_token3] = ACTIONS(8396), + [sym__definition] = STATE(639), + [sym_keyword] = STATE(639), + [sym_php_statement] = STATE(639), + [sym__escaped] = STATE(2503), + [sym__unescaped] = STATE(2503), + [sym__raw] = STATE(2503), + [sym__inline_raw] = STATE(2503), + [sym__multi_line_raw] = STATE(2503), + [sym_attribute] = STATE(639), + [sym__inline_directive] = STATE(639), + [sym__nested_directive] = STATE(639), + [sym_fragment] = STATE(639), + [sym_section] = STATE(639), + [sym_inlineSection] = STATE(639), + [sym_once] = STATE(639), + [sym_verbatim] = STATE(639), + [sym_stack] = STATE(639), + [sym__push] = STATE(2504), + [sym__pushOnce] = STATE(2504), + [sym__pushIf] = STATE(2504), + [sym__prepend] = STATE(2504), + [sym__prependOnce] = STATE(2504), + [sym_conditional] = STATE(639), + [sym__if] = STATE(2505), + [sym__unless] = STATE(2505), + [sym__isset] = STATE(2505), + [sym__empty] = STATE(2505), + [sym__auth] = STATE(2505), + [sym__guest] = STATE(2505), + [sym__production] = STATE(2505), + [sym__env] = STATE(2505), + [sym__hasSection] = STATE(2505), + [sym__sectionMissing] = STATE(2505), + [sym__error] = STATE(2505), + [sym_authorization] = STATE(2505), + [sym__can] = STATE(2506), + [sym__cannot] = STATE(2506), + [sym__canany] = STATE(2506), + [sym__feature] = STATE(2505), + [sym__custom] = STATE(2505), + [sym_switch] = STATE(639), + [sym_loop] = STATE(639), + [sym_loop_operator] = STATE(639), + [sym__for] = STATE(2507), + [sym__foreach] = STATE(2507), + [sym__forelse] = STATE(2507), + [sym__while] = STATE(2507), + [sym_envoy] = STATE(639), + [sym__setup] = STATE(2503), + [sym__task] = STATE(2508), + [sym__story] = STATE(2508), + [sym__hooks] = STATE(2503), + [sym__before] = STATE(2503), + [sym__after] = STATE(2503), + [sym__envoy_error] = STATE(2503), + [sym__success] = STATE(2503), + [sym__finished] = STATE(2503), + [sym_livewire] = STATE(639), + [sym__persist] = STATE(2509), + [sym__teleport] = STATE(2509), + [sym__volt] = STATE(2509), + [aux_sym__directive_body] = STATE(639), + [sym_text] = STATE(639), + [sym__text] = STATE(982), + [aux_sym_php_only_repeat1] = STATE(982), + [sym_comment] = ACTIONS(8789), + [aux_sym_keyword_token1] = ACTIONS(8792), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8795), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8798), + [anon_sym_ATphp] = ACTIONS(8801), + [aux_sym_attribute_token1] = ACTIONS(8804), + [aux_sym__inline_directive_token1] = ACTIONS(8807), + [anon_sym_ATfragment] = ACTIONS(8810), + [anon_sym_ATsection] = ACTIONS(8813), + [anon_sym_ATonce] = ACTIONS(8816), + [anon_sym_ATverbatim] = ACTIONS(8819), + [anon_sym_ATpush] = ACTIONS(8822), + [anon_sym_ATpushOnce] = ACTIONS(8825), + [anon_sym_ATpushIf] = ACTIONS(8828), + [anon_sym_ATprepend] = ACTIONS(8831), + [anon_sym_ATprependOnce] = ACTIONS(8834), + [anon_sym_ATif] = ACTIONS(8837), + [anon_sym_ATunless] = ACTIONS(8840), + [anon_sym_ATisset] = ACTIONS(8843), + [anon_sym_ATempty] = ACTIONS(8846), + [anon_sym_ATauth] = ACTIONS(8849), + [anon_sym_ATguest] = ACTIONS(8852), + [anon_sym_ATproduction] = ACTIONS(8855), + [anon_sym_ATenv] = ACTIONS(8858), + [anon_sym_AThasSection] = ACTIONS(8861), + [anon_sym_ATsectionMissing] = ACTIONS(8864), + [anon_sym_ATerror] = ACTIONS(8867), + [anon_sym_ATcan] = ACTIONS(8870), + [anon_sym_ATcannot] = ACTIONS(8873), + [anon_sym_ATcanany] = ACTIONS(8876), + [anon_sym_ATfeature] = ACTIONS(8879), + [aux_sym__custom_token1] = ACTIONS(8882), + [aux_sym__custom_token2] = ACTIONS(8885), + [anon_sym_ATswitch] = ACTIONS(8888), + [aux_sym_loop_operator_token1] = ACTIONS(8891), + [anon_sym_ATfor] = ACTIONS(8894), + [anon_sym_ATforeach] = ACTIONS(8897), + [anon_sym_ATforelse] = ACTIONS(8900), + [anon_sym_ATwhile] = ACTIONS(8903), + [anon_sym_ATsetup] = ACTIONS(8906), + [anon_sym_ATtask] = ACTIONS(8909), + [anon_sym_ATendtask] = ACTIONS(5035), + [anon_sym_ATstory] = ACTIONS(8912), + [anon_sym_ATbefore] = ACTIONS(8915), + [anon_sym_ATafter] = ACTIONS(8918), + [anon_sym_ATsuccess] = ACTIONS(8921), + [anon_sym_ATfinished] = ACTIONS(8924), + [anon_sym_ATpersist] = ACTIONS(8927), + [anon_sym_ATteleport] = ACTIONS(8930), + [anon_sym_ATvolt] = ACTIONS(8933), + [aux_sym__text_token1] = ACTIONS(8936), + [aux_sym__text_token2] = ACTIONS(8936), + [aux_sym__text_token3] = ACTIONS(8939), }, [640] = { - [sym__definition] = STATE(656), - [sym_comment] = STATE(656), - [sym_keyword] = STATE(656), - [sym_php_statement] = STATE(656), - [sym__escaped] = STATE(2052), - [sym__unescaped] = STATE(2052), - [sym__raw] = STATE(2052), - [sym__inline_raw] = STATE(2052), - [sym__multi_line_raw] = STATE(2052), - [sym_attribute] = STATE(656), - [sym__inline_directive] = STATE(656), - [sym__nested_directive] = STATE(656), - [sym_fragment] = STATE(656), - [sym_section] = STATE(656), - [sym_inlineSection] = STATE(656), - [sym_once] = STATE(656), - [sym_verbatim] = STATE(656), - [sym_stack] = STATE(656), - [sym__push] = STATE(2051), - [sym__pushOnce] = STATE(2051), - [sym__pushIf] = STATE(2051), - [sym__prepend] = STATE(2051), - [sym__prependOnce] = STATE(2051), - [sym_conditional] = STATE(656), - [sym__if] = STATE(2050), - [sym__unless] = STATE(2050), - [sym__isset] = STATE(2050), - [sym__empty] = STATE(2050), - [sym__auth] = STATE(2050), - [sym__guest] = STATE(2050), - [sym__production] = STATE(2050), - [sym__env] = STATE(2050), - [sym__hasSection] = STATE(2050), - [sym__sectionMissing] = STATE(2050), - [sym__error] = STATE(2050), - [sym_authorization] = STATE(2050), - [sym__can] = STATE(2049), - [sym__cannot] = STATE(2049), - [sym__canany] = STATE(2049), - [sym__feature] = STATE(2050), - [sym__custom] = STATE(2050), - [sym_switch] = STATE(656), - [sym_loop] = STATE(656), - [sym_loop_operator] = STATE(656), - [sym__for] = STATE(2048), - [sym__foreach] = STATE(2048), - [sym__forelse] = STATE(2048), - [sym__while] = STATE(2048), - [sym_envoy] = STATE(656), - [sym__setup] = STATE(2052), - [sym__task] = STATE(2047), - [sym__story] = STATE(2047), - [sym__hooks] = STATE(2052), - [sym__before] = STATE(2052), - [sym__after] = STATE(2052), - [sym__envoy_error] = STATE(2052), - [sym__success] = STATE(2052), - [sym__finished] = STATE(2052), - [sym_livewire] = STATE(656), - [sym__persist] = STATE(2046), - [sym__teleport] = STATE(2046), - [sym__volt] = STATE(2046), - [aux_sym__directive_body] = STATE(656), - [sym_text] = STATE(656), - [sym__text] = STATE(1373), - [aux_sym_php_only_repeat1] = STATE(1373), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8398), - [aux_sym_keyword_token1] = ACTIONS(8400), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8402), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8404), - [anon_sym_ATphp] = ACTIONS(8406), - [aux_sym_attribute_token1] = ACTIONS(8408), - [aux_sym__inline_directive_token1] = ACTIONS(8410), - [anon_sym_ATfragment] = ACTIONS(8412), - [anon_sym_ATsection] = ACTIONS(8414), - [anon_sym_ATonce] = ACTIONS(8416), - [anon_sym_ATverbatim] = ACTIONS(8418), - [anon_sym_ATpush] = ACTIONS(8420), - [anon_sym_ATpushOnce] = ACTIONS(8422), - [anon_sym_ATpushIf] = ACTIONS(8424), - [anon_sym_ATprepend] = ACTIONS(8426), - [anon_sym_ATprependOnce] = ACTIONS(8428), - [anon_sym_ATendPrependOnce] = ACTIONS(4712), - [anon_sym_ATif] = ACTIONS(8430), - [anon_sym_ATunless] = ACTIONS(8432), - [anon_sym_ATisset] = ACTIONS(8434), - [anon_sym_ATempty] = ACTIONS(8436), - [anon_sym_ATauth] = ACTIONS(8438), - [anon_sym_ATguest] = ACTIONS(8440), - [anon_sym_ATproduction] = ACTIONS(8442), - [anon_sym_ATenv] = ACTIONS(8444), - [anon_sym_AThasSection] = ACTIONS(8446), - [anon_sym_ATsectionMissing] = ACTIONS(8448), - [anon_sym_ATerror] = ACTIONS(8450), - [anon_sym_ATcan] = ACTIONS(8452), - [anon_sym_ATcannot] = ACTIONS(8454), - [anon_sym_ATcanany] = ACTIONS(8456), - [anon_sym_ATfeature] = ACTIONS(8458), - [aux_sym__custom_token1] = ACTIONS(8460), - [aux_sym__custom_token2] = ACTIONS(8462), - [anon_sym_ATswitch] = ACTIONS(8464), - [aux_sym_loop_operator_token1] = ACTIONS(8466), - [anon_sym_ATfor] = ACTIONS(8468), - [anon_sym_ATforeach] = ACTIONS(8470), - [anon_sym_ATforelse] = ACTIONS(8472), - [anon_sym_ATwhile] = ACTIONS(8474), - [anon_sym_ATsetup] = ACTIONS(8476), - [anon_sym_ATtask] = ACTIONS(8478), - [anon_sym_ATstory] = ACTIONS(8480), - [anon_sym_ATbefore] = ACTIONS(8482), - [anon_sym_ATafter] = ACTIONS(8484), - [anon_sym_ATsuccess] = ACTIONS(8486), - [anon_sym_ATfinished] = ACTIONS(8488), - [anon_sym_ATpersist] = ACTIONS(8490), - [anon_sym_ATteleport] = ACTIONS(8492), - [anon_sym_ATvolt] = ACTIONS(8494), - [aux_sym__text_token1] = ACTIONS(8496), - [aux_sym__text_token2] = ACTIONS(8496), - [aux_sym__text_token3] = ACTIONS(8498), + [sym__definition] = STATE(640), + [sym_keyword] = STATE(640), + [sym_php_statement] = STATE(640), + [sym__escaped] = STATE(3168), + [sym__unescaped] = STATE(3168), + [sym__raw] = STATE(3168), + [sym__inline_raw] = STATE(3168), + [sym__multi_line_raw] = STATE(3168), + [sym_attribute] = STATE(640), + [sym__inline_directive] = STATE(640), + [sym__nested_directive] = STATE(640), + [sym_fragment] = STATE(640), + [sym_section] = STATE(640), + [sym_inlineSection] = STATE(640), + [sym_once] = STATE(640), + [sym_verbatim] = STATE(640), + [sym_stack] = STATE(640), + [sym__push] = STATE(3180), + [sym__pushOnce] = STATE(3180), + [sym__pushIf] = STATE(3180), + [sym__prepend] = STATE(3180), + [sym__prependOnce] = STATE(3180), + [sym_conditional] = STATE(640), + [sym__if] = STATE(3183), + [sym__unless] = STATE(3183), + [sym__isset] = STATE(3183), + [sym__empty] = STATE(3183), + [sym__auth] = STATE(3183), + [sym__guest] = STATE(3183), + [sym__production] = STATE(3183), + [sym__env] = STATE(3183), + [sym__hasSection] = STATE(3183), + [sym__sectionMissing] = STATE(3183), + [sym__error] = STATE(3183), + [sym_authorization] = STATE(3183), + [sym__can] = STATE(3184), + [sym__cannot] = STATE(3184), + [sym__canany] = STATE(3184), + [sym__feature] = STATE(3183), + [sym__custom] = STATE(3183), + [sym_switch] = STATE(640), + [sym_loop] = STATE(640), + [sym_loop_operator] = STATE(640), + [sym__for] = STATE(3187), + [sym__foreach] = STATE(3187), + [sym__forelse] = STATE(3187), + [sym__while] = STATE(3187), + [sym_envoy] = STATE(640), + [sym__setup] = STATE(3168), + [sym__task] = STATE(3191), + [sym__story] = STATE(3191), + [sym__hooks] = STATE(3168), + [sym__before] = STATE(3168), + [sym__after] = STATE(3168), + [sym__envoy_error] = STATE(3168), + [sym__success] = STATE(3168), + [sym__finished] = STATE(3168), + [sym_livewire] = STATE(640), + [sym__persist] = STATE(3210), + [sym__teleport] = STATE(3210), + [sym__volt] = STATE(3210), + [sym_text] = STATE(640), + [sym__text] = STATE(934), + [aux_sym_blade_repeat1] = STATE(640), + [aux_sym_php_only_repeat1] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(4919), + [sym_comment] = ACTIONS(8942), + [aux_sym_keyword_token1] = ACTIONS(8945), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8948), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8951), + [anon_sym_ATphp] = ACTIONS(8954), + [aux_sym_attribute_token1] = ACTIONS(8957), + [aux_sym__inline_directive_token1] = ACTIONS(8960), + [anon_sym_ATfragment] = ACTIONS(8963), + [anon_sym_ATsection] = ACTIONS(8966), + [anon_sym_ATonce] = ACTIONS(8969), + [anon_sym_ATverbatim] = ACTIONS(8972), + [anon_sym_ATpush] = ACTIONS(8975), + [anon_sym_ATpushOnce] = ACTIONS(8978), + [anon_sym_ATpushIf] = ACTIONS(8981), + [anon_sym_ATprepend] = ACTIONS(8984), + [anon_sym_ATprependOnce] = ACTIONS(8987), + [anon_sym_ATif] = ACTIONS(8990), + [anon_sym_ATunless] = ACTIONS(8993), + [anon_sym_ATisset] = ACTIONS(8996), + [anon_sym_ATempty] = ACTIONS(8999), + [anon_sym_ATauth] = ACTIONS(9002), + [anon_sym_ATguest] = ACTIONS(9005), + [anon_sym_ATproduction] = ACTIONS(9008), + [anon_sym_ATenv] = ACTIONS(9011), + [anon_sym_AThasSection] = ACTIONS(9014), + [anon_sym_ATsectionMissing] = ACTIONS(9017), + [anon_sym_ATerror] = ACTIONS(9020), + [anon_sym_ATcan] = ACTIONS(9023), + [anon_sym_ATcannot] = ACTIONS(9026), + [anon_sym_ATcanany] = ACTIONS(9029), + [anon_sym_ATfeature] = ACTIONS(9032), + [aux_sym__custom_token1] = ACTIONS(9035), + [aux_sym__custom_token2] = ACTIONS(9038), + [anon_sym_ATswitch] = ACTIONS(9041), + [aux_sym_loop_operator_token1] = ACTIONS(9044), + [anon_sym_ATfor] = ACTIONS(9047), + [anon_sym_ATforeach] = ACTIONS(9050), + [anon_sym_ATforelse] = ACTIONS(9053), + [anon_sym_ATwhile] = ACTIONS(9056), + [anon_sym_ATsetup] = ACTIONS(9059), + [anon_sym_ATtask] = ACTIONS(9062), + [anon_sym_ATstory] = ACTIONS(9065), + [anon_sym_ATbefore] = ACTIONS(9068), + [anon_sym_ATafter] = ACTIONS(9071), + [anon_sym_ATsuccess] = ACTIONS(9074), + [anon_sym_ATfinished] = ACTIONS(9077), + [anon_sym_ATpersist] = ACTIONS(9080), + [anon_sym_ATteleport] = ACTIONS(9083), + [anon_sym_ATvolt] = ACTIONS(9086), + [aux_sym__text_token1] = ACTIONS(9089), + [aux_sym__text_token2] = ACTIONS(9089), + [aux_sym__text_token3] = ACTIONS(9092), }, [641] = { - [sym__definition] = STATE(650), - [sym_comment] = STATE(650), - [sym_keyword] = STATE(650), - [sym_php_statement] = STATE(650), - [sym__escaped] = STATE(2811), - [sym__unescaped] = STATE(2811), - [sym__raw] = STATE(2811), - [sym__inline_raw] = STATE(2811), - [sym__multi_line_raw] = STATE(2811), - [sym_attribute] = STATE(650), - [sym__inline_directive] = STATE(650), - [sym__nested_directive] = STATE(650), - [sym_fragment] = STATE(650), - [sym_section] = STATE(650), - [sym_inlineSection] = STATE(650), - [sym_once] = STATE(650), - [sym_verbatim] = STATE(650), - [sym_stack] = STATE(650), - [sym__push] = STATE(2812), - [sym__pushOnce] = STATE(2812), - [sym__pushIf] = STATE(2812), - [sym__prepend] = STATE(2812), - [sym__prependOnce] = STATE(2812), - [sym_conditional] = STATE(650), - [sym__if] = STATE(2813), - [sym__unless] = STATE(2813), - [sym__isset] = STATE(2813), - [sym__empty] = STATE(2813), - [sym__auth] = STATE(2813), - [sym__guest] = STATE(2813), - [sym__production] = STATE(2813), - [sym__env] = STATE(2813), - [sym__hasSection] = STATE(2813), - [sym__sectionMissing] = STATE(2813), - [sym__error] = STATE(2813), - [sym_authorization] = STATE(2813), - [sym__can] = STATE(2814), - [sym__cannot] = STATE(2814), - [sym__canany] = STATE(2814), - [sym__feature] = STATE(2813), - [sym__custom] = STATE(2813), - [sym_switch] = STATE(650), - [sym_loop] = STATE(650), - [sym_loop_operator] = STATE(650), - [sym__for] = STATE(2815), - [sym__foreach] = STATE(2815), - [sym__forelse] = STATE(2815), - [sym__while] = STATE(2815), - [sym_envoy] = STATE(650), - [sym__setup] = STATE(2811), - [sym__task] = STATE(2816), - [sym__story] = STATE(2816), - [sym__hooks] = STATE(2811), - [sym__before] = STATE(2811), - [sym__after] = STATE(2811), - [sym__envoy_error] = STATE(2811), - [sym__success] = STATE(2811), - [sym__finished] = STATE(2811), - [sym_livewire] = STATE(650), - [sym__persist] = STATE(2817), - [sym__teleport] = STATE(2817), - [sym__volt] = STATE(2817), - [aux_sym__directive_body] = STATE(650), - [sym_text] = STATE(650), - [sym__text] = STATE(958), - [aux_sym_php_only_repeat1] = STATE(958), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8296), - [aux_sym_keyword_token1] = ACTIONS(8298), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8300), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8302), - [anon_sym_ATphp] = ACTIONS(8304), - [aux_sym_attribute_token1] = ACTIONS(8306), - [aux_sym__inline_directive_token1] = ACTIONS(8308), - [anon_sym_ATfragment] = ACTIONS(8310), - [anon_sym_ATsection] = ACTIONS(8312), - [anon_sym_ATonce] = ACTIONS(8314), - [anon_sym_ATverbatim] = ACTIONS(8316), - [anon_sym_ATpush] = ACTIONS(8318), - [anon_sym_ATpushOnce] = ACTIONS(8320), - [anon_sym_ATpushIf] = ACTIONS(8322), - [anon_sym_ATprepend] = ACTIONS(8324), - [anon_sym_ATprependOnce] = ACTIONS(8326), - [anon_sym_ATif] = ACTIONS(8328), - [anon_sym_ATunless] = ACTIONS(8330), - [anon_sym_ATisset] = ACTIONS(8332), - [anon_sym_ATempty] = ACTIONS(8334), - [anon_sym_ATauth] = ACTIONS(8336), - [anon_sym_ATguest] = ACTIONS(8338), - [anon_sym_ATproduction] = ACTIONS(8340), - [anon_sym_ATenv] = ACTIONS(8342), - [anon_sym_AThasSection] = ACTIONS(8344), - [anon_sym_ATsectionMissing] = ACTIONS(8346), - [anon_sym_ATerror] = ACTIONS(8348), - [anon_sym_ATcan] = ACTIONS(8350), - [anon_sym_ATcannot] = ACTIONS(8352), - [anon_sym_ATcanany] = ACTIONS(8354), - [anon_sym_ATfeature] = ACTIONS(8356), - [aux_sym__custom_token1] = ACTIONS(8358), - [aux_sym__custom_token2] = ACTIONS(8360), - [anon_sym_ATswitch] = ACTIONS(8362), - [aux_sym_loop_operator_token1] = ACTIONS(8364), - [anon_sym_ATfor] = ACTIONS(8366), - [anon_sym_ATforeach] = ACTIONS(8368), - [anon_sym_ATforelse] = ACTIONS(8370), - [anon_sym_ATwhile] = ACTIONS(8372), - [anon_sym_ATsetup] = ACTIONS(8374), - [anon_sym_ATtask] = ACTIONS(8376), - [anon_sym_ATstory] = ACTIONS(8378), - [anon_sym_ATbefore] = ACTIONS(8380), - [anon_sym_ATafter] = ACTIONS(8382), - [anon_sym_ATsuccess] = ACTIONS(8384), - [anon_sym_ATfinished] = ACTIONS(8386), - [anon_sym_ATpersist] = ACTIONS(8388), - [anon_sym_ATteleport] = ACTIONS(8390), - [anon_sym_ATendteleport] = ACTIONS(4626), - [anon_sym_ATvolt] = ACTIONS(8392), - [aux_sym__text_token1] = ACTIONS(8394), - [aux_sym__text_token2] = ACTIONS(8394), - [aux_sym__text_token3] = ACTIONS(8396), - }, - [642] = { [sym__definition] = STATE(642), - [sym_comment] = STATE(642), [sym_keyword] = STATE(642), [sym_php_statement] = STATE(642), - [sym__escaped] = STATE(2643), - [sym__unescaped] = STATE(2643), - [sym__raw] = STATE(2643), - [sym__inline_raw] = STATE(2643), - [sym__multi_line_raw] = STATE(2643), + [sym__escaped] = STATE(2749), + [sym__unescaped] = STATE(2749), + [sym__raw] = STATE(2749), + [sym__inline_raw] = STATE(2749), + [sym__multi_line_raw] = STATE(2749), [sym_attribute] = STATE(642), [sym__inline_directive] = STATE(642), [sym__nested_directive] = STATE(642), @@ -104165,239 +102902,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(642), [sym_verbatim] = STATE(642), [sym_stack] = STATE(642), - [sym__push] = STATE(2644), - [sym__pushOnce] = STATE(2644), - [sym__pushIf] = STATE(2644), - [sym__prepend] = STATE(2644), - [sym__prependOnce] = STATE(2644), + [sym__push] = STATE(2750), + [sym__pushOnce] = STATE(2750), + [sym__pushIf] = STATE(2750), + [sym__prepend] = STATE(2750), + [sym__prependOnce] = STATE(2750), [sym_conditional] = STATE(642), - [sym__if] = STATE(2645), - [sym__unless] = STATE(2645), - [sym__isset] = STATE(2645), - [sym__empty] = STATE(2645), - [sym__auth] = STATE(2645), - [sym__guest] = STATE(2645), - [sym__production] = STATE(2645), - [sym__env] = STATE(2645), - [sym__hasSection] = STATE(2645), - [sym__sectionMissing] = STATE(2645), - [sym__error] = STATE(2645), - [sym_authorization] = STATE(2645), - [sym__can] = STATE(2646), - [sym__cannot] = STATE(2646), - [sym__canany] = STATE(2646), - [sym__feature] = STATE(2645), - [sym__custom] = STATE(2645), + [sym__if] = STATE(2751), + [sym__unless] = STATE(2751), + [sym__isset] = STATE(2751), + [sym__empty] = STATE(2751), + [sym__auth] = STATE(2751), + [sym__guest] = STATE(2751), + [sym__production] = STATE(2751), + [sym__env] = STATE(2751), + [sym__hasSection] = STATE(2751), + [sym__sectionMissing] = STATE(2751), + [sym__error] = STATE(2751), + [sym_authorization] = STATE(2751), + [sym__can] = STATE(2752), + [sym__cannot] = STATE(2752), + [sym__canany] = STATE(2752), + [sym__feature] = STATE(2751), + [sym__custom] = STATE(2751), [sym_switch] = STATE(642), [sym_loop] = STATE(642), [sym_loop_operator] = STATE(642), - [sym__for] = STATE(2647), - [sym__foreach] = STATE(2647), - [sym__forelse] = STATE(2647), - [sym__while] = STATE(2647), + [sym__for] = STATE(2753), + [sym__foreach] = STATE(2753), + [sym__forelse] = STATE(2753), + [sym__while] = STATE(2753), [sym_envoy] = STATE(642), - [sym__setup] = STATE(2643), - [sym__task] = STATE(2648), - [sym__story] = STATE(2648), - [sym__hooks] = STATE(2643), - [sym__before] = STATE(2643), - [sym__after] = STATE(2643), - [sym__envoy_error] = STATE(2643), - [sym__success] = STATE(2643), - [sym__finished] = STATE(2643), + [sym__setup] = STATE(2749), + [sym__task] = STATE(2754), + [sym__story] = STATE(2754), + [sym__hooks] = STATE(2749), + [sym__before] = STATE(2749), + [sym__after] = STATE(2749), + [sym__envoy_error] = STATE(2749), + [sym__success] = STATE(2749), + [sym__finished] = STATE(2749), [sym_livewire] = STATE(642), - [sym__persist] = STATE(2649), - [sym__teleport] = STATE(2649), - [sym__volt] = STATE(2649), + [sym__persist] = STATE(2755), + [sym__teleport] = STATE(2755), + [sym__volt] = STATE(2755), [aux_sym__directive_body] = STATE(642), [sym_text] = STATE(642), - [sym__text] = STATE(968), - [aux_sym_php_only_repeat1] = STATE(968), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8500), - [aux_sym_keyword_token1] = ACTIONS(8503), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8506), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8509), - [anon_sym_ATphp] = ACTIONS(8512), - [aux_sym_attribute_token1] = ACTIONS(8515), - [aux_sym__inline_directive_token1] = ACTIONS(8518), - [anon_sym_ATfragment] = ACTIONS(8521), - [anon_sym_ATsection] = ACTIONS(8524), - [anon_sym_ATonce] = ACTIONS(8527), - [anon_sym_ATverbatim] = ACTIONS(8530), - [anon_sym_ATpush] = ACTIONS(8533), - [anon_sym_ATpushOnce] = ACTIONS(8536), - [anon_sym_ATpushIf] = ACTIONS(8539), - [anon_sym_ATprepend] = ACTIONS(8542), - [anon_sym_ATprependOnce] = ACTIONS(8545), - [anon_sym_ATif] = ACTIONS(8548), - [anon_sym_ATunless] = ACTIONS(8551), - [anon_sym_ATisset] = ACTIONS(8554), - [anon_sym_ATempty] = ACTIONS(8557), - [anon_sym_ATauth] = ACTIONS(8560), - [anon_sym_ATguest] = ACTIONS(8563), - [anon_sym_ATproduction] = ACTIONS(8566), - [anon_sym_ATenv] = ACTIONS(8569), - [anon_sym_AThasSection] = ACTIONS(8572), - [anon_sym_ATsectionMissing] = ACTIONS(8575), - [anon_sym_ATerror] = ACTIONS(8578), - [anon_sym_ATcan] = ACTIONS(8581), - [anon_sym_ATcannot] = ACTIONS(8584), - [anon_sym_ATcanany] = ACTIONS(8587), - [anon_sym_ATfeature] = ACTIONS(8590), - [aux_sym__custom_token1] = ACTIONS(8593), - [aux_sym__custom_token2] = ACTIONS(8596), - [anon_sym_ATswitch] = ACTIONS(8599), - [aux_sym_loop_operator_token1] = ACTIONS(8602), - [anon_sym_ATfor] = ACTIONS(8605), - [anon_sym_ATforeach] = ACTIONS(8608), - [anon_sym_ATforelse] = ACTIONS(8611), - [anon_sym_ATwhile] = ACTIONS(8614), - [anon_sym_ATsetup] = ACTIONS(8617), - [anon_sym_ATtask] = ACTIONS(8620), - [anon_sym_ATstory] = ACTIONS(8623), - [anon_sym_ATendstory] = ACTIONS(3925), - [anon_sym_ATbefore] = ACTIONS(8626), - [anon_sym_ATafter] = ACTIONS(8629), - [anon_sym_ATsuccess] = ACTIONS(8632), - [anon_sym_ATfinished] = ACTIONS(8635), - [anon_sym_ATpersist] = ACTIONS(8638), - [anon_sym_ATteleport] = ACTIONS(8641), - [anon_sym_ATvolt] = ACTIONS(8644), - [aux_sym__text_token1] = ACTIONS(8647), - [aux_sym__text_token2] = ACTIONS(8647), - [aux_sym__text_token3] = ACTIONS(8650), + [sym__text] = STATE(969), + [aux_sym_php_only_repeat1] = STATE(969), + [sym_comment] = ACTIONS(9095), + [aux_sym_keyword_token1] = ACTIONS(9097), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9099), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9101), + [anon_sym_ATphp] = ACTIONS(9103), + [aux_sym_attribute_token1] = ACTIONS(9105), + [aux_sym__inline_directive_token1] = ACTIONS(9107), + [anon_sym_ATfragment] = ACTIONS(9109), + [anon_sym_ATsection] = ACTIONS(9111), + [anon_sym_ATonce] = ACTIONS(9113), + [anon_sym_ATverbatim] = ACTIONS(9115), + [anon_sym_ATpush] = ACTIONS(9117), + [anon_sym_ATpushOnce] = ACTIONS(9119), + [anon_sym_ATpushIf] = ACTIONS(9121), + [anon_sym_ATprepend] = ACTIONS(9123), + [anon_sym_ATprependOnce] = ACTIONS(9125), + [anon_sym_ATif] = ACTIONS(9127), + [anon_sym_ATunless] = ACTIONS(9129), + [anon_sym_ATisset] = ACTIONS(9131), + [anon_sym_ATempty] = ACTIONS(9133), + [anon_sym_ATauth] = ACTIONS(9135), + [anon_sym_ATguest] = ACTIONS(9137), + [anon_sym_ATproduction] = ACTIONS(9139), + [anon_sym_ATenv] = ACTIONS(9141), + [anon_sym_AThasSection] = ACTIONS(9143), + [anon_sym_ATsectionMissing] = ACTIONS(9145), + [anon_sym_ATerror] = ACTIONS(9147), + [anon_sym_ATcan] = ACTIONS(9149), + [anon_sym_ATcannot] = ACTIONS(9151), + [anon_sym_ATcanany] = ACTIONS(9153), + [anon_sym_ATfeature] = ACTIONS(9155), + [aux_sym__custom_token1] = ACTIONS(9157), + [aux_sym__custom_token2] = ACTIONS(9159), + [anon_sym_ATswitch] = ACTIONS(9161), + [aux_sym_loop_operator_token1] = ACTIONS(9163), + [anon_sym_ATfor] = ACTIONS(9165), + [anon_sym_ATforeach] = ACTIONS(9167), + [anon_sym_ATforelse] = ACTIONS(9169), + [anon_sym_ATwhile] = ACTIONS(9171), + [anon_sym_ATsetup] = ACTIONS(9173), + [anon_sym_ATtask] = ACTIONS(9175), + [anon_sym_ATstory] = ACTIONS(9177), + [anon_sym_ATbefore] = ACTIONS(9179), + [anon_sym_ATafter] = ACTIONS(9181), + [anon_sym_ATsuccess] = ACTIONS(9183), + [anon_sym_ATfinished] = ACTIONS(9185), + [anon_sym_ATpersist] = ACTIONS(9187), + [anon_sym_ATteleport] = ACTIONS(9189), + [anon_sym_ATendteleport] = ACTIONS(4609), + [anon_sym_ATvolt] = ACTIONS(9191), + [aux_sym__text_token1] = ACTIONS(9193), + [aux_sym__text_token2] = ACTIONS(9193), + [aux_sym__text_token3] = ACTIONS(9195), + }, + [642] = { + [sym__definition] = STATE(651), + [sym_keyword] = STATE(651), + [sym_php_statement] = STATE(651), + [sym__escaped] = STATE(2749), + [sym__unescaped] = STATE(2749), + [sym__raw] = STATE(2749), + [sym__inline_raw] = STATE(2749), + [sym__multi_line_raw] = STATE(2749), + [sym_attribute] = STATE(651), + [sym__inline_directive] = STATE(651), + [sym__nested_directive] = STATE(651), + [sym_fragment] = STATE(651), + [sym_section] = STATE(651), + [sym_inlineSection] = STATE(651), + [sym_once] = STATE(651), + [sym_verbatim] = STATE(651), + [sym_stack] = STATE(651), + [sym__push] = STATE(2750), + [sym__pushOnce] = STATE(2750), + [sym__pushIf] = STATE(2750), + [sym__prepend] = STATE(2750), + [sym__prependOnce] = STATE(2750), + [sym_conditional] = STATE(651), + [sym__if] = STATE(2751), + [sym__unless] = STATE(2751), + [sym__isset] = STATE(2751), + [sym__empty] = STATE(2751), + [sym__auth] = STATE(2751), + [sym__guest] = STATE(2751), + [sym__production] = STATE(2751), + [sym__env] = STATE(2751), + [sym__hasSection] = STATE(2751), + [sym__sectionMissing] = STATE(2751), + [sym__error] = STATE(2751), + [sym_authorization] = STATE(2751), + [sym__can] = STATE(2752), + [sym__cannot] = STATE(2752), + [sym__canany] = STATE(2752), + [sym__feature] = STATE(2751), + [sym__custom] = STATE(2751), + [sym_switch] = STATE(651), + [sym_loop] = STATE(651), + [sym_loop_operator] = STATE(651), + [sym__for] = STATE(2753), + [sym__foreach] = STATE(2753), + [sym__forelse] = STATE(2753), + [sym__while] = STATE(2753), + [sym_envoy] = STATE(651), + [sym__setup] = STATE(2749), + [sym__task] = STATE(2754), + [sym__story] = STATE(2754), + [sym__hooks] = STATE(2749), + [sym__before] = STATE(2749), + [sym__after] = STATE(2749), + [sym__envoy_error] = STATE(2749), + [sym__success] = STATE(2749), + [sym__finished] = STATE(2749), + [sym_livewire] = STATE(651), + [sym__persist] = STATE(2755), + [sym__teleport] = STATE(2755), + [sym__volt] = STATE(2755), + [aux_sym__directive_body] = STATE(651), + [sym_text] = STATE(651), + [sym__text] = STATE(969), + [aux_sym_php_only_repeat1] = STATE(969), + [sym_comment] = ACTIONS(9197), + [aux_sym_keyword_token1] = ACTIONS(9097), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9099), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9101), + [anon_sym_ATphp] = ACTIONS(9103), + [aux_sym_attribute_token1] = ACTIONS(9105), + [aux_sym__inline_directive_token1] = ACTIONS(9107), + [anon_sym_ATfragment] = ACTIONS(9109), + [anon_sym_ATsection] = ACTIONS(9111), + [anon_sym_ATonce] = ACTIONS(9113), + [anon_sym_ATverbatim] = ACTIONS(9115), + [anon_sym_ATpush] = ACTIONS(9117), + [anon_sym_ATpushOnce] = ACTIONS(9119), + [anon_sym_ATpushIf] = ACTIONS(9121), + [anon_sym_ATprepend] = ACTIONS(9123), + [anon_sym_ATprependOnce] = ACTIONS(9125), + [anon_sym_ATif] = ACTIONS(9127), + [anon_sym_ATunless] = ACTIONS(9129), + [anon_sym_ATisset] = ACTIONS(9131), + [anon_sym_ATempty] = ACTIONS(9133), + [anon_sym_ATauth] = ACTIONS(9135), + [anon_sym_ATguest] = ACTIONS(9137), + [anon_sym_ATproduction] = ACTIONS(9139), + [anon_sym_ATenv] = ACTIONS(9141), + [anon_sym_AThasSection] = ACTIONS(9143), + [anon_sym_ATsectionMissing] = ACTIONS(9145), + [anon_sym_ATerror] = ACTIONS(9147), + [anon_sym_ATcan] = ACTIONS(9149), + [anon_sym_ATcannot] = ACTIONS(9151), + [anon_sym_ATcanany] = ACTIONS(9153), + [anon_sym_ATfeature] = ACTIONS(9155), + [aux_sym__custom_token1] = ACTIONS(9157), + [aux_sym__custom_token2] = ACTIONS(9159), + [anon_sym_ATswitch] = ACTIONS(9161), + [aux_sym_loop_operator_token1] = ACTIONS(9163), + [anon_sym_ATfor] = ACTIONS(9165), + [anon_sym_ATforeach] = ACTIONS(9167), + [anon_sym_ATforelse] = ACTIONS(9169), + [anon_sym_ATwhile] = ACTIONS(9171), + [anon_sym_ATsetup] = ACTIONS(9173), + [anon_sym_ATtask] = ACTIONS(9175), + [anon_sym_ATstory] = ACTIONS(9177), + [anon_sym_ATbefore] = ACTIONS(9179), + [anon_sym_ATafter] = ACTIONS(9181), + [anon_sym_ATsuccess] = ACTIONS(9183), + [anon_sym_ATfinished] = ACTIONS(9185), + [anon_sym_ATpersist] = ACTIONS(9187), + [anon_sym_ATteleport] = ACTIONS(9189), + [anon_sym_ATendteleport] = ACTIONS(4996), + [anon_sym_ATvolt] = ACTIONS(9191), + [aux_sym__text_token1] = ACTIONS(9193), + [aux_sym__text_token2] = ACTIONS(9193), + [aux_sym__text_token3] = ACTIONS(9195), }, [643] = { - [sym__definition] = STATE(527), - [sym_comment] = STATE(527), - [sym_keyword] = STATE(527), - [sym_php_statement] = STATE(527), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(527), - [sym__inline_directive] = STATE(527), - [sym__nested_directive] = STATE(527), - [sym_fragment] = STATE(527), - [sym_section] = STATE(527), - [sym_inlineSection] = STATE(527), - [sym_once] = STATE(527), - [sym_verbatim] = STATE(527), - [sym_stack] = STATE(527), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(527), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(527), - [sym_loop] = STATE(527), - [sym_loop_operator] = STATE(527), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(527), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(527), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(527), - [sym_text] = STATE(527), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(8653), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), + [sym__definition] = STATE(643), + [sym_keyword] = STATE(643), + [sym_php_statement] = STATE(643), + [sym__escaped] = STATE(2585), + [sym__unescaped] = STATE(2585), + [sym__raw] = STATE(2585), + [sym__inline_raw] = STATE(2585), + [sym__multi_line_raw] = STATE(2585), + [sym_attribute] = STATE(643), + [sym__inline_directive] = STATE(643), + [sym__nested_directive] = STATE(643), + [sym_fragment] = STATE(643), + [sym_section] = STATE(643), + [sym_inlineSection] = STATE(643), + [sym_once] = STATE(643), + [sym_verbatim] = STATE(643), + [sym_stack] = STATE(643), + [sym__push] = STATE(2586), + [sym__pushOnce] = STATE(2586), + [sym__pushIf] = STATE(2586), + [sym__prepend] = STATE(2586), + [sym__prependOnce] = STATE(2586), + [sym_conditional] = STATE(643), + [sym__if] = STATE(2587), + [sym__unless] = STATE(2587), + [sym__isset] = STATE(2587), + [sym__empty] = STATE(2587), + [sym__auth] = STATE(2587), + [sym__guest] = STATE(2587), + [sym__production] = STATE(2587), + [sym__env] = STATE(2587), + [sym__hasSection] = STATE(2587), + [sym__sectionMissing] = STATE(2587), + [sym__error] = STATE(2587), + [sym_authorization] = STATE(2587), + [sym__can] = STATE(2588), + [sym__cannot] = STATE(2588), + [sym__canany] = STATE(2588), + [sym__feature] = STATE(2587), + [sym__custom] = STATE(2587), + [sym_switch] = STATE(643), + [sym_loop] = STATE(643), + [sym_loop_operator] = STATE(643), + [sym__for] = STATE(2589), + [sym__foreach] = STATE(2589), + [sym__forelse] = STATE(2589), + [sym__while] = STATE(2589), + [sym_envoy] = STATE(643), + [sym__setup] = STATE(2585), + [sym__task] = STATE(2590), + [sym__story] = STATE(2590), + [sym__hooks] = STATE(2585), + [sym__before] = STATE(2585), + [sym__after] = STATE(2585), + [sym__envoy_error] = STATE(2585), + [sym__success] = STATE(2585), + [sym__finished] = STATE(2585), + [sym_livewire] = STATE(643), + [sym__persist] = STATE(2591), + [sym__teleport] = STATE(2591), + [sym__volt] = STATE(2591), + [aux_sym__directive_body] = STATE(643), + [sym_text] = STATE(643), + [sym__text] = STATE(977), + [aux_sym_php_only_repeat1] = STATE(977), + [sym_comment] = ACTIONS(9199), + [aux_sym_keyword_token1] = ACTIONS(9202), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9205), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9208), + [anon_sym_ATphp] = ACTIONS(9211), + [aux_sym_attribute_token1] = ACTIONS(9214), + [aux_sym__inline_directive_token1] = ACTIONS(9217), + [anon_sym_ATfragment] = ACTIONS(9220), + [anon_sym_ATsection] = ACTIONS(9223), + [anon_sym_ATonce] = ACTIONS(9226), + [anon_sym_ATverbatim] = ACTIONS(9229), + [anon_sym_ATpush] = ACTIONS(9232), + [anon_sym_ATpushOnce] = ACTIONS(9235), + [anon_sym_ATpushIf] = ACTIONS(9238), + [anon_sym_ATprepend] = ACTIONS(9241), + [anon_sym_ATprependOnce] = ACTIONS(9244), + [anon_sym_ATif] = ACTIONS(9247), + [anon_sym_ATunless] = ACTIONS(9250), + [anon_sym_ATisset] = ACTIONS(9253), + [anon_sym_ATempty] = ACTIONS(9256), + [anon_sym_ATauth] = ACTIONS(9259), + [anon_sym_ATguest] = ACTIONS(9262), + [anon_sym_ATproduction] = ACTIONS(9265), + [anon_sym_ATenv] = ACTIONS(9268), + [anon_sym_AThasSection] = ACTIONS(9271), + [anon_sym_ATsectionMissing] = ACTIONS(9274), + [anon_sym_ATerror] = ACTIONS(9277), + [anon_sym_ATcan] = ACTIONS(9280), + [anon_sym_ATcannot] = ACTIONS(9283), + [anon_sym_ATcanany] = ACTIONS(9286), + [anon_sym_ATfeature] = ACTIONS(9289), + [aux_sym__custom_token1] = ACTIONS(9292), + [aux_sym__custom_token2] = ACTIONS(9295), + [anon_sym_ATswitch] = ACTIONS(9298), + [aux_sym_loop_operator_token1] = ACTIONS(9301), + [anon_sym_ATfor] = ACTIONS(9304), + [anon_sym_ATforeach] = ACTIONS(9307), + [anon_sym_ATforelse] = ACTIONS(9310), + [anon_sym_ATwhile] = ACTIONS(9313), + [anon_sym_ATsetup] = ACTIONS(9316), + [anon_sym_ATtask] = ACTIONS(9319), + [anon_sym_ATstory] = ACTIONS(9322), + [anon_sym_ATendstory] = ACTIONS(5035), + [anon_sym_ATbefore] = ACTIONS(9325), + [anon_sym_ATafter] = ACTIONS(9328), + [anon_sym_ATsuccess] = ACTIONS(9331), + [anon_sym_ATfinished] = ACTIONS(9334), + [anon_sym_ATpersist] = ACTIONS(9337), + [anon_sym_ATteleport] = ACTIONS(9340), + [anon_sym_ATvolt] = ACTIONS(9343), + [aux_sym__text_token1] = ACTIONS(9346), + [aux_sym__text_token2] = ACTIONS(9346), + [aux_sym__text_token3] = ACTIONS(9349), }, [644] = { [sym__definition] = STATE(645), - [sym_comment] = STATE(645), [sym_keyword] = STATE(645), [sym_php_statement] = STATE(645), - [sym__escaped] = STATE(2895), - [sym__unescaped] = STATE(2895), - [sym__raw] = STATE(2895), - [sym__inline_raw] = STATE(2895), - [sym__multi_line_raw] = STATE(2895), + [sym__escaped] = STATE(2831), + [sym__unescaped] = STATE(2831), + [sym__raw] = STATE(2831), + [sym__inline_raw] = STATE(2831), + [sym__multi_line_raw] = STATE(2831), [sym_attribute] = STATE(645), [sym__inline_directive] = STATE(645), [sym__nested_directive] = STATE(645), @@ -104407,118 +103262,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(645), [sym_verbatim] = STATE(645), [sym_stack] = STATE(645), - [sym__push] = STATE(2896), - [sym__pushOnce] = STATE(2896), - [sym__pushIf] = STATE(2896), - [sym__prepend] = STATE(2896), - [sym__prependOnce] = STATE(2896), + [sym__push] = STATE(2832), + [sym__pushOnce] = STATE(2832), + [sym__pushIf] = STATE(2832), + [sym__prepend] = STATE(2832), + [sym__prependOnce] = STATE(2832), [sym_conditional] = STATE(645), - [sym__if] = STATE(2897), - [sym__unless] = STATE(2897), - [sym__isset] = STATE(2897), - [sym__empty] = STATE(2897), - [sym__auth] = STATE(2897), - [sym__guest] = STATE(2897), - [sym__production] = STATE(2897), - [sym__env] = STATE(2897), - [sym__hasSection] = STATE(2897), - [sym__sectionMissing] = STATE(2897), - [sym__error] = STATE(2897), - [sym_authorization] = STATE(2897), - [sym__can] = STATE(2898), - [sym__cannot] = STATE(2898), - [sym__canany] = STATE(2898), - [sym__feature] = STATE(2897), - [sym__custom] = STATE(2897), + [sym__if] = STATE(2833), + [sym__unless] = STATE(2833), + [sym__isset] = STATE(2833), + [sym__empty] = STATE(2833), + [sym__auth] = STATE(2833), + [sym__guest] = STATE(2833), + [sym__production] = STATE(2833), + [sym__env] = STATE(2833), + [sym__hasSection] = STATE(2833), + [sym__sectionMissing] = STATE(2833), + [sym__error] = STATE(2833), + [sym_authorization] = STATE(2833), + [sym__can] = STATE(2834), + [sym__cannot] = STATE(2834), + [sym__canany] = STATE(2834), + [sym__feature] = STATE(2833), + [sym__custom] = STATE(2833), [sym_switch] = STATE(645), [sym_loop] = STATE(645), [sym_loop_operator] = STATE(645), - [sym__for] = STATE(2899), - [sym__foreach] = STATE(2899), - [sym__forelse] = STATE(2899), - [sym__while] = STATE(2899), + [sym__for] = STATE(2835), + [sym__foreach] = STATE(2835), + [sym__forelse] = STATE(2835), + [sym__while] = STATE(2835), [sym_envoy] = STATE(645), - [sym__setup] = STATE(2895), - [sym__task] = STATE(2900), - [sym__story] = STATE(2900), - [sym__hooks] = STATE(2895), - [sym__before] = STATE(2895), - [sym__after] = STATE(2895), - [sym__envoy_error] = STATE(2895), - [sym__success] = STATE(2895), - [sym__finished] = STATE(2895), + [sym__setup] = STATE(2831), + [sym__task] = STATE(2836), + [sym__story] = STATE(2836), + [sym__hooks] = STATE(2831), + [sym__before] = STATE(2831), + [sym__after] = STATE(2831), + [sym__envoy_error] = STATE(2831), + [sym__success] = STATE(2831), + [sym__finished] = STATE(2831), [sym_livewire] = STATE(645), - [sym__persist] = STATE(2901), - [sym__teleport] = STATE(2901), - [sym__volt] = STATE(2901), + [sym__persist] = STATE(2837), + [sym__teleport] = STATE(2837), + [sym__volt] = STATE(2837), [aux_sym__directive_body] = STATE(645), [sym_text] = STATE(645), - [sym__text] = STATE(951), - [aux_sym_php_only_repeat1] = STATE(951), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8655), - [aux_sym_keyword_token1] = ACTIONS(8657), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8659), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8661), - [anon_sym_ATphp] = ACTIONS(8663), - [aux_sym_attribute_token1] = ACTIONS(8665), - [aux_sym__inline_directive_token1] = ACTIONS(8667), - [anon_sym_ATfragment] = ACTIONS(8669), - [anon_sym_ATsection] = ACTIONS(8671), - [anon_sym_ATonce] = ACTIONS(8673), - [anon_sym_ATverbatim] = ACTIONS(8675), - [anon_sym_ATpush] = ACTIONS(8677), - [anon_sym_ATpushOnce] = ACTIONS(8679), - [anon_sym_ATpushIf] = ACTIONS(8681), - [anon_sym_ATprepend] = ACTIONS(8683), - [anon_sym_ATprependOnce] = ACTIONS(8685), - [anon_sym_ATif] = ACTIONS(8687), - [anon_sym_ATunless] = ACTIONS(8689), - [anon_sym_ATisset] = ACTIONS(8691), - [anon_sym_ATempty] = ACTIONS(8693), - [anon_sym_ATauth] = ACTIONS(8695), - [anon_sym_ATguest] = ACTIONS(8697), - [anon_sym_ATproduction] = ACTIONS(8699), - [anon_sym_ATenv] = ACTIONS(8701), - [anon_sym_AThasSection] = ACTIONS(8703), - [anon_sym_ATsectionMissing] = ACTIONS(8705), - [anon_sym_ATerror] = ACTIONS(8707), - [anon_sym_ATcan] = ACTIONS(8709), - [anon_sym_ATcannot] = ACTIONS(8711), - [anon_sym_ATcanany] = ACTIONS(8713), - [anon_sym_ATfeature] = ACTIONS(8715), - [aux_sym__custom_token1] = ACTIONS(8717), - [aux_sym__custom_token2] = ACTIONS(8719), - [anon_sym_ATswitch] = ACTIONS(8721), - [aux_sym_loop_operator_token1] = ACTIONS(8723), - [anon_sym_ATfor] = ACTIONS(8725), - [anon_sym_ATforeach] = ACTIONS(8727), - [anon_sym_ATforelse] = ACTIONS(8729), - [anon_sym_ATwhile] = ACTIONS(8731), - [anon_sym_ATsetup] = ACTIONS(8733), - [anon_sym_ATtask] = ACTIONS(8735), - [anon_sym_ATstory] = ACTIONS(8737), - [anon_sym_ATbefore] = ACTIONS(8739), - [anon_sym_ATafter] = ACTIONS(8741), - [anon_sym_ATsuccess] = ACTIONS(8743), - [anon_sym_ATfinished] = ACTIONS(8745), - [anon_sym_ATpersist] = ACTIONS(8747), - [anon_sym_ATteleport] = ACTIONS(8749), - [anon_sym_ATvolt] = ACTIONS(8751), - [anon_sym_ATendvolt] = ACTIONS(4712), - [aux_sym__text_token1] = ACTIONS(8753), - [aux_sym__text_token2] = ACTIONS(8753), - [aux_sym__text_token3] = ACTIONS(8755), + [sym__text] = STATE(963), + [aux_sym_php_only_repeat1] = STATE(963), + [sym_comment] = ACTIONS(9352), + [aux_sym_keyword_token1] = ACTIONS(9354), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9356), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9358), + [anon_sym_ATphp] = ACTIONS(9360), + [aux_sym_attribute_token1] = ACTIONS(9362), + [aux_sym__inline_directive_token1] = ACTIONS(9364), + [anon_sym_ATfragment] = ACTIONS(9366), + [anon_sym_ATsection] = ACTIONS(9368), + [anon_sym_ATonce] = ACTIONS(9370), + [anon_sym_ATverbatim] = ACTIONS(9372), + [anon_sym_ATpush] = ACTIONS(9374), + [anon_sym_ATpushOnce] = ACTIONS(9376), + [anon_sym_ATpushIf] = ACTIONS(9378), + [anon_sym_ATprepend] = ACTIONS(9380), + [anon_sym_ATprependOnce] = ACTIONS(9382), + [anon_sym_ATif] = ACTIONS(9384), + [anon_sym_ATunless] = ACTIONS(9386), + [anon_sym_ATisset] = ACTIONS(9388), + [anon_sym_ATempty] = ACTIONS(9390), + [anon_sym_ATauth] = ACTIONS(9392), + [anon_sym_ATguest] = ACTIONS(9394), + [anon_sym_ATproduction] = ACTIONS(9396), + [anon_sym_ATenv] = ACTIONS(9398), + [anon_sym_AThasSection] = ACTIONS(9400), + [anon_sym_ATsectionMissing] = ACTIONS(9402), + [anon_sym_ATerror] = ACTIONS(9404), + [anon_sym_ATcan] = ACTIONS(9406), + [anon_sym_ATcannot] = ACTIONS(9408), + [anon_sym_ATcanany] = ACTIONS(9410), + [anon_sym_ATfeature] = ACTIONS(9412), + [aux_sym__custom_token1] = ACTIONS(9414), + [aux_sym__custom_token2] = ACTIONS(9416), + [anon_sym_ATswitch] = ACTIONS(9418), + [aux_sym_loop_operator_token1] = ACTIONS(9420), + [anon_sym_ATfor] = ACTIONS(9422), + [anon_sym_ATforeach] = ACTIONS(9424), + [anon_sym_ATforelse] = ACTIONS(9426), + [anon_sym_ATwhile] = ACTIONS(9428), + [anon_sym_ATsetup] = ACTIONS(9430), + [anon_sym_ATtask] = ACTIONS(9432), + [anon_sym_ATstory] = ACTIONS(9434), + [anon_sym_ATbefore] = ACTIONS(9436), + [anon_sym_ATafter] = ACTIONS(9438), + [anon_sym_ATsuccess] = ACTIONS(9440), + [anon_sym_ATfinished] = ACTIONS(9442), + [anon_sym_ATpersist] = ACTIONS(9444), + [anon_sym_ATteleport] = ACTIONS(9446), + [anon_sym_ATvolt] = ACTIONS(9448), + [anon_sym_ATendvolt] = ACTIONS(4609), + [aux_sym__text_token1] = ACTIONS(9450), + [aux_sym__text_token2] = ACTIONS(9450), + [aux_sym__text_token3] = ACTIONS(9452), }, [645] = { [sym__definition] = STATE(652), - [sym_comment] = STATE(652), [sym_keyword] = STATE(652), [sym_php_statement] = STATE(652), - [sym__escaped] = STATE(2895), - [sym__unescaped] = STATE(2895), - [sym__raw] = STATE(2895), - [sym__inline_raw] = STATE(2895), - [sym__multi_line_raw] = STATE(2895), + [sym__escaped] = STATE(2831), + [sym__unescaped] = STATE(2831), + [sym__raw] = STATE(2831), + [sym__inline_raw] = STATE(2831), + [sym__multi_line_raw] = STATE(2831), [sym_attribute] = STATE(652), [sym__inline_directive] = STATE(652), [sym__nested_directive] = STATE(652), @@ -104528,602 +103382,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(652), [sym_verbatim] = STATE(652), [sym_stack] = STATE(652), - [sym__push] = STATE(2896), - [sym__pushOnce] = STATE(2896), - [sym__pushIf] = STATE(2896), - [sym__prepend] = STATE(2896), - [sym__prependOnce] = STATE(2896), + [sym__push] = STATE(2832), + [sym__pushOnce] = STATE(2832), + [sym__pushIf] = STATE(2832), + [sym__prepend] = STATE(2832), + [sym__prependOnce] = STATE(2832), [sym_conditional] = STATE(652), - [sym__if] = STATE(2897), - [sym__unless] = STATE(2897), - [sym__isset] = STATE(2897), - [sym__empty] = STATE(2897), - [sym__auth] = STATE(2897), - [sym__guest] = STATE(2897), - [sym__production] = STATE(2897), - [sym__env] = STATE(2897), - [sym__hasSection] = STATE(2897), - [sym__sectionMissing] = STATE(2897), - [sym__error] = STATE(2897), - [sym_authorization] = STATE(2897), - [sym__can] = STATE(2898), - [sym__cannot] = STATE(2898), - [sym__canany] = STATE(2898), - [sym__feature] = STATE(2897), - [sym__custom] = STATE(2897), + [sym__if] = STATE(2833), + [sym__unless] = STATE(2833), + [sym__isset] = STATE(2833), + [sym__empty] = STATE(2833), + [sym__auth] = STATE(2833), + [sym__guest] = STATE(2833), + [sym__production] = STATE(2833), + [sym__env] = STATE(2833), + [sym__hasSection] = STATE(2833), + [sym__sectionMissing] = STATE(2833), + [sym__error] = STATE(2833), + [sym_authorization] = STATE(2833), + [sym__can] = STATE(2834), + [sym__cannot] = STATE(2834), + [sym__canany] = STATE(2834), + [sym__feature] = STATE(2833), + [sym__custom] = STATE(2833), [sym_switch] = STATE(652), [sym_loop] = STATE(652), [sym_loop_operator] = STATE(652), - [sym__for] = STATE(2899), - [sym__foreach] = STATE(2899), - [sym__forelse] = STATE(2899), - [sym__while] = STATE(2899), + [sym__for] = STATE(2835), + [sym__foreach] = STATE(2835), + [sym__forelse] = STATE(2835), + [sym__while] = STATE(2835), [sym_envoy] = STATE(652), - [sym__setup] = STATE(2895), - [sym__task] = STATE(2900), - [sym__story] = STATE(2900), - [sym__hooks] = STATE(2895), - [sym__before] = STATE(2895), - [sym__after] = STATE(2895), - [sym__envoy_error] = STATE(2895), - [sym__success] = STATE(2895), - [sym__finished] = STATE(2895), + [sym__setup] = STATE(2831), + [sym__task] = STATE(2836), + [sym__story] = STATE(2836), + [sym__hooks] = STATE(2831), + [sym__before] = STATE(2831), + [sym__after] = STATE(2831), + [sym__envoy_error] = STATE(2831), + [sym__success] = STATE(2831), + [sym__finished] = STATE(2831), [sym_livewire] = STATE(652), - [sym__persist] = STATE(2901), - [sym__teleport] = STATE(2901), - [sym__volt] = STATE(2901), + [sym__persist] = STATE(2837), + [sym__teleport] = STATE(2837), + [sym__volt] = STATE(2837), [aux_sym__directive_body] = STATE(652), [sym_text] = STATE(652), - [sym__text] = STATE(951), - [aux_sym_php_only_repeat1] = STATE(951), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8655), - [aux_sym_keyword_token1] = ACTIONS(8657), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8659), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8661), - [anon_sym_ATphp] = ACTIONS(8663), - [aux_sym_attribute_token1] = ACTIONS(8665), - [aux_sym__inline_directive_token1] = ACTIONS(8667), - [anon_sym_ATfragment] = ACTIONS(8669), - [anon_sym_ATsection] = ACTIONS(8671), - [anon_sym_ATonce] = ACTIONS(8673), - [anon_sym_ATverbatim] = ACTIONS(8675), - [anon_sym_ATpush] = ACTIONS(8677), - [anon_sym_ATpushOnce] = ACTIONS(8679), - [anon_sym_ATpushIf] = ACTIONS(8681), - [anon_sym_ATprepend] = ACTIONS(8683), - [anon_sym_ATprependOnce] = ACTIONS(8685), - [anon_sym_ATif] = ACTIONS(8687), - [anon_sym_ATunless] = ACTIONS(8689), - [anon_sym_ATisset] = ACTIONS(8691), - [anon_sym_ATempty] = ACTIONS(8693), - [anon_sym_ATauth] = ACTIONS(8695), - [anon_sym_ATguest] = ACTIONS(8697), - [anon_sym_ATproduction] = ACTIONS(8699), - [anon_sym_ATenv] = ACTIONS(8701), - [anon_sym_AThasSection] = ACTIONS(8703), - [anon_sym_ATsectionMissing] = ACTIONS(8705), - [anon_sym_ATerror] = ACTIONS(8707), - [anon_sym_ATcan] = ACTIONS(8709), - [anon_sym_ATcannot] = ACTIONS(8711), - [anon_sym_ATcanany] = ACTIONS(8713), - [anon_sym_ATfeature] = ACTIONS(8715), - [aux_sym__custom_token1] = ACTIONS(8717), - [aux_sym__custom_token2] = ACTIONS(8719), - [anon_sym_ATswitch] = ACTIONS(8721), - [aux_sym_loop_operator_token1] = ACTIONS(8723), - [anon_sym_ATfor] = ACTIONS(8725), - [anon_sym_ATforeach] = ACTIONS(8727), - [anon_sym_ATforelse] = ACTIONS(8729), - [anon_sym_ATwhile] = ACTIONS(8731), - [anon_sym_ATsetup] = ACTIONS(8733), - [anon_sym_ATtask] = ACTIONS(8735), - [anon_sym_ATstory] = ACTIONS(8737), - [anon_sym_ATbefore] = ACTIONS(8739), - [anon_sym_ATafter] = ACTIONS(8741), - [anon_sym_ATsuccess] = ACTIONS(8743), - [anon_sym_ATfinished] = ACTIONS(8745), - [anon_sym_ATpersist] = ACTIONS(8747), - [anon_sym_ATteleport] = ACTIONS(8749), - [anon_sym_ATvolt] = ACTIONS(8751), - [anon_sym_ATendvolt] = ACTIONS(4626), - [aux_sym__text_token1] = ACTIONS(8753), - [aux_sym__text_token2] = ACTIONS(8753), - [aux_sym__text_token3] = ACTIONS(8755), + [sym__text] = STATE(963), + [aux_sym_php_only_repeat1] = STATE(963), + [sym_comment] = ACTIONS(9454), + [aux_sym_keyword_token1] = ACTIONS(9354), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9356), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9358), + [anon_sym_ATphp] = ACTIONS(9360), + [aux_sym_attribute_token1] = ACTIONS(9362), + [aux_sym__inline_directive_token1] = ACTIONS(9364), + [anon_sym_ATfragment] = ACTIONS(9366), + [anon_sym_ATsection] = ACTIONS(9368), + [anon_sym_ATonce] = ACTIONS(9370), + [anon_sym_ATverbatim] = ACTIONS(9372), + [anon_sym_ATpush] = ACTIONS(9374), + [anon_sym_ATpushOnce] = ACTIONS(9376), + [anon_sym_ATpushIf] = ACTIONS(9378), + [anon_sym_ATprepend] = ACTIONS(9380), + [anon_sym_ATprependOnce] = ACTIONS(9382), + [anon_sym_ATif] = ACTIONS(9384), + [anon_sym_ATunless] = ACTIONS(9386), + [anon_sym_ATisset] = ACTIONS(9388), + [anon_sym_ATempty] = ACTIONS(9390), + [anon_sym_ATauth] = ACTIONS(9392), + [anon_sym_ATguest] = ACTIONS(9394), + [anon_sym_ATproduction] = ACTIONS(9396), + [anon_sym_ATenv] = ACTIONS(9398), + [anon_sym_AThasSection] = ACTIONS(9400), + [anon_sym_ATsectionMissing] = ACTIONS(9402), + [anon_sym_ATerror] = ACTIONS(9404), + [anon_sym_ATcan] = ACTIONS(9406), + [anon_sym_ATcannot] = ACTIONS(9408), + [anon_sym_ATcanany] = ACTIONS(9410), + [anon_sym_ATfeature] = ACTIONS(9412), + [aux_sym__custom_token1] = ACTIONS(9414), + [aux_sym__custom_token2] = ACTIONS(9416), + [anon_sym_ATswitch] = ACTIONS(9418), + [aux_sym_loop_operator_token1] = ACTIONS(9420), + [anon_sym_ATfor] = ACTIONS(9422), + [anon_sym_ATforeach] = ACTIONS(9424), + [anon_sym_ATforelse] = ACTIONS(9426), + [anon_sym_ATwhile] = ACTIONS(9428), + [anon_sym_ATsetup] = ACTIONS(9430), + [anon_sym_ATtask] = ACTIONS(9432), + [anon_sym_ATstory] = ACTIONS(9434), + [anon_sym_ATbefore] = ACTIONS(9436), + [anon_sym_ATafter] = ACTIONS(9438), + [anon_sym_ATsuccess] = ACTIONS(9440), + [anon_sym_ATfinished] = ACTIONS(9442), + [anon_sym_ATpersist] = ACTIONS(9444), + [anon_sym_ATteleport] = ACTIONS(9446), + [anon_sym_ATvolt] = ACTIONS(9448), + [anon_sym_ATendvolt] = ACTIONS(4996), + [aux_sym__text_token1] = ACTIONS(9450), + [aux_sym__text_token2] = ACTIONS(9450), + [aux_sym__text_token3] = ACTIONS(9452), }, [646] = { - [sym__definition] = STATE(646), - [sym_comment] = STATE(646), - [sym_keyword] = STATE(646), - [sym_php_statement] = STATE(646), - [sym__escaped] = STATE(2727), - [sym__unescaped] = STATE(2727), - [sym__raw] = STATE(2727), - [sym__inline_raw] = STATE(2727), - [sym__multi_line_raw] = STATE(2727), - [sym_attribute] = STATE(646), - [sym__inline_directive] = STATE(646), - [sym__nested_directive] = STATE(646), - [sym_fragment] = STATE(646), - [sym_section] = STATE(646), - [sym_inlineSection] = STATE(646), - [sym_once] = STATE(646), - [sym_verbatim] = STATE(646), - [sym_stack] = STATE(646), - [sym__push] = STATE(2728), - [sym__pushOnce] = STATE(2728), - [sym__pushIf] = STATE(2728), - [sym__prepend] = STATE(2728), - [sym__prependOnce] = STATE(2728), - [sym_conditional] = STATE(646), - [sym__if] = STATE(2729), - [sym__unless] = STATE(2729), - [sym__isset] = STATE(2729), - [sym__empty] = STATE(2729), - [sym__auth] = STATE(2729), - [sym__guest] = STATE(2729), - [sym__production] = STATE(2729), - [sym__env] = STATE(2729), - [sym__hasSection] = STATE(2729), - [sym__sectionMissing] = STATE(2729), - [sym__error] = STATE(2729), - [sym_authorization] = STATE(2729), - [sym__can] = STATE(2730), - [sym__cannot] = STATE(2730), - [sym__canany] = STATE(2730), - [sym__feature] = STATE(2729), - [sym__custom] = STATE(2729), - [sym_switch] = STATE(646), - [sym_loop] = STATE(646), - [sym_loop_operator] = STATE(646), - [sym__for] = STATE(2731), - [sym__foreach] = STATE(2731), - [sym__forelse] = STATE(2731), - [sym__while] = STATE(2731), - [sym_envoy] = STATE(646), - [sym__setup] = STATE(2727), - [sym__task] = STATE(2732), - [sym__story] = STATE(2732), - [sym__hooks] = STATE(2727), - [sym__before] = STATE(2727), - [sym__after] = STATE(2727), - [sym__envoy_error] = STATE(2727), - [sym__success] = STATE(2727), - [sym__finished] = STATE(2727), - [sym_livewire] = STATE(646), - [sym__persist] = STATE(2733), - [sym__teleport] = STATE(2733), - [sym__volt] = STATE(2733), - [aux_sym__directive_body] = STATE(646), - [sym_text] = STATE(646), - [sym__text] = STATE(964), - [aux_sym_php_only_repeat1] = STATE(964), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8757), - [aux_sym_keyword_token1] = ACTIONS(8760), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8763), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8766), - [anon_sym_ATphp] = ACTIONS(8769), - [aux_sym_attribute_token1] = ACTIONS(8772), - [aux_sym__inline_directive_token1] = ACTIONS(8775), - [anon_sym_ATfragment] = ACTIONS(8778), - [anon_sym_ATsection] = ACTIONS(8781), - [anon_sym_ATonce] = ACTIONS(8784), - [anon_sym_ATverbatim] = ACTIONS(8787), - [anon_sym_ATpush] = ACTIONS(8790), - [anon_sym_ATpushOnce] = ACTIONS(8793), - [anon_sym_ATpushIf] = ACTIONS(8796), - [anon_sym_ATprepend] = ACTIONS(8799), - [anon_sym_ATprependOnce] = ACTIONS(8802), - [anon_sym_ATif] = ACTIONS(8805), - [anon_sym_ATunless] = ACTIONS(8808), - [anon_sym_ATisset] = ACTIONS(8811), - [anon_sym_ATempty] = ACTIONS(8814), - [anon_sym_ATauth] = ACTIONS(8817), - [anon_sym_ATguest] = ACTIONS(8820), - [anon_sym_ATproduction] = ACTIONS(8823), - [anon_sym_ATenv] = ACTIONS(8826), - [anon_sym_AThasSection] = ACTIONS(8829), - [anon_sym_ATsectionMissing] = ACTIONS(8832), - [anon_sym_ATerror] = ACTIONS(8835), - [anon_sym_ATcan] = ACTIONS(8838), - [anon_sym_ATcannot] = ACTIONS(8841), - [anon_sym_ATcanany] = ACTIONS(8844), - [anon_sym_ATfeature] = ACTIONS(8847), - [aux_sym__custom_token1] = ACTIONS(8850), - [aux_sym__custom_token2] = ACTIONS(8853), - [anon_sym_ATswitch] = ACTIONS(8856), - [aux_sym_loop_operator_token1] = ACTIONS(8859), - [anon_sym_ATfor] = ACTIONS(8862), - [anon_sym_ATforeach] = ACTIONS(8865), - [anon_sym_ATforelse] = ACTIONS(8868), - [anon_sym_ATwhile] = ACTIONS(8871), - [anon_sym_ATsetup] = ACTIONS(8874), - [anon_sym_ATtask] = ACTIONS(8877), - [anon_sym_ATstory] = ACTIONS(8880), - [anon_sym_ATbefore] = ACTIONS(8883), - [anon_sym_ATafter] = ACTIONS(8886), - [anon_sym_ATsuccess] = ACTIONS(8889), - [anon_sym_ATfinished] = ACTIONS(8892), - [anon_sym_ATpersist] = ACTIONS(8895), - [anon_sym_ATendpersist] = ACTIONS(3925), - [anon_sym_ATteleport] = ACTIONS(8898), - [anon_sym_ATvolt] = ACTIONS(8901), - [aux_sym__text_token1] = ACTIONS(8904), - [aux_sym__text_token2] = ACTIONS(8904), - [aux_sym__text_token3] = ACTIONS(8907), - }, - [647] = { - [sym__definition] = STATE(649), - [sym_comment] = STATE(649), - [sym_keyword] = STATE(649), - [sym_php_statement] = STATE(649), - [sym__escaped] = STATE(3147), - [sym__unescaped] = STATE(3147), - [sym__raw] = STATE(3147), - [sym__inline_raw] = STATE(3147), - [sym__multi_line_raw] = STATE(3147), - [sym_attribute] = STATE(649), - [sym__inline_directive] = STATE(649), - [sym__nested_directive] = STATE(649), - [sym_fragment] = STATE(649), - [sym_section] = STATE(649), - [sym_inlineSection] = STATE(649), - [sym_once] = STATE(649), - [sym_verbatim] = STATE(649), - [sym_stack] = STATE(649), - [sym__push] = STATE(3148), - [sym__pushOnce] = STATE(3148), - [sym__pushIf] = STATE(3148), - [sym__prepend] = STATE(3148), - [sym__prependOnce] = STATE(3148), - [sym_conditional] = STATE(649), - [sym__if] = STATE(3149), - [sym__unless] = STATE(3149), - [sym__isset] = STATE(3149), - [sym__empty] = STATE(3149), - [sym__auth] = STATE(3149), - [sym__guest] = STATE(3149), - [sym__production] = STATE(3149), - [sym__env] = STATE(3149), - [sym__hasSection] = STATE(3149), - [sym__sectionMissing] = STATE(3149), - [sym__error] = STATE(3149), - [sym_authorization] = STATE(3149), - [sym__can] = STATE(3150), - [sym__cannot] = STATE(3150), - [sym__canany] = STATE(3150), - [sym__feature] = STATE(3149), - [sym__custom] = STATE(3149), - [sym_switch] = STATE(649), - [sym_loop] = STATE(649), - [sym_loop_operator] = STATE(649), - [sym__for] = STATE(3151), - [sym__foreach] = STATE(3151), - [sym__forelse] = STATE(3151), - [sym__while] = STATE(3151), - [sym_envoy] = STATE(649), - [sym__setup] = STATE(3147), - [sym__task] = STATE(3152), - [sym__story] = STATE(3152), - [sym__hooks] = STATE(3147), - [sym__before] = STATE(3147), - [sym__after] = STATE(3147), - [sym__envoy_error] = STATE(3147), - [sym__success] = STATE(3147), - [sym__finished] = STATE(3147), - [sym_livewire] = STATE(649), - [sym__persist] = STATE(3153), - [sym__teleport] = STATE(3153), - [sym__volt] = STATE(3153), - [aux_sym__directive_body] = STATE(649), - [sym_text] = STATE(649), - [sym__text] = STATE(938), - [aux_sym_php_only_repeat1] = STATE(938), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8910), - [aux_sym_keyword_token1] = ACTIONS(8912), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8914), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8916), - [anon_sym_ATphp] = ACTIONS(8918), - [aux_sym_attribute_token1] = ACTIONS(8920), - [aux_sym__inline_directive_token1] = ACTIONS(8922), - [anon_sym_ATfragment] = ACTIONS(8924), - [anon_sym_ATsection] = ACTIONS(8926), - [anon_sym_ATonce] = ACTIONS(8928), - [anon_sym_ATverbatim] = ACTIONS(8930), - [anon_sym_ATpush] = ACTIONS(8932), - [anon_sym_ATpushOnce] = ACTIONS(8934), - [anon_sym_ATpushIf] = ACTIONS(8936), - [anon_sym_ATprepend] = ACTIONS(8938), - [anon_sym_ATprependOnce] = ACTIONS(8940), - [anon_sym_ATif] = ACTIONS(8942), - [anon_sym_ATunless] = ACTIONS(8944), - [anon_sym_ATisset] = ACTIONS(8946), - [anon_sym_ATempty] = ACTIONS(8948), - [anon_sym_ATauth] = ACTIONS(8950), - [anon_sym_ATguest] = ACTIONS(8952), - [anon_sym_ATproduction] = ACTIONS(8954), - [anon_sym_ATenv] = ACTIONS(8956), - [anon_sym_AThasSection] = ACTIONS(8958), - [anon_sym_ATsectionMissing] = ACTIONS(8960), - [anon_sym_ATerror] = ACTIONS(8962), - [anon_sym_ATcan] = ACTIONS(8964), - [anon_sym_ATcannot] = ACTIONS(8966), - [anon_sym_ATcanany] = ACTIONS(8968), - [anon_sym_ATfeature] = ACTIONS(8970), - [aux_sym__custom_token1] = ACTIONS(8972), - [aux_sym__custom_token2] = ACTIONS(8974), - [anon_sym_ATswitch] = ACTIONS(8976), - [anon_sym_ATbreak] = ACTIONS(4712), - [aux_sym_loop_operator_token1] = ACTIONS(8978), - [anon_sym_ATfor] = ACTIONS(8980), - [anon_sym_ATforeach] = ACTIONS(8982), - [anon_sym_ATforelse] = ACTIONS(8984), - [anon_sym_ATwhile] = ACTIONS(8986), - [anon_sym_ATsetup] = ACTIONS(8988), - [anon_sym_ATtask] = ACTIONS(8990), - [anon_sym_ATstory] = ACTIONS(8992), - [anon_sym_ATbefore] = ACTIONS(8994), - [anon_sym_ATafter] = ACTIONS(8996), - [anon_sym_ATsuccess] = ACTIONS(8998), - [anon_sym_ATfinished] = ACTIONS(9000), - [anon_sym_ATpersist] = ACTIONS(9002), - [anon_sym_ATteleport] = ACTIONS(9004), - [anon_sym_ATvolt] = ACTIONS(9006), - [aux_sym__text_token1] = ACTIONS(9008), - [aux_sym__text_token2] = ACTIONS(9008), - [aux_sym__text_token3] = ACTIONS(9010), - }, - [648] = { - [sym__definition] = STATE(478), - [sym_comment] = STATE(478), - [sym_keyword] = STATE(478), - [sym_php_statement] = STATE(478), - [sym__escaped] = STATE(3510), - [sym__unescaped] = STATE(3510), - [sym__raw] = STATE(3510), - [sym__inline_raw] = STATE(3510), - [sym__multi_line_raw] = STATE(3510), - [sym_attribute] = STATE(478), - [sym__inline_directive] = STATE(478), - [sym__nested_directive] = STATE(478), - [sym_fragment] = STATE(478), - [sym_section] = STATE(478), - [sym_inlineSection] = STATE(478), - [sym_once] = STATE(478), - [sym_verbatim] = STATE(478), - [sym_stack] = STATE(478), - [sym__push] = STATE(3511), - [sym__pushOnce] = STATE(3511), - [sym__pushIf] = STATE(3511), - [sym__prepend] = STATE(3511), - [sym__prependOnce] = STATE(3511), - [sym_conditional] = STATE(478), - [sym__if] = STATE(3512), - [sym__unless] = STATE(3512), - [sym__isset] = STATE(3512), - [sym__empty] = STATE(3512), - [sym__auth] = STATE(3512), - [sym__guest] = STATE(3512), - [sym__production] = STATE(3512), - [sym__env] = STATE(3512), - [sym__hasSection] = STATE(3512), - [sym__sectionMissing] = STATE(3512), - [sym__error] = STATE(3512), - [sym_authorization] = STATE(3512), - [sym__can] = STATE(3513), - [sym__cannot] = STATE(3513), - [sym__canany] = STATE(3513), - [sym__feature] = STATE(3512), - [sym__custom] = STATE(3512), - [sym_switch] = STATE(478), - [sym_loop] = STATE(478), - [sym_loop_operator] = STATE(478), - [sym__for] = STATE(3520), - [sym__foreach] = STATE(3520), - [sym__forelse] = STATE(3520), - [sym__while] = STATE(3520), - [sym_envoy] = STATE(478), - [sym__setup] = STATE(3510), - [sym__task] = STATE(3522), - [sym__story] = STATE(3522), - [sym__hooks] = STATE(3510), - [sym__before] = STATE(3510), - [sym__after] = STATE(3510), - [sym__envoy_error] = STATE(3510), - [sym__success] = STATE(3510), - [sym__finished] = STATE(3510), - [sym_livewire] = STATE(478), - [sym__persist] = STATE(3523), - [sym__teleport] = STATE(3523), - [sym__volt] = STATE(3523), - [aux_sym__directive_body] = STATE(478), - [sym_text] = STATE(478), - [sym__text] = STATE(760), - [aux_sym_php_only_repeat1] = STATE(760), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4162), - [aux_sym_keyword_token1] = ACTIONS(4164), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4166), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4168), - [anon_sym_ATphp] = ACTIONS(4170), - [aux_sym_attribute_token1] = ACTIONS(4172), - [aux_sym__inline_directive_token1] = ACTIONS(4174), - [anon_sym_ATfragment] = ACTIONS(4176), - [anon_sym_ATsection] = ACTIONS(4178), - [anon_sym_ATonce] = ACTIONS(4180), - [anon_sym_ATendonce] = ACTIONS(9012), - [anon_sym_ATverbatim] = ACTIONS(4184), - [anon_sym_ATpush] = ACTIONS(4186), - [anon_sym_ATpushOnce] = ACTIONS(4188), - [anon_sym_ATpushIf] = ACTIONS(4190), - [anon_sym_ATprepend] = ACTIONS(4192), - [anon_sym_ATprependOnce] = ACTIONS(4194), - [anon_sym_ATif] = ACTIONS(4196), - [anon_sym_ATunless] = ACTIONS(4198), - [anon_sym_ATisset] = ACTIONS(4200), - [anon_sym_ATempty] = ACTIONS(4202), - [anon_sym_ATauth] = ACTIONS(4204), - [anon_sym_ATguest] = ACTIONS(4206), - [anon_sym_ATproduction] = ACTIONS(4208), - [anon_sym_ATenv] = ACTIONS(4210), - [anon_sym_AThasSection] = ACTIONS(4212), - [anon_sym_ATsectionMissing] = ACTIONS(4214), - [anon_sym_ATerror] = ACTIONS(4216), - [anon_sym_ATcan] = ACTIONS(4218), - [anon_sym_ATcannot] = ACTIONS(4220), - [anon_sym_ATcanany] = ACTIONS(4222), - [anon_sym_ATfeature] = ACTIONS(4224), - [aux_sym__custom_token1] = ACTIONS(4226), - [aux_sym__custom_token2] = ACTIONS(4228), - [anon_sym_ATswitch] = ACTIONS(4230), - [aux_sym_loop_operator_token1] = ACTIONS(4232), - [anon_sym_ATfor] = ACTIONS(4234), - [anon_sym_ATforeach] = ACTIONS(4236), - [anon_sym_ATforelse] = ACTIONS(4238), - [anon_sym_ATwhile] = ACTIONS(4240), - [anon_sym_ATsetup] = ACTIONS(4242), - [anon_sym_ATtask] = ACTIONS(4244), - [anon_sym_ATstory] = ACTIONS(4246), - [anon_sym_ATbefore] = ACTIONS(4248), - [anon_sym_ATafter] = ACTIONS(4250), - [anon_sym_ATsuccess] = ACTIONS(4252), - [anon_sym_ATfinished] = ACTIONS(4254), - [anon_sym_ATpersist] = ACTIONS(4256), - [anon_sym_ATteleport] = ACTIONS(4258), - [anon_sym_ATvolt] = ACTIONS(4260), - [aux_sym__text_token1] = ACTIONS(4262), - [aux_sym__text_token2] = ACTIONS(4262), - [aux_sym__text_token3] = ACTIONS(4264), - }, - [649] = { - [sym__definition] = STATE(657), - [sym_comment] = STATE(657), - [sym_keyword] = STATE(657), - [sym_php_statement] = STATE(657), - [sym__escaped] = STATE(3147), - [sym__unescaped] = STATE(3147), - [sym__raw] = STATE(3147), - [sym__inline_raw] = STATE(3147), - [sym__multi_line_raw] = STATE(3147), - [sym_attribute] = STATE(657), - [sym__inline_directive] = STATE(657), - [sym__nested_directive] = STATE(657), - [sym_fragment] = STATE(657), - [sym_section] = STATE(657), - [sym_inlineSection] = STATE(657), - [sym_once] = STATE(657), - [sym_verbatim] = STATE(657), - [sym_stack] = STATE(657), - [sym__push] = STATE(3148), - [sym__pushOnce] = STATE(3148), - [sym__pushIf] = STATE(3148), - [sym__prepend] = STATE(3148), - [sym__prependOnce] = STATE(3148), - [sym_conditional] = STATE(657), - [sym__if] = STATE(3149), - [sym__unless] = STATE(3149), - [sym__isset] = STATE(3149), - [sym__empty] = STATE(3149), - [sym__auth] = STATE(3149), - [sym__guest] = STATE(3149), - [sym__production] = STATE(3149), - [sym__env] = STATE(3149), - [sym__hasSection] = STATE(3149), - [sym__sectionMissing] = STATE(3149), - [sym__error] = STATE(3149), - [sym_authorization] = STATE(3149), - [sym__can] = STATE(3150), - [sym__cannot] = STATE(3150), - [sym__canany] = STATE(3150), - [sym__feature] = STATE(3149), - [sym__custom] = STATE(3149), - [sym_switch] = STATE(657), - [sym_loop] = STATE(657), - [sym_loop_operator] = STATE(657), - [sym__for] = STATE(3151), - [sym__foreach] = STATE(3151), - [sym__forelse] = STATE(3151), - [sym__while] = STATE(3151), - [sym_envoy] = STATE(657), - [sym__setup] = STATE(3147), - [sym__task] = STATE(3152), - [sym__story] = STATE(3152), - [sym__hooks] = STATE(3147), - [sym__before] = STATE(3147), - [sym__after] = STATE(3147), - [sym__envoy_error] = STATE(3147), - [sym__success] = STATE(3147), - [sym__finished] = STATE(3147), - [sym_livewire] = STATE(657), - [sym__persist] = STATE(3153), - [sym__teleport] = STATE(3153), - [sym__volt] = STATE(3153), - [aux_sym__directive_body] = STATE(657), - [sym_text] = STATE(657), - [sym__text] = STATE(938), - [aux_sym_php_only_repeat1] = STATE(938), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8910), - [aux_sym_keyword_token1] = ACTIONS(8912), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8914), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8916), - [anon_sym_ATphp] = ACTIONS(8918), - [aux_sym_attribute_token1] = ACTIONS(8920), - [aux_sym__inline_directive_token1] = ACTIONS(8922), - [anon_sym_ATfragment] = ACTIONS(8924), - [anon_sym_ATsection] = ACTIONS(8926), - [anon_sym_ATonce] = ACTIONS(8928), - [anon_sym_ATverbatim] = ACTIONS(8930), - [anon_sym_ATpush] = ACTIONS(8932), - [anon_sym_ATpushOnce] = ACTIONS(8934), - [anon_sym_ATpushIf] = ACTIONS(8936), - [anon_sym_ATprepend] = ACTIONS(8938), - [anon_sym_ATprependOnce] = ACTIONS(8940), - [anon_sym_ATif] = ACTIONS(8942), - [anon_sym_ATunless] = ACTIONS(8944), - [anon_sym_ATisset] = ACTIONS(8946), - [anon_sym_ATempty] = ACTIONS(8948), - [anon_sym_ATauth] = ACTIONS(8950), - [anon_sym_ATguest] = ACTIONS(8952), - [anon_sym_ATproduction] = ACTIONS(8954), - [anon_sym_ATenv] = ACTIONS(8956), - [anon_sym_AThasSection] = ACTIONS(8958), - [anon_sym_ATsectionMissing] = ACTIONS(8960), - [anon_sym_ATerror] = ACTIONS(8962), - [anon_sym_ATcan] = ACTIONS(8964), - [anon_sym_ATcannot] = ACTIONS(8966), - [anon_sym_ATcanany] = ACTIONS(8968), - [anon_sym_ATfeature] = ACTIONS(8970), - [aux_sym__custom_token1] = ACTIONS(8972), - [aux_sym__custom_token2] = ACTIONS(8974), - [anon_sym_ATswitch] = ACTIONS(8976), - [anon_sym_ATbreak] = ACTIONS(4626), - [aux_sym_loop_operator_token1] = ACTIONS(8978), - [anon_sym_ATfor] = ACTIONS(8980), - [anon_sym_ATforeach] = ACTIONS(8982), - [anon_sym_ATforelse] = ACTIONS(8984), - [anon_sym_ATwhile] = ACTIONS(8986), - [anon_sym_ATsetup] = ACTIONS(8988), - [anon_sym_ATtask] = ACTIONS(8990), - [anon_sym_ATstory] = ACTIONS(8992), - [anon_sym_ATbefore] = ACTIONS(8994), - [anon_sym_ATafter] = ACTIONS(8996), - [anon_sym_ATsuccess] = ACTIONS(8998), - [anon_sym_ATfinished] = ACTIONS(9000), - [anon_sym_ATpersist] = ACTIONS(9002), - [anon_sym_ATteleport] = ACTIONS(9004), - [anon_sym_ATvolt] = ACTIONS(9006), - [aux_sym__text_token1] = ACTIONS(9008), - [aux_sym__text_token2] = ACTIONS(9008), - [aux_sym__text_token3] = ACTIONS(9010), + [sym__definition] = STATE(350), + [sym_keyword] = STATE(350), + [sym_php_statement] = STATE(350), + [sym__escaped] = STATE(2024), + [sym__unescaped] = STATE(2024), + [sym__raw] = STATE(2024), + [sym__inline_raw] = STATE(2024), + [sym__multi_line_raw] = STATE(2024), + [sym_attribute] = STATE(350), + [sym__inline_directive] = STATE(350), + [sym__nested_directive] = STATE(350), + [sym_fragment] = STATE(350), + [sym_section] = STATE(350), + [sym_inlineSection] = STATE(350), + [sym_once] = STATE(350), + [sym_verbatim] = STATE(350), + [sym_stack] = STATE(350), + [sym__push] = STATE(2023), + [sym__pushOnce] = STATE(2023), + [sym__pushIf] = STATE(2023), + [sym__prepend] = STATE(2023), + [sym__prependOnce] = STATE(2023), + [sym_conditional] = STATE(350), + [sym__if] = STATE(2022), + [sym__unless] = STATE(2022), + [sym__isset] = STATE(2022), + [sym__empty] = STATE(2022), + [sym__auth] = STATE(2022), + [sym__guest] = STATE(2022), + [sym__production] = STATE(2022), + [sym__env] = STATE(2022), + [sym__hasSection] = STATE(2022), + [sym__sectionMissing] = STATE(2022), + [sym__error] = STATE(2022), + [sym_authorization] = STATE(2022), + [sym__can] = STATE(2021), + [sym__cannot] = STATE(2021), + [sym__canany] = STATE(2021), + [sym__feature] = STATE(2022), + [sym__custom] = STATE(2022), + [sym_switch] = STATE(350), + [sym_loop] = STATE(350), + [sym_loop_operator] = STATE(350), + [sym__for] = STATE(2020), + [sym__foreach] = STATE(2020), + [sym__forelse] = STATE(2020), + [sym__while] = STATE(2020), + [sym_envoy] = STATE(350), + [sym__setup] = STATE(2024), + [sym__task] = STATE(2019), + [sym__story] = STATE(2019), + [sym__hooks] = STATE(2024), + [sym__before] = STATE(2024), + [sym__after] = STATE(2024), + [sym__envoy_error] = STATE(2024), + [sym__success] = STATE(2024), + [sym__finished] = STATE(2024), + [sym_livewire] = STATE(350), + [sym__persist] = STATE(2018), + [sym__teleport] = STATE(2018), + [sym__volt] = STATE(2018), + [aux_sym__directive_body] = STATE(350), + [sym_text] = STATE(350), + [sym__text] = STATE(1258), + [aux_sym_php_only_repeat1] = STATE(1258), + [sym_comment] = ACTIONS(9456), + [aux_sym_keyword_token1] = ACTIONS(8159), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8161), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8163), + [anon_sym_ATphp] = ACTIONS(8165), + [aux_sym_attribute_token1] = ACTIONS(8167), + [aux_sym__inline_directive_token1] = ACTIONS(8169), + [anon_sym_ATfragment] = ACTIONS(8171), + [anon_sym_ATsection] = ACTIONS(8173), + [anon_sym_ATonce] = ACTIONS(8175), + [anon_sym_ATverbatim] = ACTIONS(8177), + [anon_sym_ATpush] = ACTIONS(8179), + [anon_sym_ATpushOnce] = ACTIONS(8181), + [anon_sym_ATpushIf] = ACTIONS(8183), + [anon_sym_ATprepend] = ACTIONS(8185), + [anon_sym_ATprependOnce] = ACTIONS(8187), + [anon_sym_ATendPrependOnce] = ACTIONS(4996), + [anon_sym_ATif] = ACTIONS(8189), + [anon_sym_ATunless] = ACTIONS(8191), + [anon_sym_ATisset] = ACTIONS(8193), + [anon_sym_ATempty] = ACTIONS(8195), + [anon_sym_ATauth] = ACTIONS(8197), + [anon_sym_ATguest] = ACTIONS(8199), + [anon_sym_ATproduction] = ACTIONS(8201), + [anon_sym_ATenv] = ACTIONS(8203), + [anon_sym_AThasSection] = ACTIONS(8205), + [anon_sym_ATsectionMissing] = ACTIONS(8207), + [anon_sym_ATerror] = ACTIONS(8209), + [anon_sym_ATcan] = ACTIONS(8211), + [anon_sym_ATcannot] = ACTIONS(8213), + [anon_sym_ATcanany] = ACTIONS(8215), + [anon_sym_ATfeature] = ACTIONS(8217), + [aux_sym__custom_token1] = ACTIONS(8219), + [aux_sym__custom_token2] = ACTIONS(8221), + [anon_sym_ATswitch] = ACTIONS(8223), + [aux_sym_loop_operator_token1] = ACTIONS(8225), + [anon_sym_ATfor] = ACTIONS(8227), + [anon_sym_ATforeach] = ACTIONS(8229), + [anon_sym_ATforelse] = ACTIONS(8231), + [anon_sym_ATwhile] = ACTIONS(8233), + [anon_sym_ATsetup] = ACTIONS(8235), + [anon_sym_ATtask] = ACTIONS(8237), + [anon_sym_ATstory] = ACTIONS(8239), + [anon_sym_ATbefore] = ACTIONS(8241), + [anon_sym_ATafter] = ACTIONS(8243), + [anon_sym_ATsuccess] = ACTIONS(8245), + [anon_sym_ATfinished] = ACTIONS(8247), + [anon_sym_ATpersist] = ACTIONS(8249), + [anon_sym_ATteleport] = ACTIONS(8251), + [anon_sym_ATvolt] = ACTIONS(8253), + [aux_sym__text_token1] = ACTIONS(8255), + [aux_sym__text_token2] = ACTIONS(8255), + [aux_sym__text_token3] = ACTIONS(8257), }, - [650] = { + [647] = { + [sym__definition] = STATE(647), + [sym_keyword] = STATE(647), + [sym_php_statement] = STATE(647), + [sym__escaped] = STATE(2667), + [sym__unescaped] = STATE(2667), + [sym__raw] = STATE(2667), + [sym__inline_raw] = STATE(2667), + [sym__multi_line_raw] = STATE(2667), + [sym_attribute] = STATE(647), + [sym__inline_directive] = STATE(647), + [sym__nested_directive] = STATE(647), + [sym_fragment] = STATE(647), + [sym_section] = STATE(647), + [sym_inlineSection] = STATE(647), + [sym_once] = STATE(647), + [sym_verbatim] = STATE(647), + [sym_stack] = STATE(647), + [sym__push] = STATE(2668), + [sym__pushOnce] = STATE(2668), + [sym__pushIf] = STATE(2668), + [sym__prepend] = STATE(2668), + [sym__prependOnce] = STATE(2668), + [sym_conditional] = STATE(647), + [sym__if] = STATE(2669), + [sym__unless] = STATE(2669), + [sym__isset] = STATE(2669), + [sym__empty] = STATE(2669), + [sym__auth] = STATE(2669), + [sym__guest] = STATE(2669), + [sym__production] = STATE(2669), + [sym__env] = STATE(2669), + [sym__hasSection] = STATE(2669), + [sym__sectionMissing] = STATE(2669), + [sym__error] = STATE(2669), + [sym_authorization] = STATE(2669), + [sym__can] = STATE(2670), + [sym__cannot] = STATE(2670), + [sym__canany] = STATE(2670), + [sym__feature] = STATE(2669), + [sym__custom] = STATE(2669), + [sym_switch] = STATE(647), + [sym_loop] = STATE(647), + [sym_loop_operator] = STATE(647), + [sym__for] = STATE(2671), + [sym__foreach] = STATE(2671), + [sym__forelse] = STATE(2671), + [sym__while] = STATE(2671), + [sym_envoy] = STATE(647), + [sym__setup] = STATE(2667), + [sym__task] = STATE(2672), + [sym__story] = STATE(2672), + [sym__hooks] = STATE(2667), + [sym__before] = STATE(2667), + [sym__after] = STATE(2667), + [sym__envoy_error] = STATE(2667), + [sym__success] = STATE(2667), + [sym__finished] = STATE(2667), + [sym_livewire] = STATE(647), + [sym__persist] = STATE(2673), + [sym__teleport] = STATE(2673), + [sym__volt] = STATE(2673), + [aux_sym__directive_body] = STATE(647), + [sym_text] = STATE(647), + [sym__text] = STATE(973), + [aux_sym_php_only_repeat1] = STATE(973), + [sym_comment] = ACTIONS(9458), + [aux_sym_keyword_token1] = ACTIONS(9461), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9464), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9467), + [anon_sym_ATphp] = ACTIONS(9470), + [aux_sym_attribute_token1] = ACTIONS(9473), + [aux_sym__inline_directive_token1] = ACTIONS(9476), + [anon_sym_ATfragment] = ACTIONS(9479), + [anon_sym_ATsection] = ACTIONS(9482), + [anon_sym_ATonce] = ACTIONS(9485), + [anon_sym_ATverbatim] = ACTIONS(9488), + [anon_sym_ATpush] = ACTIONS(9491), + [anon_sym_ATpushOnce] = ACTIONS(9494), + [anon_sym_ATpushIf] = ACTIONS(9497), + [anon_sym_ATprepend] = ACTIONS(9500), + [anon_sym_ATprependOnce] = ACTIONS(9503), + [anon_sym_ATif] = ACTIONS(9506), + [anon_sym_ATunless] = ACTIONS(9509), + [anon_sym_ATisset] = ACTIONS(9512), + [anon_sym_ATempty] = ACTIONS(9515), + [anon_sym_ATauth] = ACTIONS(9518), + [anon_sym_ATguest] = ACTIONS(9521), + [anon_sym_ATproduction] = ACTIONS(9524), + [anon_sym_ATenv] = ACTIONS(9527), + [anon_sym_AThasSection] = ACTIONS(9530), + [anon_sym_ATsectionMissing] = ACTIONS(9533), + [anon_sym_ATerror] = ACTIONS(9536), + [anon_sym_ATcan] = ACTIONS(9539), + [anon_sym_ATcannot] = ACTIONS(9542), + [anon_sym_ATcanany] = ACTIONS(9545), + [anon_sym_ATfeature] = ACTIONS(9548), + [aux_sym__custom_token1] = ACTIONS(9551), + [aux_sym__custom_token2] = ACTIONS(9554), + [anon_sym_ATswitch] = ACTIONS(9557), + [aux_sym_loop_operator_token1] = ACTIONS(9560), + [anon_sym_ATfor] = ACTIONS(9563), + [anon_sym_ATforeach] = ACTIONS(9566), + [anon_sym_ATforelse] = ACTIONS(9569), + [anon_sym_ATwhile] = ACTIONS(9572), + [anon_sym_ATsetup] = ACTIONS(9575), + [anon_sym_ATtask] = ACTIONS(9578), + [anon_sym_ATstory] = ACTIONS(9581), + [anon_sym_ATbefore] = ACTIONS(9584), + [anon_sym_ATafter] = ACTIONS(9587), + [anon_sym_ATsuccess] = ACTIONS(9590), + [anon_sym_ATfinished] = ACTIONS(9593), + [anon_sym_ATpersist] = ACTIONS(9596), + [anon_sym_ATendpersist] = ACTIONS(5035), + [anon_sym_ATteleport] = ACTIONS(9599), + [anon_sym_ATvolt] = ACTIONS(9602), + [aux_sym__text_token1] = ACTIONS(9605), + [aux_sym__text_token2] = ACTIONS(9605), + [aux_sym__text_token3] = ACTIONS(9608), + }, + [648] = { + [sym__definition] = STATE(648), + [sym_keyword] = STATE(648), + [sym_php_statement] = STATE(648), + [sym__escaped] = STATE(2666), + [sym__unescaped] = STATE(2666), + [sym__raw] = STATE(2666), + [sym__inline_raw] = STATE(2666), + [sym__multi_line_raw] = STATE(2666), + [sym_attribute] = STATE(648), + [sym__inline_directive] = STATE(648), + [sym__nested_directive] = STATE(648), + [sym_fragment] = STATE(648), + [sym_section] = STATE(648), + [sym_inlineSection] = STATE(648), + [sym_once] = STATE(648), + [sym_verbatim] = STATE(648), + [sym_stack] = STATE(648), + [sym__push] = STATE(2583), + [sym__pushOnce] = STATE(2583), + [sym__pushIf] = STATE(2583), + [sym__prepend] = STATE(2583), + [sym__prependOnce] = STATE(2583), + [sym_conditional] = STATE(648), + [sym__if] = STATE(2608), + [sym__unless] = STATE(2608), + [sym__isset] = STATE(2608), + [sym__empty] = STATE(2608), + [sym__auth] = STATE(2608), + [sym__guest] = STATE(2608), + [sym__production] = STATE(2608), + [sym__env] = STATE(2608), + [sym__hasSection] = STATE(2608), + [sym__sectionMissing] = STATE(2608), + [sym__error] = STATE(2608), + [sym_authorization] = STATE(2608), + [sym__can] = STATE(2592), + [sym__cannot] = STATE(2592), + [sym__canany] = STATE(2592), + [sym__feature] = STATE(2608), + [sym__custom] = STATE(2608), + [sym_switch] = STATE(648), + [sym_loop] = STATE(648), + [sym_loop_operator] = STATE(648), + [sym__for] = STATE(2584), + [sym__foreach] = STATE(2584), + [sym__forelse] = STATE(2584), + [sym__while] = STATE(2584), + [sym_envoy] = STATE(648), + [sym__setup] = STATE(2666), + [sym__task] = STATE(2419), + [sym__story] = STATE(2419), + [sym__hooks] = STATE(2666), + [sym__before] = STATE(2666), + [sym__after] = STATE(2666), + [sym__envoy_error] = STATE(2666), + [sym__success] = STATE(2666), + [sym__finished] = STATE(2666), + [sym_livewire] = STATE(648), + [sym__persist] = STATE(2526), + [sym__teleport] = STATE(2526), + [sym__volt] = STATE(2526), + [aux_sym__directive_body] = STATE(648), + [sym_text] = STATE(648), + [sym__text] = STATE(1078), + [aux_sym_php_only_repeat1] = STATE(1078), + [sym_comment] = ACTIONS(9611), + [aux_sym_keyword_token1] = ACTIONS(9614), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9617), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9620), + [anon_sym_ATphp] = ACTIONS(9623), + [aux_sym_attribute_token1] = ACTIONS(9626), + [aux_sym__inline_directive_token1] = ACTIONS(9629), + [anon_sym_ATfragment] = ACTIONS(9632), + [anon_sym_ATsection] = ACTIONS(9635), + [anon_sym_ATonce] = ACTIONS(9638), + [anon_sym_ATverbatim] = ACTIONS(9641), + [anon_sym_ATpush] = ACTIONS(9644), + [anon_sym_ATpushOnce] = ACTIONS(9647), + [anon_sym_ATpushIf] = ACTIONS(9650), + [anon_sym_ATendPushIf] = ACTIONS(5035), + [anon_sym_ATprepend] = ACTIONS(9653), + [anon_sym_ATprependOnce] = ACTIONS(9656), + [anon_sym_ATif] = ACTIONS(9659), + [anon_sym_ATunless] = ACTIONS(9662), + [anon_sym_ATisset] = ACTIONS(9665), + [anon_sym_ATempty] = ACTIONS(9668), + [anon_sym_ATauth] = ACTIONS(9671), + [anon_sym_ATguest] = ACTIONS(9674), + [anon_sym_ATproduction] = ACTIONS(9677), + [anon_sym_ATenv] = ACTIONS(9680), + [anon_sym_AThasSection] = ACTIONS(9683), + [anon_sym_ATsectionMissing] = ACTIONS(9686), + [anon_sym_ATerror] = ACTIONS(9689), + [anon_sym_ATcan] = ACTIONS(9692), + [anon_sym_ATcannot] = ACTIONS(9695), + [anon_sym_ATcanany] = ACTIONS(9698), + [anon_sym_ATfeature] = ACTIONS(9701), + [aux_sym__custom_token1] = ACTIONS(9704), + [aux_sym__custom_token2] = ACTIONS(9707), + [anon_sym_ATswitch] = ACTIONS(9710), + [aux_sym_loop_operator_token1] = ACTIONS(9713), + [anon_sym_ATfor] = ACTIONS(9716), + [anon_sym_ATforeach] = ACTIONS(9719), + [anon_sym_ATforelse] = ACTIONS(9722), + [anon_sym_ATwhile] = ACTIONS(9725), + [anon_sym_ATsetup] = ACTIONS(9728), + [anon_sym_ATtask] = ACTIONS(9731), + [anon_sym_ATstory] = ACTIONS(9734), + [anon_sym_ATbefore] = ACTIONS(9737), + [anon_sym_ATafter] = ACTIONS(9740), + [anon_sym_ATsuccess] = ACTIONS(9743), + [anon_sym_ATfinished] = ACTIONS(9746), + [anon_sym_ATpersist] = ACTIONS(9749), + [anon_sym_ATteleport] = ACTIONS(9752), + [anon_sym_ATvolt] = ACTIONS(9755), + [aux_sym__text_token1] = ACTIONS(9758), + [aux_sym__text_token2] = ACTIONS(9758), + [aux_sym__text_token3] = ACTIONS(9761), + }, + [649] = { [sym__definition] = STATE(650), - [sym_comment] = STATE(650), [sym_keyword] = STATE(650), [sym_php_statement] = STATE(650), - [sym__escaped] = STATE(2811), - [sym__unescaped] = STATE(2811), - [sym__raw] = STATE(2811), - [sym__inline_raw] = STATE(2811), - [sym__multi_line_raw] = STATE(2811), + [sym__escaped] = STATE(3077), + [sym__unescaped] = STATE(3077), + [sym__raw] = STATE(3077), + [sym__inline_raw] = STATE(3077), + [sym__multi_line_raw] = STATE(3077), [sym_attribute] = STATE(650), [sym__inline_directive] = STATE(650), [sym__nested_directive] = STATE(650), @@ -105133,118 +103862,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(650), [sym_verbatim] = STATE(650), [sym_stack] = STATE(650), - [sym__push] = STATE(2812), - [sym__pushOnce] = STATE(2812), - [sym__pushIf] = STATE(2812), - [sym__prepend] = STATE(2812), - [sym__prependOnce] = STATE(2812), + [sym__push] = STATE(3078), + [sym__pushOnce] = STATE(3078), + [sym__pushIf] = STATE(3078), + [sym__prepend] = STATE(3078), + [sym__prependOnce] = STATE(3078), [sym_conditional] = STATE(650), - [sym__if] = STATE(2813), - [sym__unless] = STATE(2813), - [sym__isset] = STATE(2813), - [sym__empty] = STATE(2813), - [sym__auth] = STATE(2813), - [sym__guest] = STATE(2813), - [sym__production] = STATE(2813), - [sym__env] = STATE(2813), - [sym__hasSection] = STATE(2813), - [sym__sectionMissing] = STATE(2813), - [sym__error] = STATE(2813), - [sym_authorization] = STATE(2813), - [sym__can] = STATE(2814), - [sym__cannot] = STATE(2814), - [sym__canany] = STATE(2814), - [sym__feature] = STATE(2813), - [sym__custom] = STATE(2813), + [sym__if] = STATE(3079), + [sym__unless] = STATE(3079), + [sym__isset] = STATE(3079), + [sym__empty] = STATE(3079), + [sym__auth] = STATE(3079), + [sym__guest] = STATE(3079), + [sym__production] = STATE(3079), + [sym__env] = STATE(3079), + [sym__hasSection] = STATE(3079), + [sym__sectionMissing] = STATE(3079), + [sym__error] = STATE(3079), + [sym_authorization] = STATE(3079), + [sym__can] = STATE(3080), + [sym__cannot] = STATE(3080), + [sym__canany] = STATE(3080), + [sym__feature] = STATE(3079), + [sym__custom] = STATE(3079), [sym_switch] = STATE(650), [sym_loop] = STATE(650), [sym_loop_operator] = STATE(650), - [sym__for] = STATE(2815), - [sym__foreach] = STATE(2815), - [sym__forelse] = STATE(2815), - [sym__while] = STATE(2815), + [sym__for] = STATE(3081), + [sym__foreach] = STATE(3081), + [sym__forelse] = STATE(3081), + [sym__while] = STATE(3081), [sym_envoy] = STATE(650), - [sym__setup] = STATE(2811), - [sym__task] = STATE(2816), - [sym__story] = STATE(2816), - [sym__hooks] = STATE(2811), - [sym__before] = STATE(2811), - [sym__after] = STATE(2811), - [sym__envoy_error] = STATE(2811), - [sym__success] = STATE(2811), - [sym__finished] = STATE(2811), + [sym__setup] = STATE(3077), + [sym__task] = STATE(3082), + [sym__story] = STATE(3082), + [sym__hooks] = STATE(3077), + [sym__before] = STATE(3077), + [sym__after] = STATE(3077), + [sym__envoy_error] = STATE(3077), + [sym__success] = STATE(3077), + [sym__finished] = STATE(3077), [sym_livewire] = STATE(650), - [sym__persist] = STATE(2817), - [sym__teleport] = STATE(2817), - [sym__volt] = STATE(2817), + [sym__persist] = STATE(3083), + [sym__teleport] = STATE(3083), + [sym__volt] = STATE(3083), [aux_sym__directive_body] = STATE(650), [sym_text] = STATE(650), - [sym__text] = STATE(958), - [aux_sym_php_only_repeat1] = STATE(958), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(9014), - [aux_sym_keyword_token1] = ACTIONS(9017), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9020), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9023), - [anon_sym_ATphp] = ACTIONS(9026), - [aux_sym_attribute_token1] = ACTIONS(9029), - [aux_sym__inline_directive_token1] = ACTIONS(9032), - [anon_sym_ATfragment] = ACTIONS(9035), - [anon_sym_ATsection] = ACTIONS(9038), - [anon_sym_ATonce] = ACTIONS(9041), - [anon_sym_ATverbatim] = ACTIONS(9044), - [anon_sym_ATpush] = ACTIONS(9047), - [anon_sym_ATpushOnce] = ACTIONS(9050), - [anon_sym_ATpushIf] = ACTIONS(9053), - [anon_sym_ATprepend] = ACTIONS(9056), - [anon_sym_ATprependOnce] = ACTIONS(9059), - [anon_sym_ATif] = ACTIONS(9062), - [anon_sym_ATunless] = ACTIONS(9065), - [anon_sym_ATisset] = ACTIONS(9068), - [anon_sym_ATempty] = ACTIONS(9071), - [anon_sym_ATauth] = ACTIONS(9074), - [anon_sym_ATguest] = ACTIONS(9077), - [anon_sym_ATproduction] = ACTIONS(9080), - [anon_sym_ATenv] = ACTIONS(9083), - [anon_sym_AThasSection] = ACTIONS(9086), - [anon_sym_ATsectionMissing] = ACTIONS(9089), - [anon_sym_ATerror] = ACTIONS(9092), - [anon_sym_ATcan] = ACTIONS(9095), - [anon_sym_ATcannot] = ACTIONS(9098), - [anon_sym_ATcanany] = ACTIONS(9101), - [anon_sym_ATfeature] = ACTIONS(9104), - [aux_sym__custom_token1] = ACTIONS(9107), - [aux_sym__custom_token2] = ACTIONS(9110), - [anon_sym_ATswitch] = ACTIONS(9113), - [aux_sym_loop_operator_token1] = ACTIONS(9116), - [anon_sym_ATfor] = ACTIONS(9119), - [anon_sym_ATforeach] = ACTIONS(9122), - [anon_sym_ATforelse] = ACTIONS(9125), - [anon_sym_ATwhile] = ACTIONS(9128), - [anon_sym_ATsetup] = ACTIONS(9131), - [anon_sym_ATtask] = ACTIONS(9134), - [anon_sym_ATstory] = ACTIONS(9137), - [anon_sym_ATbefore] = ACTIONS(9140), - [anon_sym_ATafter] = ACTIONS(9143), - [anon_sym_ATsuccess] = ACTIONS(9146), - [anon_sym_ATfinished] = ACTIONS(9149), - [anon_sym_ATpersist] = ACTIONS(9152), - [anon_sym_ATteleport] = ACTIONS(9155), - [anon_sym_ATendteleport] = ACTIONS(3925), - [anon_sym_ATvolt] = ACTIONS(9158), - [aux_sym__text_token1] = ACTIONS(9161), - [aux_sym__text_token2] = ACTIONS(9161), - [aux_sym__text_token3] = ACTIONS(9164), + [sym__text] = STATE(947), + [aux_sym_php_only_repeat1] = STATE(947), + [sym_comment] = ACTIONS(9764), + [aux_sym_keyword_token1] = ACTIONS(9766), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9768), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9770), + [anon_sym_ATphp] = ACTIONS(9772), + [aux_sym_attribute_token1] = ACTIONS(9774), + [aux_sym__inline_directive_token1] = ACTIONS(9776), + [anon_sym_ATfragment] = ACTIONS(9778), + [anon_sym_ATsection] = ACTIONS(9780), + [anon_sym_ATonce] = ACTIONS(9782), + [anon_sym_ATverbatim] = ACTIONS(9784), + [anon_sym_ATpush] = ACTIONS(9786), + [anon_sym_ATpushOnce] = ACTIONS(9788), + [anon_sym_ATpushIf] = ACTIONS(9790), + [anon_sym_ATprepend] = ACTIONS(9792), + [anon_sym_ATprependOnce] = ACTIONS(9794), + [anon_sym_ATif] = ACTIONS(9796), + [anon_sym_ATunless] = ACTIONS(9798), + [anon_sym_ATisset] = ACTIONS(9800), + [anon_sym_ATempty] = ACTIONS(9802), + [anon_sym_ATauth] = ACTIONS(9804), + [anon_sym_ATguest] = ACTIONS(9806), + [anon_sym_ATproduction] = ACTIONS(9808), + [anon_sym_ATenv] = ACTIONS(9810), + [anon_sym_AThasSection] = ACTIONS(9812), + [anon_sym_ATsectionMissing] = ACTIONS(9814), + [anon_sym_ATerror] = ACTIONS(9816), + [anon_sym_ATcan] = ACTIONS(9818), + [anon_sym_ATcannot] = ACTIONS(9820), + [anon_sym_ATcanany] = ACTIONS(9822), + [anon_sym_ATfeature] = ACTIONS(9824), + [aux_sym__custom_token1] = ACTIONS(9826), + [aux_sym__custom_token2] = ACTIONS(9828), + [anon_sym_ATswitch] = ACTIONS(9830), + [anon_sym_ATbreak] = ACTIONS(4609), + [aux_sym_loop_operator_token1] = ACTIONS(9832), + [anon_sym_ATfor] = ACTIONS(9834), + [anon_sym_ATforeach] = ACTIONS(9836), + [anon_sym_ATforelse] = ACTIONS(9838), + [anon_sym_ATwhile] = ACTIONS(9840), + [anon_sym_ATsetup] = ACTIONS(9842), + [anon_sym_ATtask] = ACTIONS(9844), + [anon_sym_ATstory] = ACTIONS(9846), + [anon_sym_ATbefore] = ACTIONS(9848), + [anon_sym_ATafter] = ACTIONS(9850), + [anon_sym_ATsuccess] = ACTIONS(9852), + [anon_sym_ATfinished] = ACTIONS(9854), + [anon_sym_ATpersist] = ACTIONS(9856), + [anon_sym_ATteleport] = ACTIONS(9858), + [anon_sym_ATvolt] = ACTIONS(9860), + [aux_sym__text_token1] = ACTIONS(9862), + [aux_sym__text_token2] = ACTIONS(9862), + [aux_sym__text_token3] = ACTIONS(9864), + }, + [650] = { + [sym__definition] = STATE(657), + [sym_keyword] = STATE(657), + [sym_php_statement] = STATE(657), + [sym__escaped] = STATE(3077), + [sym__unescaped] = STATE(3077), + [sym__raw] = STATE(3077), + [sym__inline_raw] = STATE(3077), + [sym__multi_line_raw] = STATE(3077), + [sym_attribute] = STATE(657), + [sym__inline_directive] = STATE(657), + [sym__nested_directive] = STATE(657), + [sym_fragment] = STATE(657), + [sym_section] = STATE(657), + [sym_inlineSection] = STATE(657), + [sym_once] = STATE(657), + [sym_verbatim] = STATE(657), + [sym_stack] = STATE(657), + [sym__push] = STATE(3078), + [sym__pushOnce] = STATE(3078), + [sym__pushIf] = STATE(3078), + [sym__prepend] = STATE(3078), + [sym__prependOnce] = STATE(3078), + [sym_conditional] = STATE(657), + [sym__if] = STATE(3079), + [sym__unless] = STATE(3079), + [sym__isset] = STATE(3079), + [sym__empty] = STATE(3079), + [sym__auth] = STATE(3079), + [sym__guest] = STATE(3079), + [sym__production] = STATE(3079), + [sym__env] = STATE(3079), + [sym__hasSection] = STATE(3079), + [sym__sectionMissing] = STATE(3079), + [sym__error] = STATE(3079), + [sym_authorization] = STATE(3079), + [sym__can] = STATE(3080), + [sym__cannot] = STATE(3080), + [sym__canany] = STATE(3080), + [sym__feature] = STATE(3079), + [sym__custom] = STATE(3079), + [sym_switch] = STATE(657), + [sym_loop] = STATE(657), + [sym_loop_operator] = STATE(657), + [sym__for] = STATE(3081), + [sym__foreach] = STATE(3081), + [sym__forelse] = STATE(3081), + [sym__while] = STATE(3081), + [sym_envoy] = STATE(657), + [sym__setup] = STATE(3077), + [sym__task] = STATE(3082), + [sym__story] = STATE(3082), + [sym__hooks] = STATE(3077), + [sym__before] = STATE(3077), + [sym__after] = STATE(3077), + [sym__envoy_error] = STATE(3077), + [sym__success] = STATE(3077), + [sym__finished] = STATE(3077), + [sym_livewire] = STATE(657), + [sym__persist] = STATE(3083), + [sym__teleport] = STATE(3083), + [sym__volt] = STATE(3083), + [aux_sym__directive_body] = STATE(657), + [sym_text] = STATE(657), + [sym__text] = STATE(947), + [aux_sym_php_only_repeat1] = STATE(947), + [sym_comment] = ACTIONS(9866), + [aux_sym_keyword_token1] = ACTIONS(9766), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9768), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9770), + [anon_sym_ATphp] = ACTIONS(9772), + [aux_sym_attribute_token1] = ACTIONS(9774), + [aux_sym__inline_directive_token1] = ACTIONS(9776), + [anon_sym_ATfragment] = ACTIONS(9778), + [anon_sym_ATsection] = ACTIONS(9780), + [anon_sym_ATonce] = ACTIONS(9782), + [anon_sym_ATverbatim] = ACTIONS(9784), + [anon_sym_ATpush] = ACTIONS(9786), + [anon_sym_ATpushOnce] = ACTIONS(9788), + [anon_sym_ATpushIf] = ACTIONS(9790), + [anon_sym_ATprepend] = ACTIONS(9792), + [anon_sym_ATprependOnce] = ACTIONS(9794), + [anon_sym_ATif] = ACTIONS(9796), + [anon_sym_ATunless] = ACTIONS(9798), + [anon_sym_ATisset] = ACTIONS(9800), + [anon_sym_ATempty] = ACTIONS(9802), + [anon_sym_ATauth] = ACTIONS(9804), + [anon_sym_ATguest] = ACTIONS(9806), + [anon_sym_ATproduction] = ACTIONS(9808), + [anon_sym_ATenv] = ACTIONS(9810), + [anon_sym_AThasSection] = ACTIONS(9812), + [anon_sym_ATsectionMissing] = ACTIONS(9814), + [anon_sym_ATerror] = ACTIONS(9816), + [anon_sym_ATcan] = ACTIONS(9818), + [anon_sym_ATcannot] = ACTIONS(9820), + [anon_sym_ATcanany] = ACTIONS(9822), + [anon_sym_ATfeature] = ACTIONS(9824), + [aux_sym__custom_token1] = ACTIONS(9826), + [aux_sym__custom_token2] = ACTIONS(9828), + [anon_sym_ATswitch] = ACTIONS(9830), + [anon_sym_ATbreak] = ACTIONS(4996), + [aux_sym_loop_operator_token1] = ACTIONS(9832), + [anon_sym_ATfor] = ACTIONS(9834), + [anon_sym_ATforeach] = ACTIONS(9836), + [anon_sym_ATforelse] = ACTIONS(9838), + [anon_sym_ATwhile] = ACTIONS(9840), + [anon_sym_ATsetup] = ACTIONS(9842), + [anon_sym_ATtask] = ACTIONS(9844), + [anon_sym_ATstory] = ACTIONS(9846), + [anon_sym_ATbefore] = ACTIONS(9848), + [anon_sym_ATafter] = ACTIONS(9850), + [anon_sym_ATsuccess] = ACTIONS(9852), + [anon_sym_ATfinished] = ACTIONS(9854), + [anon_sym_ATpersist] = ACTIONS(9856), + [anon_sym_ATteleport] = ACTIONS(9858), + [anon_sym_ATvolt] = ACTIONS(9860), + [aux_sym__text_token1] = ACTIONS(9862), + [aux_sym__text_token2] = ACTIONS(9862), + [aux_sym__text_token3] = ACTIONS(9864), }, [651] = { [sym__definition] = STATE(651), - [sym_comment] = STATE(651), [sym_keyword] = STATE(651), [sym_php_statement] = STATE(651), - [sym__escaped] = STATE(3241), - [sym__unescaped] = STATE(3241), - [sym__raw] = STATE(3241), - [sym__inline_raw] = STATE(3241), - [sym__multi_line_raw] = STATE(3241), + [sym__escaped] = STATE(2749), + [sym__unescaped] = STATE(2749), + [sym__raw] = STATE(2749), + [sym__inline_raw] = STATE(2749), + [sym__multi_line_raw] = STATE(2749), [sym_attribute] = STATE(651), [sym__inline_directive] = STATE(651), [sym__nested_directive] = STATE(651), @@ -105254,118 +104102,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(651), [sym_verbatim] = STATE(651), [sym_stack] = STATE(651), - [sym__push] = STATE(3242), - [sym__pushOnce] = STATE(3242), - [sym__pushIf] = STATE(3242), - [sym__prepend] = STATE(3242), - [sym__prependOnce] = STATE(3242), + [sym__push] = STATE(2750), + [sym__pushOnce] = STATE(2750), + [sym__pushIf] = STATE(2750), + [sym__prepend] = STATE(2750), + [sym__prependOnce] = STATE(2750), [sym_conditional] = STATE(651), - [sym__if] = STATE(3254), - [sym__unless] = STATE(3254), - [sym__isset] = STATE(3254), - [sym__empty] = STATE(3254), - [sym__auth] = STATE(3254), - [sym__guest] = STATE(3254), - [sym__production] = STATE(3254), - [sym__env] = STATE(3254), - [sym__hasSection] = STATE(3254), - [sym__sectionMissing] = STATE(3254), - [sym__error] = STATE(3254), - [sym_authorization] = STATE(3254), - [sym__can] = STATE(3258), - [sym__cannot] = STATE(3258), - [sym__canany] = STATE(3258), - [sym__feature] = STATE(3254), - [sym__custom] = STATE(3254), + [sym__if] = STATE(2751), + [sym__unless] = STATE(2751), + [sym__isset] = STATE(2751), + [sym__empty] = STATE(2751), + [sym__auth] = STATE(2751), + [sym__guest] = STATE(2751), + [sym__production] = STATE(2751), + [sym__env] = STATE(2751), + [sym__hasSection] = STATE(2751), + [sym__sectionMissing] = STATE(2751), + [sym__error] = STATE(2751), + [sym_authorization] = STATE(2751), + [sym__can] = STATE(2752), + [sym__cannot] = STATE(2752), + [sym__canany] = STATE(2752), + [sym__feature] = STATE(2751), + [sym__custom] = STATE(2751), [sym_switch] = STATE(651), [sym_loop] = STATE(651), [sym_loop_operator] = STATE(651), - [sym__for] = STATE(3259), - [sym__foreach] = STATE(3259), - [sym__forelse] = STATE(3259), - [sym__while] = STATE(3259), + [sym__for] = STATE(2753), + [sym__foreach] = STATE(2753), + [sym__forelse] = STATE(2753), + [sym__while] = STATE(2753), [sym_envoy] = STATE(651), - [sym__setup] = STATE(3241), - [sym__task] = STATE(3280), - [sym__story] = STATE(3280), - [sym__hooks] = STATE(3241), - [sym__before] = STATE(3241), - [sym__after] = STATE(3241), - [sym__envoy_error] = STATE(3241), - [sym__success] = STATE(3241), - [sym__finished] = STATE(3241), + [sym__setup] = STATE(2749), + [sym__task] = STATE(2754), + [sym__story] = STATE(2754), + [sym__hooks] = STATE(2749), + [sym__before] = STATE(2749), + [sym__after] = STATE(2749), + [sym__envoy_error] = STATE(2749), + [sym__success] = STATE(2749), + [sym__finished] = STATE(2749), [sym_livewire] = STATE(651), - [sym__persist] = STATE(3262), - [sym__teleport] = STATE(3262), - [sym__volt] = STATE(3262), + [sym__persist] = STATE(2755), + [sym__teleport] = STATE(2755), + [sym__volt] = STATE(2755), + [aux_sym__directive_body] = STATE(651), [sym_text] = STATE(651), - [sym__text] = STATE(752), - [aux_sym_blade_repeat1] = STATE(651), - [aux_sym_php_only_repeat1] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(5063), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(9167), - [aux_sym_keyword_token1] = ACTIONS(9170), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9173), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9176), - [anon_sym_ATphp] = ACTIONS(9179), - [aux_sym_attribute_token1] = ACTIONS(9182), - [aux_sym__inline_directive_token1] = ACTIONS(9185), - [anon_sym_ATfragment] = ACTIONS(9188), - [anon_sym_ATsection] = ACTIONS(9191), - [anon_sym_ATonce] = ACTIONS(9194), - [anon_sym_ATverbatim] = ACTIONS(9197), - [anon_sym_ATpush] = ACTIONS(9200), - [anon_sym_ATpushOnce] = ACTIONS(9203), - [anon_sym_ATpushIf] = ACTIONS(9206), - [anon_sym_ATprepend] = ACTIONS(9209), - [anon_sym_ATprependOnce] = ACTIONS(9212), - [anon_sym_ATif] = ACTIONS(9215), - [anon_sym_ATunless] = ACTIONS(9218), - [anon_sym_ATisset] = ACTIONS(9221), - [anon_sym_ATempty] = ACTIONS(9224), - [anon_sym_ATauth] = ACTIONS(9227), - [anon_sym_ATguest] = ACTIONS(9230), - [anon_sym_ATproduction] = ACTIONS(9233), - [anon_sym_ATenv] = ACTIONS(9236), - [anon_sym_AThasSection] = ACTIONS(9239), - [anon_sym_ATsectionMissing] = ACTIONS(9242), - [anon_sym_ATerror] = ACTIONS(9245), - [anon_sym_ATcan] = ACTIONS(9248), - [anon_sym_ATcannot] = ACTIONS(9251), - [anon_sym_ATcanany] = ACTIONS(9254), - [anon_sym_ATfeature] = ACTIONS(9257), - [aux_sym__custom_token1] = ACTIONS(9260), - [aux_sym__custom_token2] = ACTIONS(9263), - [anon_sym_ATswitch] = ACTIONS(9266), - [aux_sym_loop_operator_token1] = ACTIONS(9269), - [anon_sym_ATfor] = ACTIONS(9272), - [anon_sym_ATforeach] = ACTIONS(9275), - [anon_sym_ATforelse] = ACTIONS(9278), - [anon_sym_ATwhile] = ACTIONS(9281), - [anon_sym_ATsetup] = ACTIONS(9284), - [anon_sym_ATtask] = ACTIONS(9287), - [anon_sym_ATstory] = ACTIONS(9290), - [anon_sym_ATbefore] = ACTIONS(9293), - [anon_sym_ATafter] = ACTIONS(9296), - [anon_sym_ATsuccess] = ACTIONS(9299), - [anon_sym_ATfinished] = ACTIONS(9302), - [anon_sym_ATpersist] = ACTIONS(9305), - [anon_sym_ATteleport] = ACTIONS(9308), - [anon_sym_ATvolt] = ACTIONS(9311), - [aux_sym__text_token1] = ACTIONS(9314), - [aux_sym__text_token2] = ACTIONS(9314), - [aux_sym__text_token3] = ACTIONS(9317), + [sym__text] = STATE(969), + [aux_sym_php_only_repeat1] = STATE(969), + [sym_comment] = ACTIONS(9868), + [aux_sym_keyword_token1] = ACTIONS(9871), + [anon_sym_LBRACE_LBRACE] = ACTIONS(9874), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9877), + [anon_sym_ATphp] = ACTIONS(9880), + [aux_sym_attribute_token1] = ACTIONS(9883), + [aux_sym__inline_directive_token1] = ACTIONS(9886), + [anon_sym_ATfragment] = ACTIONS(9889), + [anon_sym_ATsection] = ACTIONS(9892), + [anon_sym_ATonce] = ACTIONS(9895), + [anon_sym_ATverbatim] = ACTIONS(9898), + [anon_sym_ATpush] = ACTIONS(9901), + [anon_sym_ATpushOnce] = ACTIONS(9904), + [anon_sym_ATpushIf] = ACTIONS(9907), + [anon_sym_ATprepend] = ACTIONS(9910), + [anon_sym_ATprependOnce] = ACTIONS(9913), + [anon_sym_ATif] = ACTIONS(9916), + [anon_sym_ATunless] = ACTIONS(9919), + [anon_sym_ATisset] = ACTIONS(9922), + [anon_sym_ATempty] = ACTIONS(9925), + [anon_sym_ATauth] = ACTIONS(9928), + [anon_sym_ATguest] = ACTIONS(9931), + [anon_sym_ATproduction] = ACTIONS(9934), + [anon_sym_ATenv] = ACTIONS(9937), + [anon_sym_AThasSection] = ACTIONS(9940), + [anon_sym_ATsectionMissing] = ACTIONS(9943), + [anon_sym_ATerror] = ACTIONS(9946), + [anon_sym_ATcan] = ACTIONS(9949), + [anon_sym_ATcannot] = ACTIONS(9952), + [anon_sym_ATcanany] = ACTIONS(9955), + [anon_sym_ATfeature] = ACTIONS(9958), + [aux_sym__custom_token1] = ACTIONS(9961), + [aux_sym__custom_token2] = ACTIONS(9964), + [anon_sym_ATswitch] = ACTIONS(9967), + [aux_sym_loop_operator_token1] = ACTIONS(9970), + [anon_sym_ATfor] = ACTIONS(9973), + [anon_sym_ATforeach] = ACTIONS(9976), + [anon_sym_ATforelse] = ACTIONS(9979), + [anon_sym_ATwhile] = ACTIONS(9982), + [anon_sym_ATsetup] = ACTIONS(9985), + [anon_sym_ATtask] = ACTIONS(9988), + [anon_sym_ATstory] = ACTIONS(9991), + [anon_sym_ATbefore] = ACTIONS(9994), + [anon_sym_ATafter] = ACTIONS(9997), + [anon_sym_ATsuccess] = ACTIONS(10000), + [anon_sym_ATfinished] = ACTIONS(10003), + [anon_sym_ATpersist] = ACTIONS(10006), + [anon_sym_ATteleport] = ACTIONS(10009), + [anon_sym_ATendteleport] = ACTIONS(5035), + [anon_sym_ATvolt] = ACTIONS(10012), + [aux_sym__text_token1] = ACTIONS(10015), + [aux_sym__text_token2] = ACTIONS(10015), + [aux_sym__text_token3] = ACTIONS(10018), }, [652] = { [sym__definition] = STATE(652), - [sym_comment] = STATE(652), [sym_keyword] = STATE(652), [sym_php_statement] = STATE(652), - [sym__escaped] = STATE(2895), - [sym__unescaped] = STATE(2895), - [sym__raw] = STATE(2895), - [sym__inline_raw] = STATE(2895), - [sym__multi_line_raw] = STATE(2895), + [sym__escaped] = STATE(2831), + [sym__unescaped] = STATE(2831), + [sym__raw] = STATE(2831), + [sym__inline_raw] = STATE(2831), + [sym__multi_line_raw] = STATE(2831), [sym_attribute] = STATE(652), [sym__inline_directive] = STATE(652), [sym__nested_directive] = STATE(652), @@ -105375,239 +104222,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(652), [sym_verbatim] = STATE(652), [sym_stack] = STATE(652), - [sym__push] = STATE(2896), - [sym__pushOnce] = STATE(2896), - [sym__pushIf] = STATE(2896), - [sym__prepend] = STATE(2896), - [sym__prependOnce] = STATE(2896), + [sym__push] = STATE(2832), + [sym__pushOnce] = STATE(2832), + [sym__pushIf] = STATE(2832), + [sym__prepend] = STATE(2832), + [sym__prependOnce] = STATE(2832), [sym_conditional] = STATE(652), - [sym__if] = STATE(2897), - [sym__unless] = STATE(2897), - [sym__isset] = STATE(2897), - [sym__empty] = STATE(2897), - [sym__auth] = STATE(2897), - [sym__guest] = STATE(2897), - [sym__production] = STATE(2897), - [sym__env] = STATE(2897), - [sym__hasSection] = STATE(2897), - [sym__sectionMissing] = STATE(2897), - [sym__error] = STATE(2897), - [sym_authorization] = STATE(2897), - [sym__can] = STATE(2898), - [sym__cannot] = STATE(2898), - [sym__canany] = STATE(2898), - [sym__feature] = STATE(2897), - [sym__custom] = STATE(2897), + [sym__if] = STATE(2833), + [sym__unless] = STATE(2833), + [sym__isset] = STATE(2833), + [sym__empty] = STATE(2833), + [sym__auth] = STATE(2833), + [sym__guest] = STATE(2833), + [sym__production] = STATE(2833), + [sym__env] = STATE(2833), + [sym__hasSection] = STATE(2833), + [sym__sectionMissing] = STATE(2833), + [sym__error] = STATE(2833), + [sym_authorization] = STATE(2833), + [sym__can] = STATE(2834), + [sym__cannot] = STATE(2834), + [sym__canany] = STATE(2834), + [sym__feature] = STATE(2833), + [sym__custom] = STATE(2833), [sym_switch] = STATE(652), [sym_loop] = STATE(652), [sym_loop_operator] = STATE(652), - [sym__for] = STATE(2899), - [sym__foreach] = STATE(2899), - [sym__forelse] = STATE(2899), - [sym__while] = STATE(2899), + [sym__for] = STATE(2835), + [sym__foreach] = STATE(2835), + [sym__forelse] = STATE(2835), + [sym__while] = STATE(2835), [sym_envoy] = STATE(652), - [sym__setup] = STATE(2895), - [sym__task] = STATE(2900), - [sym__story] = STATE(2900), - [sym__hooks] = STATE(2895), - [sym__before] = STATE(2895), - [sym__after] = STATE(2895), - [sym__envoy_error] = STATE(2895), - [sym__success] = STATE(2895), - [sym__finished] = STATE(2895), + [sym__setup] = STATE(2831), + [sym__task] = STATE(2836), + [sym__story] = STATE(2836), + [sym__hooks] = STATE(2831), + [sym__before] = STATE(2831), + [sym__after] = STATE(2831), + [sym__envoy_error] = STATE(2831), + [sym__success] = STATE(2831), + [sym__finished] = STATE(2831), [sym_livewire] = STATE(652), - [sym__persist] = STATE(2901), - [sym__teleport] = STATE(2901), - [sym__volt] = STATE(2901), + [sym__persist] = STATE(2837), + [sym__teleport] = STATE(2837), + [sym__volt] = STATE(2837), [aux_sym__directive_body] = STATE(652), [sym_text] = STATE(652), - [sym__text] = STATE(951), - [aux_sym_php_only_repeat1] = STATE(951), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(9320), - [aux_sym_keyword_token1] = ACTIONS(9323), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9326), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9329), - [anon_sym_ATphp] = ACTIONS(9332), - [aux_sym_attribute_token1] = ACTIONS(9335), - [aux_sym__inline_directive_token1] = ACTIONS(9338), - [anon_sym_ATfragment] = ACTIONS(9341), - [anon_sym_ATsection] = ACTIONS(9344), - [anon_sym_ATonce] = ACTIONS(9347), - [anon_sym_ATverbatim] = ACTIONS(9350), - [anon_sym_ATpush] = ACTIONS(9353), - [anon_sym_ATpushOnce] = ACTIONS(9356), - [anon_sym_ATpushIf] = ACTIONS(9359), - [anon_sym_ATprepend] = ACTIONS(9362), - [anon_sym_ATprependOnce] = ACTIONS(9365), - [anon_sym_ATif] = ACTIONS(9368), - [anon_sym_ATunless] = ACTIONS(9371), - [anon_sym_ATisset] = ACTIONS(9374), - [anon_sym_ATempty] = ACTIONS(9377), - [anon_sym_ATauth] = ACTIONS(9380), - [anon_sym_ATguest] = ACTIONS(9383), - [anon_sym_ATproduction] = ACTIONS(9386), - [anon_sym_ATenv] = ACTIONS(9389), - [anon_sym_AThasSection] = ACTIONS(9392), - [anon_sym_ATsectionMissing] = ACTIONS(9395), - [anon_sym_ATerror] = ACTIONS(9398), - [anon_sym_ATcan] = ACTIONS(9401), - [anon_sym_ATcannot] = ACTIONS(9404), - [anon_sym_ATcanany] = ACTIONS(9407), - [anon_sym_ATfeature] = ACTIONS(9410), - [aux_sym__custom_token1] = ACTIONS(9413), - [aux_sym__custom_token2] = ACTIONS(9416), - [anon_sym_ATswitch] = ACTIONS(9419), - [aux_sym_loop_operator_token1] = ACTIONS(9422), - [anon_sym_ATfor] = ACTIONS(9425), - [anon_sym_ATforeach] = ACTIONS(9428), - [anon_sym_ATforelse] = ACTIONS(9431), - [anon_sym_ATwhile] = ACTIONS(9434), - [anon_sym_ATsetup] = ACTIONS(9437), - [anon_sym_ATtask] = ACTIONS(9440), - [anon_sym_ATstory] = ACTIONS(9443), - [anon_sym_ATbefore] = ACTIONS(9446), - [anon_sym_ATafter] = ACTIONS(9449), - [anon_sym_ATsuccess] = ACTIONS(9452), - [anon_sym_ATfinished] = ACTIONS(9455), - [anon_sym_ATpersist] = ACTIONS(9458), - [anon_sym_ATteleport] = ACTIONS(9461), - [anon_sym_ATvolt] = ACTIONS(9464), - [anon_sym_ATendvolt] = ACTIONS(3925), - [aux_sym__text_token1] = ACTIONS(9467), - [aux_sym__text_token2] = ACTIONS(9467), - [aux_sym__text_token3] = ACTIONS(9470), + [sym__text] = STATE(963), + [aux_sym_php_only_repeat1] = STATE(963), + [sym_comment] = ACTIONS(10021), + [aux_sym_keyword_token1] = ACTIONS(10024), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10027), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10030), + [anon_sym_ATphp] = ACTIONS(10033), + [aux_sym_attribute_token1] = ACTIONS(10036), + [aux_sym__inline_directive_token1] = ACTIONS(10039), + [anon_sym_ATfragment] = ACTIONS(10042), + [anon_sym_ATsection] = ACTIONS(10045), + [anon_sym_ATonce] = ACTIONS(10048), + [anon_sym_ATverbatim] = ACTIONS(10051), + [anon_sym_ATpush] = ACTIONS(10054), + [anon_sym_ATpushOnce] = ACTIONS(10057), + [anon_sym_ATpushIf] = ACTIONS(10060), + [anon_sym_ATprepend] = ACTIONS(10063), + [anon_sym_ATprependOnce] = ACTIONS(10066), + [anon_sym_ATif] = ACTIONS(10069), + [anon_sym_ATunless] = ACTIONS(10072), + [anon_sym_ATisset] = ACTIONS(10075), + [anon_sym_ATempty] = ACTIONS(10078), + [anon_sym_ATauth] = ACTIONS(10081), + [anon_sym_ATguest] = ACTIONS(10084), + [anon_sym_ATproduction] = ACTIONS(10087), + [anon_sym_ATenv] = ACTIONS(10090), + [anon_sym_AThasSection] = ACTIONS(10093), + [anon_sym_ATsectionMissing] = ACTIONS(10096), + [anon_sym_ATerror] = ACTIONS(10099), + [anon_sym_ATcan] = ACTIONS(10102), + [anon_sym_ATcannot] = ACTIONS(10105), + [anon_sym_ATcanany] = ACTIONS(10108), + [anon_sym_ATfeature] = ACTIONS(10111), + [aux_sym__custom_token1] = ACTIONS(10114), + [aux_sym__custom_token2] = ACTIONS(10117), + [anon_sym_ATswitch] = ACTIONS(10120), + [aux_sym_loop_operator_token1] = ACTIONS(10123), + [anon_sym_ATfor] = ACTIONS(10126), + [anon_sym_ATforeach] = ACTIONS(10129), + [anon_sym_ATforelse] = ACTIONS(10132), + [anon_sym_ATwhile] = ACTIONS(10135), + [anon_sym_ATsetup] = ACTIONS(10138), + [anon_sym_ATtask] = ACTIONS(10141), + [anon_sym_ATstory] = ACTIONS(10144), + [anon_sym_ATbefore] = ACTIONS(10147), + [anon_sym_ATafter] = ACTIONS(10150), + [anon_sym_ATsuccess] = ACTIONS(10153), + [anon_sym_ATfinished] = ACTIONS(10156), + [anon_sym_ATpersist] = ACTIONS(10159), + [anon_sym_ATteleport] = ACTIONS(10162), + [anon_sym_ATvolt] = ACTIONS(10165), + [anon_sym_ATendvolt] = ACTIONS(5035), + [aux_sym__text_token1] = ACTIONS(10168), + [aux_sym__text_token2] = ACTIONS(10168), + [aux_sym__text_token3] = ACTIONS(10171), }, [653] = { - [sym__definition] = STATE(638), - [sym_comment] = STATE(638), - [sym_keyword] = STATE(638), - [sym_php_statement] = STATE(638), - [sym__escaped] = STATE(3535), - [sym__unescaped] = STATE(3535), - [sym__raw] = STATE(3535), - [sym__inline_raw] = STATE(3535), - [sym__multi_line_raw] = STATE(3535), - [sym_attribute] = STATE(638), - [sym__inline_directive] = STATE(638), - [sym__nested_directive] = STATE(638), - [sym_fragment] = STATE(638), - [sym_section] = STATE(638), - [sym_inlineSection] = STATE(638), - [sym_once] = STATE(638), - [sym_verbatim] = STATE(638), - [sym_stack] = STATE(638), - [sym__push] = STATE(3528), - [sym__pushOnce] = STATE(3528), - [sym__pushIf] = STATE(3528), - [sym__prepend] = STATE(3528), - [sym__prependOnce] = STATE(3528), - [sym_conditional] = STATE(638), - [sym__if] = STATE(3526), - [sym__unless] = STATE(3526), - [sym__isset] = STATE(3526), - [sym__empty] = STATE(3526), - [sym__auth] = STATE(3526), - [sym__guest] = STATE(3526), - [sym__production] = STATE(3526), - [sym__env] = STATE(3526), - [sym__hasSection] = STATE(3526), - [sym__sectionMissing] = STATE(3526), - [sym__error] = STATE(3526), - [sym_authorization] = STATE(3526), - [sym__can] = STATE(3525), - [sym__cannot] = STATE(3525), - [sym__canany] = STATE(3525), - [sym__feature] = STATE(3526), - [sym__custom] = STATE(3526), - [sym_switch] = STATE(638), - [sym_loop] = STATE(638), - [sym_loop_operator] = STATE(638), - [sym__for] = STATE(3524), - [sym__foreach] = STATE(3524), - [sym__forelse] = STATE(3524), - [sym__while] = STATE(3524), - [sym_envoy] = STATE(638), - [sym__setup] = STATE(3535), - [sym__task] = STATE(3521), - [sym__story] = STATE(3521), - [sym__hooks] = STATE(3535), - [sym__before] = STATE(3535), - [sym__after] = STATE(3535), - [sym__envoy_error] = STATE(3535), - [sym__success] = STATE(3535), - [sym__finished] = STATE(3535), - [sym_livewire] = STATE(638), - [sym__persist] = STATE(3450), - [sym__teleport] = STATE(3450), - [sym__volt] = STATE(3450), - [aux_sym__directive_body] = STATE(638), - [sym_text] = STATE(638), - [sym__text] = STATE(772), - [aux_sym_php_only_repeat1] = STATE(772), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(4056), - [aux_sym_keyword_token1] = ACTIONS(4058), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4060), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4062), - [anon_sym_ATphp] = ACTIONS(4064), - [aux_sym_attribute_token1] = ACTIONS(4066), - [aux_sym__inline_directive_token1] = ACTIONS(4068), - [anon_sym_ATfragment] = ACTIONS(4070), - [anon_sym_ATsection] = ACTIONS(4072), - [anon_sym_ATonce] = ACTIONS(4074), - [anon_sym_ATverbatim] = ACTIONS(4076), - [anon_sym_ATendverbatim] = ACTIONS(9473), - [anon_sym_ATpush] = ACTIONS(4080), - [anon_sym_ATpushOnce] = ACTIONS(4082), - [anon_sym_ATpushIf] = ACTIONS(4084), - [anon_sym_ATprepend] = ACTIONS(4086), - [anon_sym_ATprependOnce] = ACTIONS(4088), - [anon_sym_ATif] = ACTIONS(4090), - [anon_sym_ATunless] = ACTIONS(4092), - [anon_sym_ATisset] = ACTIONS(4094), - [anon_sym_ATempty] = ACTIONS(4096), - [anon_sym_ATauth] = ACTIONS(4098), - [anon_sym_ATguest] = ACTIONS(4100), - [anon_sym_ATproduction] = ACTIONS(4102), - [anon_sym_ATenv] = ACTIONS(4104), - [anon_sym_AThasSection] = ACTIONS(4106), - [anon_sym_ATsectionMissing] = ACTIONS(4108), - [anon_sym_ATerror] = ACTIONS(4110), - [anon_sym_ATcan] = ACTIONS(4112), - [anon_sym_ATcannot] = ACTIONS(4114), - [anon_sym_ATcanany] = ACTIONS(4116), - [anon_sym_ATfeature] = ACTIONS(4118), - [aux_sym__custom_token1] = ACTIONS(4120), - [aux_sym__custom_token2] = ACTIONS(4122), - [anon_sym_ATswitch] = ACTIONS(4124), - [aux_sym_loop_operator_token1] = ACTIONS(4126), - [anon_sym_ATfor] = ACTIONS(4128), - [anon_sym_ATforeach] = ACTIONS(4130), - [anon_sym_ATforelse] = ACTIONS(4132), - [anon_sym_ATwhile] = ACTIONS(4134), - [anon_sym_ATsetup] = ACTIONS(4136), - [anon_sym_ATtask] = ACTIONS(4138), - [anon_sym_ATstory] = ACTIONS(4140), - [anon_sym_ATbefore] = ACTIONS(4142), - [anon_sym_ATafter] = ACTIONS(4144), - [anon_sym_ATsuccess] = ACTIONS(4146), - [anon_sym_ATfinished] = ACTIONS(4148), - [anon_sym_ATpersist] = ACTIONS(4150), - [anon_sym_ATteleport] = ACTIONS(4152), - [anon_sym_ATvolt] = ACTIONS(4154), - [aux_sym__text_token1] = ACTIONS(4156), - [aux_sym__text_token2] = ACTIONS(4156), - [aux_sym__text_token3] = ACTIONS(4158), + [sym__definition] = STATE(268), + [sym_keyword] = STATE(268), + [sym_php_statement] = STATE(268), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(268), + [sym__inline_directive] = STATE(268), + [sym__nested_directive] = STATE(268), + [sym_fragment] = STATE(268), + [sym_section] = STATE(268), + [sym_inlineSection] = STATE(268), + [sym_once] = STATE(268), + [sym_verbatim] = STATE(268), + [sym_stack] = STATE(268), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(268), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(268), + [sym_loop] = STATE(268), + [sym_loop_operator] = STATE(268), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(268), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(268), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(268), + [sym_text] = STATE(268), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(4441), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(10174), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), }, [654] = { [sym__definition] = STATE(654), - [sym_comment] = STATE(654), [sym_keyword] = STATE(654), [sym_php_statement] = STATE(654), - [sym__escaped] = STATE(2979), - [sym__unescaped] = STATE(2979), - [sym__raw] = STATE(2979), - [sym__inline_raw] = STATE(2979), - [sym__multi_line_raw] = STATE(2979), + [sym__escaped] = STATE(2913), + [sym__unescaped] = STATE(2913), + [sym__raw] = STATE(2913), + [sym__inline_raw] = STATE(2913), + [sym__multi_line_raw] = STATE(2913), [sym_attribute] = STATE(654), [sym__inline_directive] = STATE(654), [sym__nested_directive] = STATE(654), @@ -105617,3750 +104462,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_once] = STATE(654), [sym_verbatim] = STATE(654), [sym_stack] = STATE(654), - [sym__push] = STATE(2980), - [sym__pushOnce] = STATE(2980), - [sym__pushIf] = STATE(2980), - [sym__prepend] = STATE(2980), - [sym__prependOnce] = STATE(2980), + [sym__push] = STATE(2914), + [sym__pushOnce] = STATE(2914), + [sym__pushIf] = STATE(2914), + [sym__prepend] = STATE(2914), + [sym__prependOnce] = STATE(2914), [sym_conditional] = STATE(654), - [sym__if] = STATE(2981), - [sym__unless] = STATE(2981), - [sym__isset] = STATE(2981), - [sym__empty] = STATE(2981), - [sym__auth] = STATE(2981), - [sym__guest] = STATE(2981), - [sym__production] = STATE(2981), - [sym__env] = STATE(2981), - [sym__hasSection] = STATE(2981), - [sym__sectionMissing] = STATE(2981), - [sym__error] = STATE(2981), - [sym_authorization] = STATE(2981), - [sym__can] = STATE(2982), - [sym__cannot] = STATE(2982), - [sym__canany] = STATE(2982), - [sym__feature] = STATE(2981), - [sym__custom] = STATE(2981), + [sym__if] = STATE(2915), + [sym__unless] = STATE(2915), + [sym__isset] = STATE(2915), + [sym__empty] = STATE(2915), + [sym__auth] = STATE(2915), + [sym__guest] = STATE(2915), + [sym__production] = STATE(2915), + [sym__env] = STATE(2915), + [sym__hasSection] = STATE(2915), + [sym__sectionMissing] = STATE(2915), + [sym__error] = STATE(2915), + [sym_authorization] = STATE(2915), + [sym__can] = STATE(2916), + [sym__cannot] = STATE(2916), + [sym__canany] = STATE(2916), + [sym__feature] = STATE(2915), + [sym__custom] = STATE(2915), [sym_switch] = STATE(654), [sym_loop] = STATE(654), [sym_loop_operator] = STATE(654), - [sym__for] = STATE(2983), - [sym__foreach] = STATE(2983), - [sym__forelse] = STATE(2983), - [sym__while] = STATE(2983), + [sym__for] = STATE(2917), + [sym__foreach] = STATE(2917), + [sym__forelse] = STATE(2917), + [sym__while] = STATE(2917), [sym_envoy] = STATE(654), - [sym__setup] = STATE(2979), - [sym__task] = STATE(2984), - [sym__story] = STATE(2984), - [sym__hooks] = STATE(2979), - [sym__before] = STATE(2979), - [sym__after] = STATE(2979), - [sym__envoy_error] = STATE(2979), - [sym__success] = STATE(2979), - [sym__finished] = STATE(2979), + [sym__setup] = STATE(2913), + [sym__task] = STATE(2918), + [sym__story] = STATE(2918), + [sym__hooks] = STATE(2913), + [sym__before] = STATE(2913), + [sym__after] = STATE(2913), + [sym__envoy_error] = STATE(2913), + [sym__success] = STATE(2913), + [sym__finished] = STATE(2913), [sym_livewire] = STATE(654), - [sym__persist] = STATE(2985), - [sym__teleport] = STATE(2985), - [sym__volt] = STATE(2985), + [sym__persist] = STATE(2919), + [sym__teleport] = STATE(2919), + [sym__volt] = STATE(2919), [aux_sym__directive_body] = STATE(654), [sym_text] = STATE(654), - [sym__text] = STATE(945), - [aux_sym_php_only_repeat1] = STATE(945), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(9475), - [aux_sym_keyword_token1] = ACTIONS(9478), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9481), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9484), - [anon_sym_ATphp] = ACTIONS(9487), - [aux_sym_attribute_token1] = ACTIONS(9490), - [aux_sym__inline_directive_token1] = ACTIONS(9493), - [anon_sym_ATfragment] = ACTIONS(9496), - [anon_sym_ATsection] = ACTIONS(9499), - [aux_sym_section_token1] = ACTIONS(3925), - [anon_sym_ATonce] = ACTIONS(9502), - [anon_sym_ATverbatim] = ACTIONS(9505), - [anon_sym_ATpush] = ACTIONS(9508), - [anon_sym_ATpushOnce] = ACTIONS(9511), - [anon_sym_ATpushIf] = ACTIONS(9514), - [anon_sym_ATprepend] = ACTIONS(9517), - [anon_sym_ATprependOnce] = ACTIONS(9520), - [anon_sym_ATif] = ACTIONS(9523), - [anon_sym_ATunless] = ACTIONS(9526), - [anon_sym_ATisset] = ACTIONS(9529), - [anon_sym_ATempty] = ACTIONS(9532), - [anon_sym_ATauth] = ACTIONS(9535), - [anon_sym_ATguest] = ACTIONS(9538), - [anon_sym_ATproduction] = ACTIONS(9541), - [anon_sym_ATenv] = ACTIONS(9544), - [anon_sym_AThasSection] = ACTIONS(9547), - [anon_sym_ATsectionMissing] = ACTIONS(9550), - [anon_sym_ATerror] = ACTIONS(9553), - [anon_sym_ATcan] = ACTIONS(9556), - [anon_sym_ATcannot] = ACTIONS(9559), - [anon_sym_ATcanany] = ACTIONS(9562), - [anon_sym_ATfeature] = ACTIONS(9565), - [aux_sym__custom_token1] = ACTIONS(9568), - [aux_sym__custom_token2] = ACTIONS(9571), - [anon_sym_ATswitch] = ACTIONS(9574), - [aux_sym_loop_operator_token1] = ACTIONS(9577), - [anon_sym_ATfor] = ACTIONS(9580), - [anon_sym_ATforeach] = ACTIONS(9583), - [anon_sym_ATforelse] = ACTIONS(9586), - [anon_sym_ATwhile] = ACTIONS(9589), - [anon_sym_ATsetup] = ACTIONS(9592), - [anon_sym_ATtask] = ACTIONS(9595), - [anon_sym_ATstory] = ACTIONS(9598), - [anon_sym_ATbefore] = ACTIONS(9601), - [anon_sym_ATafter] = ACTIONS(9604), - [anon_sym_ATsuccess] = ACTIONS(9607), - [anon_sym_ATfinished] = ACTIONS(9610), - [anon_sym_ATpersist] = ACTIONS(9613), - [anon_sym_ATteleport] = ACTIONS(9616), - [anon_sym_ATvolt] = ACTIONS(9619), - [aux_sym__text_token1] = ACTIONS(9622), - [aux_sym__text_token2] = ACTIONS(9622), - [aux_sym__text_token3] = ACTIONS(9625), + [sym__text] = STATE(957), + [aux_sym_php_only_repeat1] = STATE(957), + [sym_comment] = ACTIONS(10176), + [aux_sym_keyword_token1] = ACTIONS(10179), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10182), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10185), + [anon_sym_ATphp] = ACTIONS(10188), + [aux_sym_attribute_token1] = ACTIONS(10191), + [aux_sym__inline_directive_token1] = ACTIONS(10194), + [anon_sym_ATfragment] = ACTIONS(10197), + [anon_sym_ATsection] = ACTIONS(10200), + [aux_sym_section_token1] = ACTIONS(5035), + [anon_sym_ATonce] = ACTIONS(10203), + [anon_sym_ATverbatim] = ACTIONS(10206), + [anon_sym_ATpush] = ACTIONS(10209), + [anon_sym_ATpushOnce] = ACTIONS(10212), + [anon_sym_ATpushIf] = ACTIONS(10215), + [anon_sym_ATprepend] = ACTIONS(10218), + [anon_sym_ATprependOnce] = ACTIONS(10221), + [anon_sym_ATif] = ACTIONS(10224), + [anon_sym_ATunless] = ACTIONS(10227), + [anon_sym_ATisset] = ACTIONS(10230), + [anon_sym_ATempty] = ACTIONS(10233), + [anon_sym_ATauth] = ACTIONS(10236), + [anon_sym_ATguest] = ACTIONS(10239), + [anon_sym_ATproduction] = ACTIONS(10242), + [anon_sym_ATenv] = ACTIONS(10245), + [anon_sym_AThasSection] = ACTIONS(10248), + [anon_sym_ATsectionMissing] = ACTIONS(10251), + [anon_sym_ATerror] = ACTIONS(10254), + [anon_sym_ATcan] = ACTIONS(10257), + [anon_sym_ATcannot] = ACTIONS(10260), + [anon_sym_ATcanany] = ACTIONS(10263), + [anon_sym_ATfeature] = ACTIONS(10266), + [aux_sym__custom_token1] = ACTIONS(10269), + [aux_sym__custom_token2] = ACTIONS(10272), + [anon_sym_ATswitch] = ACTIONS(10275), + [aux_sym_loop_operator_token1] = ACTIONS(10278), + [anon_sym_ATfor] = ACTIONS(10281), + [anon_sym_ATforeach] = ACTIONS(10284), + [anon_sym_ATforelse] = ACTIONS(10287), + [anon_sym_ATwhile] = ACTIONS(10290), + [anon_sym_ATsetup] = ACTIONS(10293), + [anon_sym_ATtask] = ACTIONS(10296), + [anon_sym_ATstory] = ACTIONS(10299), + [anon_sym_ATbefore] = ACTIONS(10302), + [anon_sym_ATafter] = ACTIONS(10305), + [anon_sym_ATsuccess] = ACTIONS(10308), + [anon_sym_ATfinished] = ACTIONS(10311), + [anon_sym_ATpersist] = ACTIONS(10314), + [anon_sym_ATteleport] = ACTIONS(10317), + [anon_sym_ATvolt] = ACTIONS(10320), + [aux_sym__text_token1] = ACTIONS(10323), + [aux_sym__text_token2] = ACTIONS(10323), + [aux_sym__text_token3] = ACTIONS(10326), }, [655] = { - [sym__definition] = STATE(655), - [sym_comment] = STATE(655), - [sym_keyword] = STATE(655), - [sym_php_statement] = STATE(655), - [sym__escaped] = STATE(2221), - [sym__unescaped] = STATE(2221), - [sym__raw] = STATE(2221), - [sym__inline_raw] = STATE(2221), - [sym__multi_line_raw] = STATE(2221), - [sym_attribute] = STATE(655), - [sym__inline_directive] = STATE(655), - [sym__nested_directive] = STATE(655), - [sym_fragment] = STATE(655), - [sym_section] = STATE(655), - [sym_inlineSection] = STATE(655), - [sym_once] = STATE(655), - [sym_verbatim] = STATE(655), - [sym_stack] = STATE(655), - [sym__push] = STATE(2219), - [sym__pushOnce] = STATE(2219), - [sym__pushIf] = STATE(2219), - [sym__prepend] = STATE(2219), - [sym__prependOnce] = STATE(2219), - [sym_conditional] = STATE(655), - [sym__if] = STATE(2213), - [sym__unless] = STATE(2213), - [sym__isset] = STATE(2213), - [sym__empty] = STATE(2213), - [sym__auth] = STATE(2213), - [sym__guest] = STATE(2213), - [sym__production] = STATE(2213), - [sym__env] = STATE(2213), - [sym__hasSection] = STATE(2213), - [sym__sectionMissing] = STATE(2213), - [sym__error] = STATE(2213), - [sym_authorization] = STATE(2213), - [sym__can] = STATE(2217), - [sym__cannot] = STATE(2217), - [sym__canany] = STATE(2217), - [sym__feature] = STATE(2213), - [sym__custom] = STATE(2213), - [sym_switch] = STATE(655), - [sym_loop] = STATE(655), - [sym_loop_operator] = STATE(655), - [sym__for] = STATE(2216), - [sym__foreach] = STATE(2216), - [sym__forelse] = STATE(2216), - [sym__while] = STATE(2216), - [sym_envoy] = STATE(655), - [sym__setup] = STATE(2221), - [sym__task] = STATE(2215), - [sym__story] = STATE(2215), - [sym__hooks] = STATE(2221), - [sym__before] = STATE(2221), - [sym__after] = STATE(2221), - [sym__envoy_error] = STATE(2221), - [sym__success] = STATE(2221), - [sym__finished] = STATE(2221), - [sym_livewire] = STATE(655), - [sym__persist] = STATE(2214), - [sym__teleport] = STATE(2214), - [sym__volt] = STATE(2214), - [aux_sym__directive_body] = STATE(655), - [sym_text] = STATE(655), - [sym__text] = STATE(1193), - [aux_sym_php_only_repeat1] = STATE(1193), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(9628), - [aux_sym_keyword_token1] = ACTIONS(9631), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9634), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9637), - [anon_sym_ATphp] = ACTIONS(9640), - [aux_sym_attribute_token1] = ACTIONS(9643), - [aux_sym__inline_directive_token1] = ACTIONS(9646), - [anon_sym_ATfragment] = ACTIONS(9649), - [anon_sym_ATsection] = ACTIONS(9652), - [anon_sym_ATonce] = ACTIONS(9655), - [anon_sym_ATverbatim] = ACTIONS(9658), - [anon_sym_ATpush] = ACTIONS(9661), - [anon_sym_ATpushOnce] = ACTIONS(9664), - [anon_sym_ATpushIf] = ACTIONS(9667), - [anon_sym_ATendPushIf] = ACTIONS(3925), - [anon_sym_ATprepend] = ACTIONS(9670), - [anon_sym_ATprependOnce] = ACTIONS(9673), - [anon_sym_ATif] = ACTIONS(9676), - [anon_sym_ATunless] = ACTIONS(9679), - [anon_sym_ATisset] = ACTIONS(9682), - [anon_sym_ATempty] = ACTIONS(9685), - [anon_sym_ATauth] = ACTIONS(9688), - [anon_sym_ATguest] = ACTIONS(9691), - [anon_sym_ATproduction] = ACTIONS(9694), - [anon_sym_ATenv] = ACTIONS(9697), - [anon_sym_AThasSection] = ACTIONS(9700), - [anon_sym_ATsectionMissing] = ACTIONS(9703), - [anon_sym_ATerror] = ACTIONS(9706), - [anon_sym_ATcan] = ACTIONS(9709), - [anon_sym_ATcannot] = ACTIONS(9712), - [anon_sym_ATcanany] = ACTIONS(9715), - [anon_sym_ATfeature] = ACTIONS(9718), - [aux_sym__custom_token1] = ACTIONS(9721), - [aux_sym__custom_token2] = ACTIONS(9724), - [anon_sym_ATswitch] = ACTIONS(9727), - [aux_sym_loop_operator_token1] = ACTIONS(9730), - [anon_sym_ATfor] = ACTIONS(9733), - [anon_sym_ATforeach] = ACTIONS(9736), - [anon_sym_ATforelse] = ACTIONS(9739), - [anon_sym_ATwhile] = ACTIONS(9742), - [anon_sym_ATsetup] = ACTIONS(9745), - [anon_sym_ATtask] = ACTIONS(9748), - [anon_sym_ATstory] = ACTIONS(9751), - [anon_sym_ATbefore] = ACTIONS(9754), - [anon_sym_ATafter] = ACTIONS(9757), - [anon_sym_ATsuccess] = ACTIONS(9760), - [anon_sym_ATfinished] = ACTIONS(9763), - [anon_sym_ATpersist] = ACTIONS(9766), - [anon_sym_ATteleport] = ACTIONS(9769), - [anon_sym_ATvolt] = ACTIONS(9772), - [aux_sym__text_token1] = ACTIONS(9775), - [aux_sym__text_token2] = ACTIONS(9775), - [aux_sym__text_token3] = ACTIONS(9778), - }, - [656] = { - [sym__definition] = STATE(431), - [sym_comment] = STATE(431), - [sym_keyword] = STATE(431), - [sym_php_statement] = STATE(431), - [sym__escaped] = STATE(2052), - [sym__unescaped] = STATE(2052), - [sym__raw] = STATE(2052), - [sym__inline_raw] = STATE(2052), - [sym__multi_line_raw] = STATE(2052), - [sym_attribute] = STATE(431), - [sym__inline_directive] = STATE(431), - [sym__nested_directive] = STATE(431), - [sym_fragment] = STATE(431), - [sym_section] = STATE(431), - [sym_inlineSection] = STATE(431), - [sym_once] = STATE(431), - [sym_verbatim] = STATE(431), - [sym_stack] = STATE(431), - [sym__push] = STATE(2051), - [sym__pushOnce] = STATE(2051), - [sym__pushIf] = STATE(2051), - [sym__prepend] = STATE(2051), - [sym__prependOnce] = STATE(2051), - [sym_conditional] = STATE(431), - [sym__if] = STATE(2050), - [sym__unless] = STATE(2050), - [sym__isset] = STATE(2050), - [sym__empty] = STATE(2050), - [sym__auth] = STATE(2050), - [sym__guest] = STATE(2050), - [sym__production] = STATE(2050), - [sym__env] = STATE(2050), - [sym__hasSection] = STATE(2050), - [sym__sectionMissing] = STATE(2050), - [sym__error] = STATE(2050), - [sym_authorization] = STATE(2050), - [sym__can] = STATE(2049), - [sym__cannot] = STATE(2049), - [sym__canany] = STATE(2049), - [sym__feature] = STATE(2050), - [sym__custom] = STATE(2050), - [sym_switch] = STATE(431), - [sym_loop] = STATE(431), - [sym_loop_operator] = STATE(431), - [sym__for] = STATE(2048), - [sym__foreach] = STATE(2048), - [sym__forelse] = STATE(2048), - [sym__while] = STATE(2048), - [sym_envoy] = STATE(431), - [sym__setup] = STATE(2052), - [sym__task] = STATE(2047), - [sym__story] = STATE(2047), - [sym__hooks] = STATE(2052), - [sym__before] = STATE(2052), - [sym__after] = STATE(2052), - [sym__envoy_error] = STATE(2052), - [sym__success] = STATE(2052), - [sym__finished] = STATE(2052), - [sym_livewire] = STATE(431), - [sym__persist] = STATE(2046), - [sym__teleport] = STATE(2046), - [sym__volt] = STATE(2046), - [aux_sym__directive_body] = STATE(431), - [sym_text] = STATE(431), - [sym__text] = STATE(1373), - [aux_sym_php_only_repeat1] = STATE(1373), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(8398), - [aux_sym_keyword_token1] = ACTIONS(8400), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8402), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(8404), - [anon_sym_ATphp] = ACTIONS(8406), - [aux_sym_attribute_token1] = ACTIONS(8408), - [aux_sym__inline_directive_token1] = ACTIONS(8410), - [anon_sym_ATfragment] = ACTIONS(8412), - [anon_sym_ATsection] = ACTIONS(8414), - [anon_sym_ATonce] = ACTIONS(8416), - [anon_sym_ATverbatim] = ACTIONS(8418), - [anon_sym_ATpush] = ACTIONS(8420), - [anon_sym_ATpushOnce] = ACTIONS(8422), - [anon_sym_ATpushIf] = ACTIONS(8424), - [anon_sym_ATprepend] = ACTIONS(8426), - [anon_sym_ATprependOnce] = ACTIONS(8428), - [anon_sym_ATendPrependOnce] = ACTIONS(4626), - [anon_sym_ATif] = ACTIONS(8430), - [anon_sym_ATunless] = ACTIONS(8432), - [anon_sym_ATisset] = ACTIONS(8434), - [anon_sym_ATempty] = ACTIONS(8436), - [anon_sym_ATauth] = ACTIONS(8438), - [anon_sym_ATguest] = ACTIONS(8440), - [anon_sym_ATproduction] = ACTIONS(8442), - [anon_sym_ATenv] = ACTIONS(8444), - [anon_sym_AThasSection] = ACTIONS(8446), - [anon_sym_ATsectionMissing] = ACTIONS(8448), - [anon_sym_ATerror] = ACTIONS(8450), - [anon_sym_ATcan] = ACTIONS(8452), - [anon_sym_ATcannot] = ACTIONS(8454), - [anon_sym_ATcanany] = ACTIONS(8456), - [anon_sym_ATfeature] = ACTIONS(8458), - [aux_sym__custom_token1] = ACTIONS(8460), - [aux_sym__custom_token2] = ACTIONS(8462), - [anon_sym_ATswitch] = ACTIONS(8464), - [aux_sym_loop_operator_token1] = ACTIONS(8466), - [anon_sym_ATfor] = ACTIONS(8468), - [anon_sym_ATforeach] = ACTIONS(8470), - [anon_sym_ATforelse] = ACTIONS(8472), - [anon_sym_ATwhile] = ACTIONS(8474), - [anon_sym_ATsetup] = ACTIONS(8476), - [anon_sym_ATtask] = ACTIONS(8478), - [anon_sym_ATstory] = ACTIONS(8480), - [anon_sym_ATbefore] = ACTIONS(8482), - [anon_sym_ATafter] = ACTIONS(8484), - [anon_sym_ATsuccess] = ACTIONS(8486), - [anon_sym_ATfinished] = ACTIONS(8488), - [anon_sym_ATpersist] = ACTIONS(8490), - [anon_sym_ATteleport] = ACTIONS(8492), - [anon_sym_ATvolt] = ACTIONS(8494), - [aux_sym__text_token1] = ACTIONS(8496), - [aux_sym__text_token2] = ACTIONS(8496), - [aux_sym__text_token3] = ACTIONS(8498), - }, - [657] = { - [sym__definition] = STATE(657), - [sym_comment] = STATE(657), - [sym_keyword] = STATE(657), - [sym_php_statement] = STATE(657), - [sym__escaped] = STATE(3147), - [sym__unescaped] = STATE(3147), - [sym__raw] = STATE(3147), - [sym__inline_raw] = STATE(3147), - [sym__multi_line_raw] = STATE(3147), - [sym_attribute] = STATE(657), - [sym__inline_directive] = STATE(657), - [sym__nested_directive] = STATE(657), - [sym_fragment] = STATE(657), - [sym_section] = STATE(657), - [sym_inlineSection] = STATE(657), - [sym_once] = STATE(657), - [sym_verbatim] = STATE(657), - [sym_stack] = STATE(657), - [sym__push] = STATE(3148), - [sym__pushOnce] = STATE(3148), - [sym__pushIf] = STATE(3148), - [sym__prepend] = STATE(3148), - [sym__prependOnce] = STATE(3148), - [sym_conditional] = STATE(657), - [sym__if] = STATE(3149), - [sym__unless] = STATE(3149), - [sym__isset] = STATE(3149), - [sym__empty] = STATE(3149), - [sym__auth] = STATE(3149), - [sym__guest] = STATE(3149), - [sym__production] = STATE(3149), - [sym__env] = STATE(3149), - [sym__hasSection] = STATE(3149), - [sym__sectionMissing] = STATE(3149), - [sym__error] = STATE(3149), - [sym_authorization] = STATE(3149), - [sym__can] = STATE(3150), - [sym__cannot] = STATE(3150), - [sym__canany] = STATE(3150), - [sym__feature] = STATE(3149), - [sym__custom] = STATE(3149), - [sym_switch] = STATE(657), - [sym_loop] = STATE(657), - [sym_loop_operator] = STATE(657), - [sym__for] = STATE(3151), - [sym__foreach] = STATE(3151), - [sym__forelse] = STATE(3151), - [sym__while] = STATE(3151), - [sym_envoy] = STATE(657), - [sym__setup] = STATE(3147), - [sym__task] = STATE(3152), - [sym__story] = STATE(3152), - [sym__hooks] = STATE(3147), - [sym__before] = STATE(3147), - [sym__after] = STATE(3147), - [sym__envoy_error] = STATE(3147), - [sym__success] = STATE(3147), - [sym__finished] = STATE(3147), - [sym_livewire] = STATE(657), - [sym__persist] = STATE(3153), - [sym__teleport] = STATE(3153), - [sym__volt] = STATE(3153), - [aux_sym__directive_body] = STATE(657), - [sym_text] = STATE(657), - [sym__text] = STATE(938), - [aux_sym_php_only_repeat1] = STATE(938), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(9781), - [aux_sym_keyword_token1] = ACTIONS(9784), - [anon_sym_LBRACE_LBRACE] = ACTIONS(9787), - [anon_sym_LBRACE_BANG_BANG] = ACTIONS(9790), - [anon_sym_ATphp] = ACTIONS(9793), - [aux_sym_attribute_token1] = ACTIONS(9796), - [aux_sym__inline_directive_token1] = ACTIONS(9799), - [anon_sym_ATfragment] = ACTIONS(9802), - [anon_sym_ATsection] = ACTIONS(9805), - [anon_sym_ATonce] = ACTIONS(9808), - [anon_sym_ATverbatim] = ACTIONS(9811), - [anon_sym_ATpush] = ACTIONS(9814), - [anon_sym_ATpushOnce] = ACTIONS(9817), - [anon_sym_ATpushIf] = ACTIONS(9820), - [anon_sym_ATprepend] = ACTIONS(9823), - [anon_sym_ATprependOnce] = ACTIONS(9826), - [anon_sym_ATif] = ACTIONS(9829), - [anon_sym_ATunless] = ACTIONS(9832), - [anon_sym_ATisset] = ACTIONS(9835), - [anon_sym_ATempty] = ACTIONS(9838), - [anon_sym_ATauth] = ACTIONS(9841), - [anon_sym_ATguest] = ACTIONS(9844), - [anon_sym_ATproduction] = ACTIONS(9847), - [anon_sym_ATenv] = ACTIONS(9850), - [anon_sym_AThasSection] = ACTIONS(9853), - [anon_sym_ATsectionMissing] = ACTIONS(9856), - [anon_sym_ATerror] = ACTIONS(9859), - [anon_sym_ATcan] = ACTIONS(9862), - [anon_sym_ATcannot] = ACTIONS(9865), - [anon_sym_ATcanany] = ACTIONS(9868), - [anon_sym_ATfeature] = ACTIONS(9871), - [aux_sym__custom_token1] = ACTIONS(9874), - [aux_sym__custom_token2] = ACTIONS(9877), - [anon_sym_ATswitch] = ACTIONS(9880), - [anon_sym_ATbreak] = ACTIONS(3925), - [aux_sym_loop_operator_token1] = ACTIONS(9883), - [anon_sym_ATfor] = ACTIONS(9886), - [anon_sym_ATforeach] = ACTIONS(9889), - [anon_sym_ATforelse] = ACTIONS(9892), - [anon_sym_ATwhile] = ACTIONS(9895), - [anon_sym_ATsetup] = ACTIONS(9898), - [anon_sym_ATtask] = ACTIONS(9901), - [anon_sym_ATstory] = ACTIONS(9904), - [anon_sym_ATbefore] = ACTIONS(9907), - [anon_sym_ATafter] = ACTIONS(9910), - [anon_sym_ATsuccess] = ACTIONS(9913), - [anon_sym_ATfinished] = ACTIONS(9916), - [anon_sym_ATpersist] = ACTIONS(9919), - [anon_sym_ATteleport] = ACTIONS(9922), - [anon_sym_ATvolt] = ACTIONS(9925), - [aux_sym__text_token1] = ACTIONS(9928), - [aux_sym__text_token2] = ACTIONS(9928), - [aux_sym__text_token3] = ACTIONS(9931), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5833), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendunless, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [69] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6564), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [138] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5966), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATendguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [207] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6199), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [276] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6699), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATendcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [345] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6780), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATendcan, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [414] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6618), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATendcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [483] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6493), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_ATendenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [552] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5880), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATendisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [621] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6146), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATendempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [690] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6745), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATenderror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [759] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6453), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - aux_sym__custom_token3, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [828] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6536), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - anon_sym_ATendfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [897] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5747), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [966] = 4, - ACTIONS(9944), 1, - anon_sym_LPAREN2, - STATE(1232), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATendcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1032] = 5, - ACTIONS(9953), 1, - aux_sym__text_token3, - ACTIONS(9950), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(673), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATendcan, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [1100] = 4, - ACTIONS(9944), 1, - anon_sym_LPAREN2, - STATE(1253), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATendcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1166] = 4, - ACTIONS(9956), 1, - anon_sym_LPAREN2, - STATE(1733), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATenderror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1232] = 5, - ACTIONS(9964), 1, - aux_sym__text_token3, - ACTIONS(9962), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(673), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATendcan, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [1300] = 5, - ACTIONS(9968), 1, - aux_sym__text_token3, - ACTIONS(9966), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(698), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATendisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [1368] = 4, - ACTIONS(9970), 1, - anon_sym_LPAREN2, - STATE(1648), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_ATendenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1434] = 4, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(1161), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - anon_sym_ATendfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1500] = 5, - ACTIONS(9976), 1, - aux_sym__text_token3, - ACTIONS(9974), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(714), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATendcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [1568] = 4, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(1065), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - aux_sym__custom_token3, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1634] = 5, - ACTIONS(9982), 1, - aux_sym__text_token3, - ACTIONS(9980), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(695), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendunless, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [1702] = 4, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(1562), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATendempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1768] = 5, - ACTIONS(9986), 1, - aux_sym__text_token3, - ACTIONS(9984), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(721), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATendcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [1836] = 4, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - STATE(1454), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATendisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1902] = 4, - ACTIONS(9990), 1, - anon_sym_LPAREN2, - STATE(758), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATendguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [1968] = 5, - ACTIONS(9994), 1, - aux_sym__text_token3, - ACTIONS(9992), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(690), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2036] = 4, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - STATE(1475), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATendisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2102] = 5, - ACTIONS(9998), 1, - aux_sym__text_token3, - ACTIONS(9996), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(724), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - anon_sym_ATendfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2170] = 5, - ACTIONS(10003), 1, - aux_sym__text_token3, - ACTIONS(10000), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(690), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2238] = 4, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(1413), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - aux_sym__custom_token3, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2304] = 4, - ACTIONS(10006), 1, - anon_sym_LPAREN2, - STATE(762), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2370] = 4, - ACTIONS(10008), 1, - anon_sym_LPAREN2, - STATE(1387), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendunless, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2436] = 5, - ACTIONS(10012), 1, - aux_sym__text_token3, - ACTIONS(10010), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(727), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - aux_sym__custom_token3, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2504] = 5, - ACTIONS(10017), 1, - aux_sym__text_token3, - ACTIONS(10014), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(695), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendunless, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2572] = 4, - ACTIONS(9970), 1, - anon_sym_LPAREN2, - STATE(862), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_ATendenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2638] = 4, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(1322), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - anon_sym_ATendfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2704] = 5, - ACTIONS(10023), 1, - aux_sym__text_token3, - ACTIONS(10020), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(698), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATendisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2772] = 4, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(1296), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [2838] = 5, - ACTIONS(10031), 1, - aux_sym__text_token3, - ACTIONS(10028), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(700), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2906] = 5, - ACTIONS(10037), 1, - aux_sym__text_token3, - ACTIONS(10034), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(701), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATendempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [2974] = 4, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - STATE(1903), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATendcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3040] = 5, - ACTIONS(10044), 1, - aux_sym__text_token3, - ACTIONS(10042), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(706), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_ATendenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [3108] = 5, - ACTIONS(10048), 1, - aux_sym__text_token3, - ACTIONS(10046), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(723), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATendguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [3176] = 4, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(768), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATendempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3242] = 5, - ACTIONS(10053), 1, - aux_sym__text_token3, - ACTIONS(10050), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(706), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_ATendenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [3310] = 4, - ACTIONS(10056), 1, - anon_sym_LPAREN2, - STATE(784), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3376] = 5, - ACTIONS(10061), 1, - aux_sym__text_token3, - ACTIONS(10058), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(708), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATenderror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [3444] = 4, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(805), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATendif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3510] = 4, - ACTIONS(10040), 1, + [sym__definition] = STATE(510), + [sym_keyword] = STATE(510), + [sym_php_statement] = STATE(510), + [sym__escaped] = STATE(3498), + [sym__unescaped] = STATE(3498), + [sym__raw] = STATE(3498), + [sym__inline_raw] = STATE(3498), + [sym__multi_line_raw] = STATE(3498), + [sym_attribute] = STATE(510), + [sym__inline_directive] = STATE(510), + [sym__nested_directive] = STATE(510), + [sym_fragment] = STATE(510), + [sym_section] = STATE(510), + [sym_inlineSection] = STATE(510), + [sym_once] = STATE(510), + [sym_verbatim] = STATE(510), + [sym_stack] = STATE(510), + [sym__push] = STATE(3499), + [sym__pushOnce] = STATE(3499), + [sym__pushIf] = STATE(3499), + [sym__prepend] = STATE(3499), + [sym__prependOnce] = STATE(3499), + [sym_conditional] = STATE(510), + [sym__if] = STATE(3500), + [sym__unless] = STATE(3500), + [sym__isset] = STATE(3500), + [sym__empty] = STATE(3500), + [sym__auth] = STATE(3500), + [sym__guest] = STATE(3500), + [sym__production] = STATE(3500), + [sym__env] = STATE(3500), + [sym__hasSection] = STATE(3500), + [sym__sectionMissing] = STATE(3500), + [sym__error] = STATE(3500), + [sym_authorization] = STATE(3500), + [sym__can] = STATE(3501), + [sym__cannot] = STATE(3501), + [sym__canany] = STATE(3501), + [sym__feature] = STATE(3500), + [sym__custom] = STATE(3500), + [sym_switch] = STATE(510), + [sym_loop] = STATE(510), + [sym_loop_operator] = STATE(510), + [sym__for] = STATE(3503), + [sym__foreach] = STATE(3503), + [sym__forelse] = STATE(3503), + [sym__while] = STATE(3503), + [sym_envoy] = STATE(510), + [sym__setup] = STATE(3498), + [sym__task] = STATE(3504), + [sym__story] = STATE(3504), + [sym__hooks] = STATE(3498), + [sym__before] = STATE(3498), + [sym__after] = STATE(3498), + [sym__envoy_error] = STATE(3498), + [sym__success] = STATE(3498), + [sym__finished] = STATE(3498), + [sym_livewire] = STATE(510), + [sym__persist] = STATE(3506), + [sym__teleport] = STATE(3506), + [sym__volt] = STATE(3506), + [aux_sym__directive_body] = STATE(510), + [sym_text] = STATE(510), + [sym__text] = STATE(871), + [aux_sym_php_only_repeat1] = STATE(871), + [sym_comment] = ACTIONS(4445), + [aux_sym_keyword_token1] = ACTIONS(4215), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4217), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4219), + [anon_sym_ATphp] = ACTIONS(4221), + [aux_sym_attribute_token1] = ACTIONS(4223), + [aux_sym__inline_directive_token1] = ACTIONS(4225), + [anon_sym_ATfragment] = ACTIONS(4227), + [anon_sym_ATsection] = ACTIONS(4229), + [anon_sym_ATonce] = ACTIONS(4231), + [anon_sym_ATendonce] = ACTIONS(10329), + [anon_sym_ATverbatim] = ACTIONS(4235), + [anon_sym_ATpush] = ACTIONS(4237), + [anon_sym_ATpushOnce] = ACTIONS(4239), + [anon_sym_ATpushIf] = ACTIONS(4241), + [anon_sym_ATprepend] = ACTIONS(4243), + [anon_sym_ATprependOnce] = ACTIONS(4245), + [anon_sym_ATif] = ACTIONS(4247), + [anon_sym_ATunless] = ACTIONS(4249), + [anon_sym_ATisset] = ACTIONS(4251), + [anon_sym_ATempty] = ACTIONS(4253), + [anon_sym_ATauth] = ACTIONS(4255), + [anon_sym_ATguest] = ACTIONS(4257), + [anon_sym_ATproduction] = ACTIONS(4259), + [anon_sym_ATenv] = ACTIONS(4261), + [anon_sym_AThasSection] = ACTIONS(4263), + [anon_sym_ATsectionMissing] = ACTIONS(4265), + [anon_sym_ATerror] = ACTIONS(4267), + [anon_sym_ATcan] = ACTIONS(4269), + [anon_sym_ATcannot] = ACTIONS(4271), + [anon_sym_ATcanany] = ACTIONS(4273), + [anon_sym_ATfeature] = ACTIONS(4275), + [aux_sym__custom_token1] = ACTIONS(4277), + [aux_sym__custom_token2] = ACTIONS(4279), + [anon_sym_ATswitch] = ACTIONS(4281), + [aux_sym_loop_operator_token1] = ACTIONS(4283), + [anon_sym_ATfor] = ACTIONS(4285), + [anon_sym_ATforeach] = ACTIONS(4287), + [anon_sym_ATforelse] = ACTIONS(4289), + [anon_sym_ATwhile] = ACTIONS(4291), + [anon_sym_ATsetup] = ACTIONS(4293), + [anon_sym_ATtask] = ACTIONS(4295), + [anon_sym_ATstory] = ACTIONS(4297), + [anon_sym_ATbefore] = ACTIONS(4299), + [anon_sym_ATafter] = ACTIONS(4301), + [anon_sym_ATsuccess] = ACTIONS(4303), + [anon_sym_ATfinished] = ACTIONS(4305), + [anon_sym_ATpersist] = ACTIONS(4307), + [anon_sym_ATteleport] = ACTIONS(4309), + [anon_sym_ATvolt] = ACTIONS(4311), + [aux_sym__text_token1] = ACTIONS(4313), + [aux_sym__text_token2] = ACTIONS(4313), + [aux_sym__text_token3] = ACTIONS(4315), + }, + [656] = { + [sym__definition] = STATE(653), + [sym_keyword] = STATE(653), + [sym_php_statement] = STATE(653), + [sym__escaped] = STATE(3406), + [sym__unescaped] = STATE(3406), + [sym__raw] = STATE(3406), + [sym__inline_raw] = STATE(3406), + [sym__multi_line_raw] = STATE(3406), + [sym_attribute] = STATE(653), + [sym__inline_directive] = STATE(653), + [sym__nested_directive] = STATE(653), + [sym_fragment] = STATE(653), + [sym_section] = STATE(653), + [sym_inlineSection] = STATE(653), + [sym_once] = STATE(653), + [sym_verbatim] = STATE(653), + [sym_stack] = STATE(653), + [sym__push] = STATE(3404), + [sym__pushOnce] = STATE(3404), + [sym__pushIf] = STATE(3404), + [sym__prepend] = STATE(3404), + [sym__prependOnce] = STATE(3404), + [sym_conditional] = STATE(653), + [sym__if] = STATE(3400), + [sym__unless] = STATE(3400), + [sym__isset] = STATE(3400), + [sym__empty] = STATE(3400), + [sym__auth] = STATE(3400), + [sym__guest] = STATE(3400), + [sym__production] = STATE(3400), + [sym__env] = STATE(3400), + [sym__hasSection] = STATE(3400), + [sym__sectionMissing] = STATE(3400), + [sym__error] = STATE(3400), + [sym_authorization] = STATE(3400), + [sym__can] = STATE(3390), + [sym__cannot] = STATE(3390), + [sym__canany] = STATE(3390), + [sym__feature] = STATE(3400), + [sym__custom] = STATE(3400), + [sym_switch] = STATE(653), + [sym_loop] = STATE(653), + [sym_loop_operator] = STATE(653), + [sym__for] = STATE(3386), + [sym__foreach] = STATE(3386), + [sym__forelse] = STATE(3386), + [sym__while] = STATE(3386), + [sym_envoy] = STATE(653), + [sym__setup] = STATE(3406), + [sym__task] = STATE(3384), + [sym__story] = STATE(3384), + [sym__hooks] = STATE(3406), + [sym__before] = STATE(3406), + [sym__after] = STATE(3406), + [sym__envoy_error] = STATE(3406), + [sym__success] = STATE(3406), + [sym__finished] = STATE(3406), + [sym_livewire] = STATE(653), + [sym__persist] = STATE(3383), + [sym__teleport] = STATE(3383), + [sym__volt] = STATE(3383), + [aux_sym__directive_body] = STATE(653), + [sym_text] = STATE(653), + [sym__text] = STATE(818), + [aux_sym_php_only_repeat1] = STATE(818), + [sym_comment] = ACTIONS(10331), + [aux_sym_keyword_token1] = ACTIONS(4111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4113), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4115), + [anon_sym_ATphp] = ACTIONS(4117), + [aux_sym_attribute_token1] = ACTIONS(4119), + [aux_sym__inline_directive_token1] = ACTIONS(4121), + [anon_sym_ATfragment] = ACTIONS(4123), + [anon_sym_ATsection] = ACTIONS(4125), + [anon_sym_ATonce] = ACTIONS(4127), + [anon_sym_ATverbatim] = ACTIONS(4129), + [anon_sym_ATendverbatim] = ACTIONS(10333), + [anon_sym_ATpush] = ACTIONS(4133), + [anon_sym_ATpushOnce] = ACTIONS(4135), + [anon_sym_ATpushIf] = ACTIONS(4137), + [anon_sym_ATprepend] = ACTIONS(4139), + [anon_sym_ATprependOnce] = ACTIONS(4141), + [anon_sym_ATif] = ACTIONS(4143), + [anon_sym_ATunless] = ACTIONS(4145), + [anon_sym_ATisset] = ACTIONS(4147), + [anon_sym_ATempty] = ACTIONS(4149), + [anon_sym_ATauth] = ACTIONS(4151), + [anon_sym_ATguest] = ACTIONS(4153), + [anon_sym_ATproduction] = ACTIONS(4155), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4159), + [anon_sym_ATsectionMissing] = ACTIONS(4161), + [anon_sym_ATerror] = ACTIONS(4163), + [anon_sym_ATcan] = ACTIONS(4165), + [anon_sym_ATcannot] = ACTIONS(4167), + [anon_sym_ATcanany] = ACTIONS(4169), + [anon_sym_ATfeature] = ACTIONS(4171), + [aux_sym__custom_token1] = ACTIONS(4173), + [aux_sym__custom_token2] = ACTIONS(4175), + [anon_sym_ATswitch] = ACTIONS(4177), + [aux_sym_loop_operator_token1] = ACTIONS(4179), + [anon_sym_ATfor] = ACTIONS(4181), + [anon_sym_ATforeach] = ACTIONS(4183), + [anon_sym_ATforelse] = ACTIONS(4185), + [anon_sym_ATwhile] = ACTIONS(4187), + [anon_sym_ATsetup] = ACTIONS(4189), + [anon_sym_ATtask] = ACTIONS(4191), + [anon_sym_ATstory] = ACTIONS(4193), + [anon_sym_ATbefore] = ACTIONS(4195), + [anon_sym_ATafter] = ACTIONS(4197), + [anon_sym_ATsuccess] = ACTIONS(4199), + [anon_sym_ATfinished] = ACTIONS(4201), + [anon_sym_ATpersist] = ACTIONS(4203), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4207), + [aux_sym__text_token1] = ACTIONS(4209), + [aux_sym__text_token2] = ACTIONS(4209), + [aux_sym__text_token3] = ACTIONS(4211), + }, + [657] = { + [sym__definition] = STATE(657), + [sym_keyword] = STATE(657), + [sym_php_statement] = STATE(657), + [sym__escaped] = STATE(3077), + [sym__unescaped] = STATE(3077), + [sym__raw] = STATE(3077), + [sym__inline_raw] = STATE(3077), + [sym__multi_line_raw] = STATE(3077), + [sym_attribute] = STATE(657), + [sym__inline_directive] = STATE(657), + [sym__nested_directive] = STATE(657), + [sym_fragment] = STATE(657), + [sym_section] = STATE(657), + [sym_inlineSection] = STATE(657), + [sym_once] = STATE(657), + [sym_verbatim] = STATE(657), + [sym_stack] = STATE(657), + [sym__push] = STATE(3078), + [sym__pushOnce] = STATE(3078), + [sym__pushIf] = STATE(3078), + [sym__prepend] = STATE(3078), + [sym__prependOnce] = STATE(3078), + [sym_conditional] = STATE(657), + [sym__if] = STATE(3079), + [sym__unless] = STATE(3079), + [sym__isset] = STATE(3079), + [sym__empty] = STATE(3079), + [sym__auth] = STATE(3079), + [sym__guest] = STATE(3079), + [sym__production] = STATE(3079), + [sym__env] = STATE(3079), + [sym__hasSection] = STATE(3079), + [sym__sectionMissing] = STATE(3079), + [sym__error] = STATE(3079), + [sym_authorization] = STATE(3079), + [sym__can] = STATE(3080), + [sym__cannot] = STATE(3080), + [sym__canany] = STATE(3080), + [sym__feature] = STATE(3079), + [sym__custom] = STATE(3079), + [sym_switch] = STATE(657), + [sym_loop] = STATE(657), + [sym_loop_operator] = STATE(657), + [sym__for] = STATE(3081), + [sym__foreach] = STATE(3081), + [sym__forelse] = STATE(3081), + [sym__while] = STATE(3081), + [sym_envoy] = STATE(657), + [sym__setup] = STATE(3077), + [sym__task] = STATE(3082), + [sym__story] = STATE(3082), + [sym__hooks] = STATE(3077), + [sym__before] = STATE(3077), + [sym__after] = STATE(3077), + [sym__envoy_error] = STATE(3077), + [sym__success] = STATE(3077), + [sym__finished] = STATE(3077), + [sym_livewire] = STATE(657), + [sym__persist] = STATE(3083), + [sym__teleport] = STATE(3083), + [sym__volt] = STATE(3083), + [aux_sym__directive_body] = STATE(657), + [sym_text] = STATE(657), + [sym__text] = STATE(947), + [aux_sym_php_only_repeat1] = STATE(947), + [sym_comment] = ACTIONS(10335), + [aux_sym_keyword_token1] = ACTIONS(10338), + [anon_sym_LBRACE_LBRACE] = ACTIONS(10341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(10344), + [anon_sym_ATphp] = ACTIONS(10347), + [aux_sym_attribute_token1] = ACTIONS(10350), + [aux_sym__inline_directive_token1] = ACTIONS(10353), + [anon_sym_ATfragment] = ACTIONS(10356), + [anon_sym_ATsection] = ACTIONS(10359), + [anon_sym_ATonce] = ACTIONS(10362), + [anon_sym_ATverbatim] = ACTIONS(10365), + [anon_sym_ATpush] = ACTIONS(10368), + [anon_sym_ATpushOnce] = ACTIONS(10371), + [anon_sym_ATpushIf] = ACTIONS(10374), + [anon_sym_ATprepend] = ACTIONS(10377), + [anon_sym_ATprependOnce] = ACTIONS(10380), + [anon_sym_ATif] = ACTIONS(10383), + [anon_sym_ATunless] = ACTIONS(10386), + [anon_sym_ATisset] = ACTIONS(10389), + [anon_sym_ATempty] = ACTIONS(10392), + [anon_sym_ATauth] = ACTIONS(10395), + [anon_sym_ATguest] = ACTIONS(10398), + [anon_sym_ATproduction] = ACTIONS(10401), + [anon_sym_ATenv] = ACTIONS(10404), + [anon_sym_AThasSection] = ACTIONS(10407), + [anon_sym_ATsectionMissing] = ACTIONS(10410), + [anon_sym_ATerror] = ACTIONS(10413), + [anon_sym_ATcan] = ACTIONS(10416), + [anon_sym_ATcannot] = ACTIONS(10419), + [anon_sym_ATcanany] = ACTIONS(10422), + [anon_sym_ATfeature] = ACTIONS(10425), + [aux_sym__custom_token1] = ACTIONS(10428), + [aux_sym__custom_token2] = ACTIONS(10431), + [anon_sym_ATswitch] = ACTIONS(10434), + [anon_sym_ATbreak] = ACTIONS(5035), + [aux_sym_loop_operator_token1] = ACTIONS(10437), + [anon_sym_ATfor] = ACTIONS(10440), + [anon_sym_ATforeach] = ACTIONS(10443), + [anon_sym_ATforelse] = ACTIONS(10446), + [anon_sym_ATwhile] = ACTIONS(10449), + [anon_sym_ATsetup] = ACTIONS(10452), + [anon_sym_ATtask] = ACTIONS(10455), + [anon_sym_ATstory] = ACTIONS(10458), + [anon_sym_ATbefore] = ACTIONS(10461), + [anon_sym_ATafter] = ACTIONS(10464), + [anon_sym_ATsuccess] = ACTIONS(10467), + [anon_sym_ATfinished] = ACTIONS(10470), + [anon_sym_ATpersist] = ACTIONS(10473), + [anon_sym_ATteleport] = ACTIONS(10476), + [anon_sym_ATvolt] = ACTIONS(10479), + [aux_sym__text_token1] = ACTIONS(10482), + [aux_sym__text_token2] = ACTIONS(10482), + [aux_sym__text_token3] = ACTIONS(10485), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(1142), 1, + STATE(114), 1, sym__directive_parameter, - ACTIONS(9942), 12, + STATE(6593), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109373,72 +104947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATendcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3576] = 5, - ACTIONS(10066), 1, - aux_sym__text_token3, - ACTIONS(10064), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(701), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109480,199 +104990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3644] = 4, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(1818), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATendcan, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3710] = 4, - ACTIONS(9990), 1, - anon_sym_LPAREN2, - STATE(870), 1, - sym__directive_parameter, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATendguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3776] = 5, - ACTIONS(10073), 1, aux_sym__text_token3, - ACTIONS(10070), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(714), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATendcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [3844] = 4, - ACTIONS(10006), 1, + [69] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(1076), 1, + STATE(114), 1, sym__directive_parameter, - ACTIONS(9936), 12, + STATE(5607), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109685,72 +105011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [3910] = 5, - ACTIONS(10078), 1, - aux_sym__text_token3, - ACTIONS(10076), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(700), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109792,75 +105054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [3978] = 5, - ACTIONS(10082), 1, aux_sym__text_token3, - ACTIONS(10080), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(708), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATenderror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4046] = 4, - ACTIONS(10008), 1, + [138] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(893), 1, + STATE(114), 1, sym__directive_parameter, - ACTIONS(9942), 12, + STATE(6369), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109873,8 +105075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109887,7 +105089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -109898,6 +105099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -109917,75 +105119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [4112] = 5, - ACTIONS(10087), 1, - aux_sym__text_token3, - ACTIONS(10084), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(719), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4180] = 4, - ACTIONS(10068), 1, + [207] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(1049), 1, + STATE(114), 1, sym__directive_parameter, - ACTIONS(9942), 12, + STATE(6314), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -109998,72 +105139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATendcan, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [4246] = 5, - ACTIONS(10093), 1, - aux_sym__text_token3, - ACTIONS(10090), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(721), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110105,465 +105182,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [4314] = 4, - ACTIONS(9956), 1, - anon_sym_LPAREN2, - STATE(956), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATenderror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [4380] = 5, - ACTIONS(10099), 1, - aux_sym__text_token3, - ACTIONS(10096), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(723), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATendguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4448] = 5, - ACTIONS(10105), 1, - aux_sym__text_token3, - ACTIONS(10102), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(724), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - anon_sym_ATendfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4516] = 5, - ACTIONS(10110), 1, - aux_sym__text_token3, - ACTIONS(10108), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(719), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATendproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4584] = 4, - ACTIONS(10056), 1, - anon_sym_LPAREN2, - STATE(755), 1, - sym__directive_parameter, - ACTIONS(9942), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [4650] = 5, - ACTIONS(10115), 1, - aux_sym__text_token3, - ACTIONS(10112), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(727), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - aux_sym__custom_token3, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [4718] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5917), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATendstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, aux_sym__text_token3, - [4785] = 5, - ACTIONS(9938), 1, + [276] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(6410), 1, + STATE(5726), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110573,13 +105214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -110605,44 +105247,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [4852] = 5, - ACTIONS(9938), 1, + [345] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(5561), 1, + STATE(5850), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -110667,89 +105311,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [4919] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(5703), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - aux_sym_loop_operator_token1, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - anon_sym_ATbreak, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [4986] = 5, - ACTIONS(9938), 1, + [414] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(6170), 1, + STATE(6610), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110760,7 +105343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -110789,29 +105374,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [5053] = 5, - ACTIONS(9938), 1, + [483] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(6765), 1, + STATE(6427), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110820,9 +105405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -110833,6 +105418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -110853,39 +105439,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5120] = 5, - ACTIONS(9938), 1, + [552] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(6394), 1, + STATE(6691), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -110915,27 +105503,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5187] = 5, - ACTIONS(9938), 1, + [621] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(5788), 1, + STATE(6540), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110945,8 +105534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -110954,6 +105543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -110977,27 +105567,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5254] = 5, - ACTIONS(9938), 1, + [690] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(6740), 1, + STATE(6257), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111008,6 +105599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111021,6 +105613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -111036,30 +105629,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5321] = 5, - ACTIONS(9938), 1, + [759] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(5829), 1, + STATE(6655), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111070,8 +105663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -111097,31 +105692,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5388] = 5, - ACTIONS(9938), 1, + [828] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(5630), 1, + STATE(6479), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111132,6 +105727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111142,12 +105738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -111163,27 +105759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5455] = 5, - ACTIONS(9938), 1, + [897] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, STATE(114), 1, sym__directive_parameter, - STATE(6430), 1, + STATE(6200), 1, sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111194,7 +105791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111209,6 +105806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -111225,27 +105823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5522] = 5, - ACTIONS(9938), 1, + [966] = 4, + ACTIONS(10494), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(984), 1, sym__directive_parameter, - STATE(6007), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111256,12 +105853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -111277,7 +105876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -111287,27 +105885,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5589] = 5, - ACTIONS(9938), 1, + [1032] = 4, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1118), 1, sym__directive_parameter, - STATE(6097), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111318,6 +105915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111329,6 +105927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -111337,7 +105936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -111349,27 +105947,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5656] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6188), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + [1098] = 5, + ACTIONS(10508), 1, + aux_sym__text_token3, + ACTIONS(10506), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(701), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111380,6 +105979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111387,6 +105987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -111398,7 +105999,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -111410,29 +106010,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [5723] = 5, - ACTIONS(9938), 1, + [1166] = 4, + ACTIONS(10510), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1698), 1, sym__directive_parameter, - STATE(6027), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111443,6 +106040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111453,6 +106051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -111473,27 +106072,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5790] = 5, - ACTIONS(9938), 1, + [1232] = 4, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1156), 1, sym__directive_parameter, - STATE(6276), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111504,6 +106102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111517,11 +106116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -111535,27 +106134,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5857] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6583), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + [1298] = 5, + ACTIONS(10516), 1, + aux_sym__text_token3, + ACTIONS(10514), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(696), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111563,13 +106163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -111596,28 +106197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [5924] = 5, - ACTIONS(9938), 1, + [1366] = 4, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1615), 1, sym__directive_parameter, - STATE(5602), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111625,10 +106224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111636,6 +106235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -111659,27 +106259,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [5991] = 5, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - STATE(114), 1, - sym__directive_parameter, - STATE(6365), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + [1432] = 5, + ACTIONS(10522), 1, + aux_sym__text_token3, + ACTIONS(10520), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(714), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111690,6 +106291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111702,11 +106304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -111720,39 +106322,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [6058] = 5, - ACTIONS(9938), 1, + [1500] = 4, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(114), 1, + STATE(1069), 1, sym__directive_parameter, - STATE(6216), 1, - sym__if_statement_directive_body, - ACTIONS(9936), 11, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111767,6 +106367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -111783,8 +106384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [6125] = 2, - ACTIONS(10120), 12, + [1566] = 5, + ACTIONS(10528), 1, + aux_sym__text_token3, + ACTIONS(10526), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(694), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111795,10 +106404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111812,6 +106419,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -111820,7 +106428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -111840,9 +106447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [6185] = 2, - ACTIONS(10124), 12, + [1634] = 4, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(1531), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -111855,8 +106465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111871,6 +106481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -111879,7 +106490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -111899,26 +106509,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [6245] = 4, - ACTIONS(10126), 1, - anon_sym_LPAREN2, - STATE(3303), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [1700] = 5, + ACTIONS(10532), 1, + aux_sym__text_token3, + ACTIONS(10530), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(717), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111929,6 +106541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -111942,6 +106555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -111958,29 +106572,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [1768] = 5, + ACTIONS(10541), 1, aux_sym__text_token3, - [6309] = 5, - ACTIONS(10130), 1, - aux_sym__text_token3, - ACTIONS(10128), 2, + ACTIONS(10538), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(754), 2, + STATE(684), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111991,7 +106604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -112020,8 +106635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [6375] = 2, - ACTIONS(9942), 12, + [1836] = 4, + ACTIONS(10544), 1, + anon_sym_LPAREN2, + STATE(849), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112034,8 +106653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112051,8 +106670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -112078,28 +106697,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [6435] = 5, - ACTIONS(10135), 1, + [1902] = 5, + ACTIONS(10548), 1, aux_sym__text_token3, - ACTIONS(10132), 2, + ACTIONS(10546), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(754), 2, + STATE(689), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112110,7 +106729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -112139,8 +106760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [6501] = 2, - ACTIONS(10140), 12, + [1970] = 4, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(1446), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112153,8 +106778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112168,9 +106793,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112197,36 +106822,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [6561] = 4, - ACTIONS(10142), 1, - anon_sym_LPAREN2, - STATE(3565), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [2036] = 5, + ACTIONS(10554), 1, + aux_sym__text_token3, + ACTIONS(10552), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(719), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -112241,6 +106869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -112256,9 +106885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [2104] = 5, + ACTIONS(10559), 1, aux_sym__text_token3, - [6625] = 2, - ACTIONS(9942), 12, + ACTIONS(10556), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(689), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112269,10 +106905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112285,11 +106919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -112314,9 +106948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [6685] = 2, - ACTIONS(10140), 12, + [2172] = 4, + ACTIONS(10524), 1, + anon_sym_LPAREN2, + STATE(1385), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112329,8 +106966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112347,7 +106984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -112357,6 +106993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -112373,25 +107010,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [6745] = 4, - ACTIONS(10144), 1, + [2238] = 4, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(3470), 1, + STATE(844), 1, sym__directive_parameter, - ACTIONS(9936), 11, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112399,10 +107037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -112410,6 +107048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -112433,39 +107072,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [6809] = 5, - ACTIONS(10148), 1, + [2304] = 5, + ACTIONS(10564), 1, aux_sym__text_token3, - ACTIONS(10146), 2, + ACTIONS(10562), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(1264), 2, + STATE(684), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATendif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + [2372] = 4, + ACTIONS(10566), 1, + anon_sym_LPAREN2, + STATE(1360), 1, + sym__directive_parameter, + ACTIONS(10490), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -112494,8 +107196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [6875] = 2, - ACTIONS(9942), 12, + aux_sym__text_token3, + [2438] = 5, + ACTIONS(10571), 1, + aux_sym__text_token3, + ACTIONS(10568), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(694), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112506,10 +107217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112523,11 +107232,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -112551,9 +107260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [2506] = 5, + ACTIONS(10577), 1, aux_sym__text_token3, - [6935] = 2, - ACTIONS(10140), 12, + ACTIONS(10574), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(695), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112564,10 +107280,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, + ACTIONS(10534), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + [2574] = 5, + ACTIONS(10583), 1, + aux_sym__text_token3, + ACTIONS(10580), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(696), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112582,10 +107359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -112609,9 +107386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [6995] = 2, - ACTIONS(10152), 12, + [2642] = 4, + ACTIONS(10512), 1, + anon_sym_LPAREN2, + STATE(1296), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112624,8 +107404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112641,7 +107421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112651,6 +107430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -112668,8 +107448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7055] = 2, - ACTIONS(10156), 12, + [2708] = 4, + ACTIONS(10494), 1, + anon_sym_LPAREN2, + STATE(801), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112682,8 +107466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112699,9 +107483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -112726,8 +107510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7115] = 2, - ACTIONS(10160), 12, + [2774] = 4, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(1271), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112740,8 +107528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112754,10 +107542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112784,8 +107572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7175] = 2, - ACTIONS(10164), 12, + [2840] = 4, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(1864), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112798,8 +107590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112815,7 +107607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -112823,6 +107614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -112842,8 +107634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7235] = 2, - ACTIONS(10120), 12, + [2906] = 5, + ACTIONS(10591), 1, + aux_sym__text_token3, + ACTIONS(10588), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(701), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112854,10 +107654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112873,10 +107671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -112899,9 +107697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [7295] = 2, - ACTIONS(10140), 12, + [2974] = 4, + ACTIONS(10594), 1, + anon_sym_LPAREN2, + STATE(1244), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112914,8 +107715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112930,7 +107731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -112940,6 +107740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -112958,8 +107759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7355] = 2, - ACTIONS(10168), 12, + [3040] = 4, + ACTIONS(10596), 1, + anon_sym_LPAREN2, + STATE(760), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -112972,8 +107777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113016,8 +107821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7415] = 2, - ACTIONS(10172), 12, + [3106] = 5, + ACTIONS(10601), 1, + aux_sym__text_token3, + ACTIONS(10598), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(704), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113028,10 +107841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113047,13 +107858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -113073,9 +107884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [7475] = 2, - ACTIONS(10176), 12, + [3174] = 4, + ACTIONS(10594), 1, + anon_sym_LPAREN2, + STATE(1207), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113088,8 +107902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113105,7 +107919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113114,6 +107927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -113132,27 +107946,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7535] = 5, - ACTIONS(10180), 1, + [3240] = 5, + ACTIONS(10606), 1, aux_sym__text_token3, - ACTIONS(10178), 2, + ACTIONS(10604), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(833), 2, + STATE(716), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113160,14 +107975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113193,8 +108009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [7601] = 2, - ACTIONS(10184), 12, + [3308] = 4, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(791), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113207,8 +108027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113221,10 +108041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113251,8 +108071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7661] = 2, - ACTIONS(10188), 12, + [3374] = 4, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(1846), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113265,8 +108089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113280,9 +108104,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113309,8 +108133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [7721] = 2, - ACTIONS(10192), 12, + [3440] = 5, + ACTIONS(10611), 1, + aux_sym__text_token3, + ACTIONS(10608), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(709), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113321,10 +108153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113340,13 +108170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -113366,9 +108196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [3508] = 5, + ACTIONS(10616), 1, aux_sym__text_token3, - [7781] = 2, - ACTIONS(10196), 12, + ACTIONS(10614), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(704), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113379,10 +108216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113398,13 +108233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -113424,9 +108259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [3576] = 5, + ACTIONS(10621), 1, aux_sym__text_token3, - [7841] = 2, - ACTIONS(10200), 12, + ACTIONS(10618), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(711), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113437,10 +108279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113456,7 +108296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113464,6 +108303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -113482,9 +108322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [3644] = 5, + ACTIONS(10626), 1, aux_sym__text_token3, - [7901] = 2, - ACTIONS(10204), 12, + ACTIONS(10624), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(711), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113495,10 +108342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113514,7 +108359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113522,6 +108366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -113540,9 +108385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [7961] = 2, - ACTIONS(10208), 12, + [3712] = 4, + ACTIONS(10544), 1, + anon_sym_LPAREN2, + STATE(855), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113555,8 +108403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113572,8 +108420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -113599,8 +108447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8021] = 2, - ACTIONS(10212), 12, + [3778] = 5, + ACTIONS(10631), 1, + aux_sym__text_token3, + ACTIONS(10628), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(714), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113611,10 +108467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113630,7 +108484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113639,6 +108492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -113656,9 +108510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [8081] = 2, - ACTIONS(10216), 12, + [3846] = 4, + ACTIONS(10510), 1, + anon_sym_LPAREN2, + STATE(936), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113671,8 +108528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113688,13 +108545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -113715,8 +108572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8141] = 2, - ACTIONS(9942), 12, + [3912] = 5, + ACTIONS(10637), 1, + aux_sym__text_token3, + ACTIONS(10634), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(716), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113727,10 +108592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113743,10 +108606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113772,9 +108635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [3980] = 5, + ACTIONS(10643), 1, aux_sym__text_token3, - [8201] = 2, - ACTIONS(10220), 12, + ACTIONS(10640), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(717), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113785,10 +108655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113804,7 +108672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113814,6 +108681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -113830,9 +108698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [4048] = 5, + ACTIONS(10649), 1, aux_sym__text_token3, - [8261] = 2, - ACTIONS(10224), 12, + ACTIONS(10646), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(718), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113843,10 +108718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113862,9 +108735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -113888,9 +108761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [4116] = 5, + ACTIONS(10655), 1, aux_sym__text_token3, - [8321] = 2, - ACTIONS(10228), 12, + ACTIONS(10652), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(719), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113901,10 +108781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113920,7 +108798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -113931,6 +108808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -113946,9 +108824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [4184] = 5, + ACTIONS(10660), 1, aux_sym__text_token3, - [8381] = 2, - ACTIONS(10232), 12, + ACTIONS(10658), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(695), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -113959,10 +108844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113978,8 +108861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -114004,9 +108887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [8441] = 2, - ACTIONS(10236), 12, + [4252] = 4, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + STATE(1027), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114019,8 +108905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114036,13 +108922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -114063,8 +108949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8501] = 2, - ACTIONS(10240), 12, + [4318] = 5, + ACTIONS(10666), 1, + aux_sym__text_token3, + ACTIONS(10664), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(718), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114075,10 +108969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114094,9 +108986,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -114120,9 +109012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [8561] = 2, - ACTIONS(10244), 12, + [4386] = 4, + ACTIONS(10566), 1, + anon_sym_LPAREN2, + STATE(881), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114135,8 +109030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114149,10 +109044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114179,8 +109074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8621] = 2, - ACTIONS(10248), 12, + [4452] = 4, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(753), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114193,8 +109092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114209,8 +109108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114237,124 +109136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8681] = 2, - ACTIONS(10252), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, + [4518] = 5, + ACTIONS(10670), 1, aux_sym__text_token3, - [8741] = 2, - ACTIONS(10256), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, + ACTIONS(10668), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [8801] = 2, - ACTIONS(10260), 12, + STATE(709), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114365,10 +109156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114384,13 +109173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -114410,9 +109199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [8861] = 2, - ACTIONS(10264), 12, + [4586] = 4, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + STATE(1781), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114425,8 +109217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114442,13 +109234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -114469,8 +109261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8921] = 2, - ACTIONS(10268), 12, + [4652] = 4, + ACTIONS(10596), 1, + anon_sym_LPAREN2, + STATE(906), 1, + sym__directive_parameter, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -114483,8 +109279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114527,22 +109323,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [8981] = 2, - ACTIONS(10272), 12, + [4718] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5824), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114553,12 +109354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114577,6 +109376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -114585,80 +109385,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9041] = 2, - ACTIONS(10276), 12, + [4785] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5561), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATendauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [9101] = 2, - ACTIONS(10280), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114669,12 +109417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114686,7 +109432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -114701,22 +109447,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9161] = 2, - ACTIONS(10284), 12, + [4852] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5490), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114727,12 +109478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114744,6 +109493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -114759,38 +109509,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9221] = 2, - ACTIONS(10288), 12, + [4919] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5532), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114817,22 +109571,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9281] = 2, - ACTIONS(10292), 12, + [4986] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5645), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114843,12 +109602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114874,23 +109631,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [9341] = 2, - ACTIONS(10296), 12, + [5053] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6396), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114900,13 +109663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114933,22 +109695,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9401] = 2, - ACTIONS(10300), 12, + [5120] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5702), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114959,12 +109726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -114989,24 +109754,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9461] = 2, - ACTIONS(10304), 12, + [5187] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5765), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115017,12 +109788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115046,25 +109815,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9521] = 2, - ACTIONS(10140), 12, + [5254] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6197), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115073,11 +109848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -115107,22 +109881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9581] = 2, - ACTIONS(10308), 12, + [5321] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6502), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115133,12 +109912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115165,22 +109943,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9641] = 2, - ACTIONS(10312), 12, + [5388] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6290), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115190,13 +109973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115223,22 +110005,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9701] = 2, - ACTIONS(10316), 12, + [5455] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5889), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115249,12 +110036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115272,6 +110057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -115281,38 +110067,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9761] = 2, - ACTIONS(10320), 12, + [5522] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5971), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115339,22 +110129,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9821] = 2, - ACTIONS(10324), 12, + [5589] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5946), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115365,12 +110160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115386,6 +110179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -115397,12 +110191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9881] = 4, - ACTIONS(10326), 1, + [5656] = 5, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(3449), 1, + STATE(114), 1, sym__directive_parameter, - ACTIONS(9936), 11, + STATE(5530), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115414,8 +110210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115423,7 +110219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115457,22 +110253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [9945] = 2, - ACTIONS(10330), 12, + [5723] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6015), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115483,12 +110284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115503,6 +110302,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -115515,22 +110315,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10005] = 2, - ACTIONS(10334), 12, + [5790] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6074), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115541,12 +110346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115560,6 +110363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -115573,22 +110377,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10065] = 2, - ACTIONS(10338), 12, + [5857] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5917), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115599,12 +110409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115631,22 +110439,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10125] = 2, - ACTIONS(10342), 12, + [5924] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6142), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115657,12 +110470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115675,6 +110486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -115689,22 +110501,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10185] = 2, - ACTIONS(10346), 12, + [5991] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(6094), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115712,15 +110529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115747,38 +110563,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10245] = 2, - ACTIONS(10350), 12, + [6058] = 5, + ACTIONS(10492), 1, + anon_sym_LPAREN2, + STATE(114), 1, + sym__directive_parameter, + STATE(5947), 1, + sym__if_statement_directive_body, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -115805,8 +110625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10305] = 2, - ACTIONS(10354), 12, + [6125] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115819,8 +110639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115836,13 +110656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -115863,39 +110683,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10365] = 5, - ACTIONS(10358), 1, - aux_sym__text_token3, - ACTIONS(10356), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1654), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [6185] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -115924,8 +110740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [10431] = 2, - ACTIONS(10362), 12, + aux_sym__text_token3, + [6245] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115938,8 +110755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115982,8 +110799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10491] = 2, - ACTIONS(10366), 12, + [6305] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -115996,8 +110813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116040,8 +110857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10551] = 2, - ACTIONS(10370), 12, + [6365] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116054,8 +110871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116070,8 +110887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -116098,8 +110915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10611] = 2, - ACTIONS(10374), 12, + [6425] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116112,8 +110929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116156,8 +110973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10671] = 2, - ACTIONS(10378), 12, + [6485] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116170,8 +110987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116184,10 +111001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -116214,8 +111031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10731] = 2, - ACTIONS(10382), 12, + [6545] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116228,8 +111045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116272,8 +111089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10791] = 2, - ACTIONS(10386), 12, + [6605] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116286,8 +111103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116330,8 +111147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10851] = 2, - ACTIONS(10390), 12, + [6665] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116344,8 +111161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116388,8 +111205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10911] = 2, - ACTIONS(10394), 12, + [6725] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116402,8 +111219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116446,8 +111263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [10971] = 2, - ACTIONS(10398), 12, + [6785] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116460,8 +111277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116504,8 +111321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11031] = 2, - ACTIONS(10402), 12, + [6845] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116518,8 +111335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116562,8 +111379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11091] = 2, - ACTIONS(10406), 12, + [6905] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116576,8 +111393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116620,8 +111437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11151] = 2, - ACTIONS(9942), 12, + [6965] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116634,8 +111451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116651,10 +111468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -116678,69 +111495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11211] = 5, - ACTIONS(10411), 1, - aux_sym__text_token3, - ACTIONS(10408), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(833), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATendverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [11277] = 2, - ACTIONS(10416), 12, + [7025] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116753,8 +111509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116797,8 +111553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11337] = 2, - ACTIONS(10420), 12, + [7085] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116811,8 +111567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116855,8 +111611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11397] = 2, - ACTIONS(10424), 12, + [7145] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116869,8 +111625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116913,8 +111669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11457] = 2, - ACTIONS(10428), 12, + [7205] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116927,8 +111683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116971,8 +111727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11517] = 2, - ACTIONS(10432), 12, + [7265] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -116985,8 +111741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117029,8 +111785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11577] = 2, - ACTIONS(10436), 12, + [7325] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117043,8 +111799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117087,8 +111843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11637] = 2, - ACTIONS(10440), 12, + [7385] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117101,8 +111857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117145,8 +111901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11697] = 2, - ACTIONS(10444), 12, + [7445] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117159,8 +111915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117203,8 +111959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11757] = 2, - ACTIONS(10448), 12, + [7505] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117217,8 +111973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117261,8 +112017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11817] = 2, - ACTIONS(10124), 12, + [7565] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117275,8 +112031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117319,8 +112075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11877] = 2, - ACTIONS(10452), 12, + [7625] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117333,8 +112089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117377,8 +112133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11937] = 2, - ACTIONS(10456), 12, + [7685] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117391,8 +112147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117405,10 +112161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -117435,8 +112191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [11997] = 2, - ACTIONS(10460), 12, + [7745] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117449,8 +112205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117493,8 +112249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12057] = 2, - ACTIONS(10464), 12, + [7805] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117507,8 +112263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117551,8 +112307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12117] = 2, - ACTIONS(10468), 12, + [7865] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117565,8 +112321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117609,8 +112365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12177] = 2, - ACTIONS(10152), 12, + [7925] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117623,8 +112379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117640,8 +112396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117667,8 +112423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12237] = 2, - ACTIONS(10156), 12, + [7985] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117681,8 +112437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117698,8 +112454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117725,8 +112481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12297] = 2, - ACTIONS(10160), 12, + [8045] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117739,8 +112495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117756,8 +112512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117783,8 +112539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12357] = 2, - ACTIONS(10164), 12, + [8105] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117797,8 +112553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117814,8 +112570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117841,8 +112597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12417] = 2, - ACTIONS(10120), 12, + [8165] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117855,8 +112611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117872,8 +112628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117899,8 +112655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12477] = 2, - ACTIONS(10168), 12, + [8225] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117913,8 +112669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117930,8 +112686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -117957,8 +112713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12537] = 2, - ACTIONS(10172), 12, + [8285] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -117971,8 +112727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117988,8 +112744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118015,8 +112771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12597] = 2, - ACTIONS(10176), 12, + [8345] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118029,8 +112785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118046,8 +112802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118073,8 +112829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12657] = 2, - ACTIONS(10184), 12, + [8405] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118087,8 +112843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118104,8 +112860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118131,8 +112887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12717] = 2, - ACTIONS(9942), 12, + [8465] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118145,8 +112901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118161,8 +112917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -118189,8 +112945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12777] = 2, - ACTIONS(10188), 12, + [8525] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118203,8 +112959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118220,8 +112976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118247,8 +113003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12837] = 2, - ACTIONS(10192), 12, + [8585] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118261,8 +113017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118278,8 +113034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118305,8 +113061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12897] = 2, - ACTIONS(10196), 12, + [8645] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118319,8 +113075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118333,11 +113089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118363,8 +113119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [12957] = 2, - ACTIONS(10140), 12, + [8705] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118377,8 +113133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118394,10 +113150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -118421,8 +113177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13017] = 2, - ACTIONS(10200), 12, + [8765] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118435,8 +113191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118452,8 +113208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118479,8 +113235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13077] = 2, - ACTIONS(10204), 12, + [8825] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118493,8 +113249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118510,8 +113266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118537,22 +113293,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13137] = 2, - ACTIONS(10208), 12, + [8885] = 4, + ACTIONS(10840), 1, + anon_sym_LPAREN2, + STATE(3381), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118560,16 +113319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118595,8 +113353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13197] = 2, - ACTIONS(10472), 12, + [8949] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118609,8 +113367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118653,8 +113411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13257] = 2, - ACTIONS(10216), 12, + [9009] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118667,8 +113425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118684,8 +113442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118711,8 +113469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13317] = 2, - ACTIONS(9942), 12, + [9069] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118725,8 +113483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118739,10 +113497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -118769,8 +113527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13377] = 2, - ACTIONS(10220), 12, + [9129] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118783,8 +113541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118800,8 +113558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118827,8 +113585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13437] = 2, - ACTIONS(10224), 12, + [9189] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118841,8 +113599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118858,8 +113616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -118885,8 +113643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13497] = 2, - ACTIONS(10228), 12, + [9249] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118899,8 +113657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118917,8 +113675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -118943,8 +113701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13557] = 2, - ACTIONS(10232), 12, + [9309] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -118957,8 +113715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118974,8 +113732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119001,8 +113759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13617] = 2, - ACTIONS(10236), 12, + [9369] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119015,8 +113773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119032,8 +113790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119059,8 +113817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13677] = 2, - ACTIONS(10240), 12, + [9429] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119073,8 +113831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119090,8 +113848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119117,8 +113875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13737] = 2, - ACTIONS(10244), 12, + [9489] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119131,8 +113889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119148,8 +113906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119175,8 +113933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13797] = 2, - ACTIONS(10248), 12, + [9549] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119189,8 +113947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119206,8 +113964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119233,8 +113991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13857] = 2, - ACTIONS(10252), 12, + [9609] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119247,8 +114005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119264,8 +114022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119291,8 +114049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13917] = 2, - ACTIONS(10256), 12, + [9669] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119305,8 +114063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119322,8 +114080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119349,8 +114107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [13977] = 2, - ACTIONS(10260), 12, + [9729] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119363,8 +114121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119380,8 +114138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119407,8 +114165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14037] = 2, - ACTIONS(10264), 12, + [9789] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119421,8 +114179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119438,8 +114196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119465,8 +114223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14097] = 2, - ACTIONS(10268), 12, + [9849] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119479,8 +114237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119496,8 +114254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119523,8 +114281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14157] = 2, - ACTIONS(10350), 12, + [9909] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119537,8 +114295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119554,8 +114312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119581,8 +114339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14217] = 2, - ACTIONS(10272), 12, + [9969] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119595,8 +114353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119612,8 +114370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119639,8 +114397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14277] = 2, - ACTIONS(10276), 12, + [10029] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119653,8 +114411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119670,8 +114428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119697,8 +114455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14337] = 2, - ACTIONS(10280), 12, + [10089] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119711,8 +114469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119729,9 +114487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -119755,8 +114513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14397] = 2, - ACTIONS(10284), 12, + [10149] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119769,8 +114527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119787,8 +114545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -119813,8 +114571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14457] = 2, - ACTIONS(10212), 12, + [10209] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119827,8 +114585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119844,8 +114602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119871,22 +114629,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14517] = 2, - ACTIONS(10292), 12, + [10269] = 5, + ACTIONS(10920), 1, + aux_sym__text_token3, + ACTIONS(10918), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1003), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119894,16 +114657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119928,9 +114690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [14577] = 2, - ACTIONS(10296), 12, + [10335] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -119943,8 +114704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119960,8 +114721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -119987,8 +114748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14637] = 2, - ACTIONS(10300), 12, + [10395] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120001,8 +114762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120018,8 +114779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120045,22 +114806,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14697] = 2, - ACTIONS(10304), 12, + [10455] = 4, + ACTIONS(10930), 1, + anon_sym_LPAREN2, + STATE(3369), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120068,16 +114832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120103,8 +114866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14757] = 2, - ACTIONS(10476), 12, + [10519] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120117,8 +114880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120131,10 +114894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -120161,8 +114924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14817] = 2, - ACTIONS(10140), 12, + [10579] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120175,8 +114938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120189,10 +114952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -120219,8 +114982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14877] = 2, - ACTIONS(10308), 12, + [10639] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120233,8 +114996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120250,8 +115013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120277,8 +115040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14937] = 2, - ACTIONS(10312), 12, + [10699] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120291,8 +115054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120308,8 +115071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120335,8 +115098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [14997] = 2, - ACTIONS(10316), 12, + [10759] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120349,8 +115112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120366,8 +115129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120393,8 +115156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15057] = 2, - ACTIONS(10320), 12, + [10819] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120407,8 +115170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120421,11 +115184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120451,8 +115214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15117] = 2, - ACTIONS(10324), 12, + [10879] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120465,8 +115228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120482,8 +115245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120509,8 +115272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15177] = 2, - ACTIONS(10330), 12, + [10939] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120523,8 +115286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120540,8 +115303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120567,8 +115330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15237] = 2, - ACTIONS(10334), 12, + [10999] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120581,8 +115344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120598,8 +115361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120625,8 +115388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15297] = 2, - ACTIONS(10338), 12, + [11059] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120639,8 +115402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120656,8 +115419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120683,8 +115446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15357] = 2, - ACTIONS(10342), 12, + [11119] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120697,8 +115460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120714,8 +115477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120741,8 +115504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15417] = 2, - ACTIONS(10346), 12, + [11179] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120755,8 +115518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120772,8 +115535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120799,8 +115562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15477] = 2, - ACTIONS(10432), 12, + [11239] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120813,8 +115576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120830,8 +115593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120857,25 +115620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15537] = 4, - ACTIONS(10478), 1, - anon_sym_LPAREN2, - STATE(3263), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [11299] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120884,14 +115644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -120917,8 +115678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15601] = 2, - ACTIONS(10354), 12, + [11359] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120931,8 +115692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120975,8 +115736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15661] = 2, - ACTIONS(10362), 12, + [11419] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -120989,8 +115750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121033,8 +115794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15721] = 2, - ACTIONS(10366), 12, + [11479] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121047,8 +115808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121091,8 +115852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15781] = 2, - ACTIONS(10370), 12, + [11539] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121105,8 +115866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121149,8 +115910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15841] = 2, - ACTIONS(10288), 12, + [11599] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121163,8 +115924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121207,8 +115968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15901] = 2, - ACTIONS(10378), 12, + [11659] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121221,8 +115982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121265,8 +116026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [15961] = 2, - ACTIONS(10382), 12, + [11719] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121279,8 +116040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121323,8 +116084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16021] = 2, - ACTIONS(10386), 12, + [11779] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121337,8 +116098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121381,8 +116142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16081] = 2, - ACTIONS(10390), 12, + [11839] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121395,8 +116156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121413,9 +116174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -121439,8 +116200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16141] = 2, - ACTIONS(10394), 12, + [11899] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121453,8 +116214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121497,8 +116258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16201] = 2, - ACTIONS(10398), 12, + [11959] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121511,8 +116272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121555,8 +116316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16261] = 2, - ACTIONS(10402), 12, + [12019] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121569,8 +116330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121613,8 +116374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16321] = 2, - ACTIONS(10406), 12, + [12079] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121627,8 +116388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121671,8 +116432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16381] = 2, - ACTIONS(10416), 12, + [12139] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121685,8 +116446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121729,8 +116490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16441] = 2, - ACTIONS(10420), 12, + [12199] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121743,8 +116504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121760,8 +116521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -121787,8 +116548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16501] = 2, - ACTIONS(10424), 12, + [12259] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121801,8 +116562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121845,8 +116606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16561] = 2, - ACTIONS(10428), 12, + [12319] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121859,8 +116620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121903,8 +116664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16621] = 2, - ACTIONS(10436), 12, + [12379] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121917,8 +116678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121931,11 +116692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -121961,8 +116722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16681] = 2, - ACTIONS(10440), 12, + [12439] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -121975,8 +116736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122019,8 +116780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16741] = 2, - ACTIONS(10444), 12, + [12499] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122033,8 +116794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122077,8 +116838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16801] = 2, - ACTIONS(9942), 12, + [12559] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122091,8 +116852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122109,12 +116870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -122135,8 +116896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16861] = 2, - ACTIONS(10448), 12, + [12619] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122149,8 +116910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122193,8 +116954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16921] = 2, - ACTIONS(10374), 12, + [12679] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122207,8 +116968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122251,28 +117012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [16981] = 5, - ACTIONS(10483), 1, - aux_sym__text_token3, - ACTIONS(10480), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(929), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 10, + [12739] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, - ACTIONS(9946), 40, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122283,11 +117038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122298,7 +117055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -122312,27 +117069,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17047] = 5, - ACTIONS(10489), 1, aux_sym__text_token3, - ACTIONS(10486), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(930), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [12799] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122343,11 +117096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122358,7 +117113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -122373,16 +117127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17113] = 5, - ACTIONS(10495), 1, aux_sym__text_token3, - ACTIONS(10492), 2, + [12859] = 5, + ACTIONS(10991), 1, + aux_sym__text_token3, + ACTIONS(10988), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(931), 2, + STATE(861), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122392,15 +117147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -122434,27 +117189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17179] = 5, - ACTIONS(10501), 1, - aux_sym__text_token3, - ACTIONS(10498), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(932), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [12925] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122465,11 +117215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122494,28 +117246,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, - [17245] = 5, - ACTIONS(10507), 1, aux_sym__text_token3, - ACTIONS(10504), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(933), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [12985] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122526,11 +117273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122554,29 +117303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, - [17311] = 5, - ACTIONS(10513), 1, aux_sym__text_token3, - ACTIONS(10510), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(934), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13045] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122587,11 +117331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122614,30 +117360,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17377] = 5, - ACTIONS(10519), 1, aux_sym__text_token3, - ACTIONS(10516), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(935), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13105] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122648,11 +117389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122670,7 +117413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -122678,27 +117420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17443] = 5, - ACTIONS(10525), 1, aux_sym__text_token3, - ACTIONS(10522), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(936), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13165] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122709,11 +117447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122730,7 +117470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -122739,27 +117478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17509] = 5, - ACTIONS(10531), 1, aux_sym__text_token3, - ACTIONS(10528), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(937), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13225] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122770,11 +117505,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122789,7 +117526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -122800,28 +117536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17575] = 5, - ACTIONS(10536), 1, aux_sym__text_token3, - ACTIONS(10534), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(929), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 10, + [13285] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, - ACTIONS(9958), 40, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122832,11 +117563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122847,7 +117580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -122861,8 +117594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17641] = 2, - ACTIONS(10456), 12, + aux_sym__text_token3, + [13345] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122875,8 +117609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122889,11 +117623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122919,27 +117653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [17701] = 5, - ACTIONS(10541), 1, - aux_sym__text_token3, - ACTIONS(10538), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(940), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13405] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122950,11 +117679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -122968,7 +117699,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -122980,16 +117710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17767] = 5, - ACTIONS(10546), 1, aux_sym__text_token3, - ACTIONS(10544), 2, + [13465] = 5, + ACTIONS(10996), 1, + aux_sym__text_token3, + ACTIONS(10994), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(930), 2, + STATE(861), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -122999,14 +117730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -123026,7 +117758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -123041,8 +117772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17833] = 2, - ACTIONS(10468), 12, + [13531] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123055,8 +117786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123073,8 +117804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123099,16 +117830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [17893] = 5, - ACTIONS(10551), 1, - aux_sym__text_token3, - ACTIONS(10548), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(943), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13591] = 4, + ACTIONS(10998), 1, + anon_sym_LPAREN2, + STATE(3546), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123118,14 +117845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -123147,7 +117877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -123160,27 +117889,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [17959] = 5, - ACTIONS(10557), 1, aux_sym__text_token3, - ACTIONS(10554), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(944), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [13655] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123191,7 +117916,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -123207,7 +117934,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -123221,43 +117947,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18025] = 5, - ACTIONS(10562), 1, aux_sym__text_token3, - ACTIONS(10560), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(931), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [13715] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -123282,26 +118005,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [18091] = 4, - ACTIONS(10564), 1, - anon_sym_LPAREN2, - STATE(3165), 1, - sym__directive_parameter, - ACTIONS(9936), 12, + aux_sym__text_token3, + [13775] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123312,11 +118032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -123327,7 +118049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -123342,8 +118064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18155] = 2, - ACTIONS(10124), 12, + [13835] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123356,8 +118078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123400,8 +118122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18215] = 2, - ACTIONS(10476), 12, + [13895] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123414,8 +118136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123432,8 +118154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123458,8 +118180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18275] = 2, - ACTIONS(10456), 12, + [13955] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123472,8 +118194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123490,8 +118212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -123516,8 +118238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18335] = 2, - ACTIONS(10460), 12, + [14015] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123530,8 +118252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123574,27 +118296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18395] = 5, - ACTIONS(10568), 1, - aux_sym__text_token3, - ACTIONS(10566), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(932), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [14075] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123605,7 +118322,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -123634,26 +118353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, - [18461] = 4, - ACTIONS(10570), 1, - anon_sym_LPAREN2, - STATE(3081), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [14135] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123664,11 +118380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -123679,7 +118397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -123695,8 +118412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18525] = 2, - ACTIONS(10472), 12, + [14195] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123709,8 +118426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123753,8 +118470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18585] = 2, - ACTIONS(10476), 12, + [14255] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123767,8 +118484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123811,8 +118528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18645] = 2, - ACTIONS(10456), 12, + [14315] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123825,8 +118542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123869,8 +118586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18705] = 2, - ACTIONS(10140), 12, + [14375] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123883,8 +118600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123901,12 +118618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -123927,8 +118644,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18765] = 2, - ACTIONS(10452), 12, + [14435] = 4, + ACTIONS(11004), 1, + anon_sym_LPAREN2, + STATE(3326), 1, + sym__directive_parameter, + ACTIONS(10490), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10488), 42, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym__text_token3, + [14499] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -123941,8 +118718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123985,27 +118762,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18825] = 5, - ACTIONS(10574), 1, - aux_sym__text_token3, - ACTIONS(10572), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(933), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [14559] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124016,11 +118788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124044,43 +118818,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, - [18891] = 4, - ACTIONS(10576), 1, - anon_sym_LPAREN2, - STATE(1963), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [14619] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124106,8 +118878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [18955] = 2, - ACTIONS(10468), 12, + [14679] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124120,8 +118892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124164,8 +118936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19015] = 2, - ACTIONS(10476), 12, + [14739] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124178,8 +118950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124195,8 +118967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124222,8 +118994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19075] = 2, - ACTIONS(10456), 12, + [14799] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124236,8 +119008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124253,8 +119025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124280,8 +119052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19135] = 2, - ACTIONS(10152), 12, + [14859] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124294,8 +119066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124312,8 +119084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124338,16 +119110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19195] = 5, - ACTIONS(10580), 1, + [14919] = 5, + ACTIONS(11012), 1, aux_sym__text_token3, - ACTIONS(10578), 2, + ACTIONS(11010), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(934), 2, + STATE(1704), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124357,8 +119129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124366,6 +119138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -124396,28 +119169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [19261] = 4, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(2913), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [14985] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124428,11 +119197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124457,10 +119228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [19325] = 2, - ACTIONS(10464), 12, + [15045] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124473,8 +119243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124517,8 +119287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19385] = 2, - ACTIONS(10160), 12, + [15105] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124531,8 +119301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124549,8 +119319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124575,27 +119345,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19445] = 5, - ACTIONS(10586), 1, - aux_sym__text_token3, - ACTIONS(10584), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(935), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [15165] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124606,11 +119371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124628,7 +119395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -124636,25 +119402,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [19511] = 4, - ACTIONS(10588), 1, - anon_sym_LPAREN2, - STATE(2829), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [15225] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124665,11 +119429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124693,11 +119459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19575] = 2, - ACTIONS(10164), 12, + [15285] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124710,8 +119475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124728,8 +119493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124754,8 +119519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19635] = 2, - ACTIONS(10156), 12, + [15345] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124768,8 +119533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124786,8 +119551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124812,27 +119577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19695] = 5, - ACTIONS(10592), 1, - aux_sym__text_token3, - ACTIONS(10590), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(936), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [15405] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124843,11 +119603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124864,7 +119626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -124873,25 +119634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [19761] = 4, - ACTIONS(10594), 1, - anon_sym_LPAREN2, - STATE(2745), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [15465] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124902,11 +119661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -124929,12 +119690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19825] = 2, - ACTIONS(10168), 12, + [15525] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -124947,8 +119707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124965,8 +119725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -124991,8 +119751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19885] = 2, - ACTIONS(10172), 12, + [15585] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125005,8 +119765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125022,9 +119782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125049,27 +119809,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [19945] = 5, - ACTIONS(10598), 1, - aux_sym__text_token3, - ACTIONS(10596), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(937), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [15645] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125080,6 +119835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -125090,6 +119846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -125099,7 +119856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -125110,25 +119866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20011] = 4, - ACTIONS(10600), 1, - anon_sym_LPAREN2, - STATE(2661), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [15705] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125139,11 +119893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125161,7 +119917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -125170,8 +119925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20075] = 2, - ACTIONS(10120), 12, + [15765] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125184,8 +119939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125202,8 +119957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125228,8 +119983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20135] = 2, - ACTIONS(10184), 12, + [15825] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125242,8 +119997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125260,8 +120015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125286,27 +120041,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20195] = 5, - ACTIONS(10604), 1, - aux_sym__text_token3, - ACTIONS(10602), 2, + [15885] = 2, + ACTIONS(10934), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(940), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10932), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym__text_token3, + [15945] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125317,11 +120125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125335,7 +120145,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -125347,25 +120156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20261] = 4, - ACTIONS(10606), 1, - anon_sym_LPAREN2, - STATE(2577), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [16005] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125376,11 +120183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125397,7 +120206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -125407,8 +120215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20325] = 2, - ACTIONS(10188), 12, + [16065] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125421,8 +120229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125439,8 +120247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125465,8 +120273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20385] = 2, - ACTIONS(10176), 12, + [16125] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125479,8 +120287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125497,8 +120305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125523,27 +120331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20445] = 5, - ACTIONS(10610), 1, - aux_sym__text_token3, - ACTIONS(10608), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(943), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [16185] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125554,11 +120357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125571,7 +120376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -125584,25 +120388,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20511] = 4, - ACTIONS(10612), 1, - anon_sym_LPAREN2, - STATE(2493), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [16245] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125613,11 +120415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125632,7 +120436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -125644,8 +120447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20575] = 2, - ACTIONS(10476), 12, + [16305] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125658,8 +120461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125672,11 +120475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125702,8 +120505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20635] = 2, - ACTIONS(10192), 12, + [16365] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125716,8 +120519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125730,12 +120533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125760,22 +120563,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20695] = 2, - ACTIONS(10196), 12, + [16425] = 5, + ACTIONS(11017), 1, + aux_sym__text_token3, + ACTIONS(11014), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(920), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125786,14 +120595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125817,28 +120624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [20755] = 5, - ACTIONS(10616), 1, - aux_sym__text_token3, - ACTIONS(10614), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(944), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [16491] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125849,11 +120650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125865,7 +120668,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -125879,25 +120681,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [20821] = 4, - ACTIONS(10618), 1, - anon_sym_LPAREN2, - STATE(2409), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + aux_sym__text_token3, + [16551] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125908,11 +120708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -125926,7 +120728,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -125939,8 +120740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20885] = 2, - ACTIONS(10204), 12, + [16611] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -125953,8 +120754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125971,8 +120772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -125997,8 +120798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [20945] = 2, - ACTIONS(10208), 12, + [16671] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126011,8 +120812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126029,8 +120830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -126055,25 +120856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21005] = 4, - ACTIONS(10620), 1, - anon_sym_LPAREN2, - STATE(2325), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [16731] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126084,11 +120882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -126101,7 +120901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -126115,8 +120914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21069] = 2, - ACTIONS(10212), 12, + [16791] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126129,8 +120928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126173,8 +120972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21129] = 2, - ACTIONS(10200), 12, + [16851] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126187,8 +120986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126231,8 +121030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21189] = 2, - ACTIONS(9942), 12, + [16911] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126245,8 +121044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126260,10 +121059,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -126289,25 +121088,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21249] = 4, - ACTIONS(10622), 1, - anon_sym_LPAREN2, - STATE(2241), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [16971] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126318,10 +121114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -126334,7 +121132,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -126349,8 +121146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21313] = 2, - ACTIONS(10216), 12, + [17031] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126363,8 +121160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126407,25 +121204,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21373] = 4, - ACTIONS(10624), 1, - anon_sym_LPAREN2, - STATE(2199), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [17091] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126435,12 +121229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -126467,8 +121262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21437] = 2, - ACTIONS(10468), 12, + [17151] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126481,8 +121276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126500,6 +121295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -126508,7 +121304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126525,8 +121320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21497] = 2, - ACTIONS(10464), 12, + [17211] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126539,8 +121334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126558,6 +121353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -126566,7 +121362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126583,22 +121378,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21557] = 2, - ACTIONS(10472), 12, + [17271] = 5, + ACTIONS(11022), 1, + aux_sym__text_token3, + ACTIONS(11020), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(920), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126609,7 +121410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -126624,7 +121424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126640,9 +121439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [21617] = 2, - ACTIONS(10460), 12, + [17337] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126655,8 +121453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126674,6 +121472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -126682,7 +121481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126699,8 +121497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21677] = 2, - ACTIONS(10452), 12, + [17397] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126713,8 +121511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126736,11 +121534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126757,8 +121555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21737] = 2, - ACTIONS(10124), 12, + [17457] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126771,8 +121569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126790,6 +121588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -126798,7 +121597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126815,22 +121613,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [21797] = 2, - ACTIONS(10448), 12, + [17517] = 5, + ACTIONS(11027), 1, + aux_sym__text_token3, + ACTIONS(11024), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(938), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 40, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126841,7 +121645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -126856,9 +121659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -126872,17 +121674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [17583] = 5, + ACTIONS(11033), 1, aux_sym__text_token3, - [21857] = 5, - ACTIONS(10628), 1, - aux_sym__text_token3, - ACTIONS(10626), 2, + ACTIONS(11030), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(1824), 2, + STATE(939), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -126892,8 +121693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126901,7 +121702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -126920,6 +121720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -126934,33 +121735,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [21923] = 2, - ACTIONS(10444), 12, + [17649] = 5, + ACTIONS(11039), 1, + aux_sym__text_token3, + ACTIONS(11036), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(940), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -126975,7 +121781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -126991,23 +121796,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [17715] = 5, + ACTIONS(11045), 1, aux_sym__text_token3, - [21983] = 2, - ACTIONS(10440), 12, + ACTIONS(11042), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(941), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127018,7 +121827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127033,7 +121841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127049,23 +121856,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, + [17781] = 5, + ACTIONS(11051), 1, aux_sym__text_token3, - [22043] = 2, - ACTIONS(10436), 12, + ACTIONS(11048), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(942), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127076,7 +121888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127091,7 +121902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127106,24 +121916,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, + [17847] = 5, + ACTIONS(11057), 1, aux_sym__text_token3, - [22103] = 2, - ACTIONS(10428), 12, + ACTIONS(11054), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(943), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127134,7 +121949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127149,7 +121963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127163,25 +121976,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [17913] = 5, + ACTIONS(11063), 1, aux_sym__text_token3, - [22163] = 2, - ACTIONS(10424), 12, + ACTIONS(11060), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(944), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127192,7 +122010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127207,7 +122024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127216,6 +122032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -127223,23 +122040,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [17979] = 5, + ACTIONS(11069), 1, aux_sym__text_token3, - [22223] = 2, - ACTIONS(10420), 12, + ACTIONS(11066), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(945), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127250,7 +122071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127265,7 +122085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127273,6 +122092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -127281,23 +122101,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [18045] = 5, + ACTIONS(11075), 1, aux_sym__text_token3, - [22283] = 2, - ACTIONS(10416), 12, + ACTIONS(11072), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(946), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127308,7 +122132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127323,12 +122146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -127339,23 +122162,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [18111] = 5, + ACTIONS(11080), 1, aux_sym__text_token3, - [22343] = 2, - ACTIONS(10406), 12, + ACTIONS(11078), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(938), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 10, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 40, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127366,7 +122194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127381,9 +122208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -127397,23 +122223,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [18177] = 5, + ACTIONS(11085), 1, aux_sym__text_token3, - [22403] = 2, - ACTIONS(10402), 12, + ACTIONS(11082), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(948), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127424,7 +122254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127439,11 +122268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -127455,23 +122284,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [18243] = 5, + ACTIONS(11090), 1, aux_sym__text_token3, - [22463] = 2, - ACTIONS(10398), 12, + ACTIONS(11088), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(939), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127482,7 +122315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127497,8 +122329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -127513,23 +122345,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [18309] = 5, + ACTIONS(11095), 1, aux_sym__text_token3, - [22523] = 2, - ACTIONS(10394), 12, + ACTIONS(11092), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(950), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127540,7 +122376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127555,10 +122390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -127571,23 +122406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [22583] = 2, - ACTIONS(9942), 12, + [18375] = 4, + ACTIONS(11098), 1, + anon_sym_LPAREN2, + STATE(3230), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127598,7 +122436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127609,7 +122446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -127630,22 +122466,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [22643] = 2, - ACTIONS(10390), 12, + [18439] = 4, + ACTIONS(11100), 1, + anon_sym_LPAREN2, + STATE(3094), 1, + sym__directive_parameter, + ACTIONS(10490), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127656,7 +122496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127671,9 +122510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -127688,8 +122526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [22703] = 2, - ACTIONS(10386), 12, + [18503] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127702,8 +122540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127721,6 +122559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -127729,7 +122568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127746,8 +122584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [22763] = 2, - ACTIONS(10382), 12, + [18563] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127760,8 +122598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127779,6 +122617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -127787,7 +122626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127804,8 +122642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [22823] = 2, - ACTIONS(10378), 12, + [18623] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -127818,8 +122656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127837,6 +122675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -127845,7 +122684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127862,22 +122700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [22883] = 2, - ACTIONS(10374), 12, + [18683] = 5, + ACTIONS(11105), 1, + aux_sym__text_token3, + ACTIONS(11102), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(956), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127888,7 +122731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127903,9 +122745,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -127919,34 +122761,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [18749] = 5, + ACTIONS(11110), 1, aux_sym__text_token3, - [22943] = 2, - ACTIONS(10370), 12, + ACTIONS(11108), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(940), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -127961,7 +122807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -127977,23 +122822,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [23003] = 2, - ACTIONS(10366), 12, + [18815] = 4, + ACTIONS(11112), 1, + anon_sym_LPAREN2, + STATE(3012), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128004,7 +122851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128019,8 +122865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -128036,8 +122882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23063] = 2, - ACTIONS(10362), 12, + [18879] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128050,8 +122896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128069,6 +122915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -128077,7 +122924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128094,8 +122940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23123] = 2, - ACTIONS(10354), 12, + [18939] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128108,8 +122954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128126,6 +122972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -128135,7 +122982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128152,8 +122998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23183] = 2, - ACTIONS(10432), 12, + [18999] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128166,8 +123012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128184,6 +123030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, @@ -128193,7 +123040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128210,8 +123056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23243] = 2, - ACTIONS(10346), 12, + [19059] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128224,8 +123070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128243,6 +123089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -128251,7 +123098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128268,22 +123114,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23303] = 2, - ACTIONS(10342), 12, + [19119] = 5, + ACTIONS(11116), 1, + aux_sym__text_token3, + ACTIONS(11114), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(941), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128294,7 +123145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128309,7 +123159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128325,37 +123174,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [23363] = 2, - ACTIONS(10456), 12, + anon_sym_ATendvolt, + [19185] = 4, + ACTIONS(11118), 1, + anon_sym_LPAREN2, + STATE(2930), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -128384,8 +123235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23423] = 2, - ACTIONS(10338), 12, + [19249] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128398,8 +123249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128417,6 +123268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -128425,7 +123277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128442,8 +123293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23483] = 2, - ACTIONS(10334), 12, + [19309] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128456,8 +123307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128470,6 +123321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -128483,7 +123335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128500,8 +123351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23543] = 2, - ACTIONS(10330), 12, + [19369] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128514,8 +123365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128531,6 +123382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -128541,7 +123393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128558,8 +123409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23603] = 2, - ACTIONS(10324), 12, + [19429] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128572,8 +123423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128589,6 +123440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, @@ -128599,7 +123451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128616,22 +123467,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23663] = 2, - ACTIONS(10320), 12, + [19489] = 5, + ACTIONS(11122), 1, + aux_sym__text_token3, + ACTIONS(11120), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(942), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128642,7 +123498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128657,7 +123512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128672,24 +123526,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [23723] = 2, - ACTIONS(10316), 12, + [19555] = 4, + ACTIONS(11124), 1, + anon_sym_LPAREN2, + STATE(2848), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128700,7 +123557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128715,7 +123571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128731,9 +123586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [23783] = 2, - ACTIONS(10312), 12, + [19619] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128746,8 +123602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128765,6 +123621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -128773,7 +123630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128790,8 +123646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23843] = 2, - ACTIONS(10308), 12, + [19679] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128804,8 +123660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128823,6 +123679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -128831,7 +123688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128848,22 +123704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [23903] = 2, - ACTIONS(10304), 12, + [19739] = 5, + ACTIONS(11128), 1, + aux_sym__text_token3, + ACTIONS(11126), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(943), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128874,7 +123735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128889,7 +123749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128903,25 +123762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [23963] = 2, - ACTIONS(10300), 12, + [19805] = 4, + ACTIONS(11130), 1, + anon_sym_LPAREN2, + STATE(2766), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128932,7 +123794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -128947,7 +123808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -128962,10 +123822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24023] = 2, - ACTIONS(10296), 12, + [19869] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -128978,8 +123839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128997,6 +123858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129005,7 +123867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129022,8 +123883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24083] = 2, - ACTIONS(10292), 12, + [19929] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129036,8 +123897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129055,6 +123916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129063,7 +123925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129080,12 +123941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24143] = 4, - ACTIONS(10630), 1, - anon_sym_LPAREN2, - STATE(3527), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [19989] = 5, + ACTIONS(11134), 1, + aux_sym__text_token3, + ACTIONS(11132), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(944), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129095,16 +123960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -129132,6 +123994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -129139,23 +124002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [24207] = 2, - ACTIONS(10288), 12, + [20055] = 4, + ACTIONS(11136), 1, + anon_sym_LPAREN2, + STATE(2684), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129166,7 +124031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129181,7 +124045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129195,25 +124058,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24267] = 2, - ACTIONS(10284), 12, + [20119] = 4, + ACTIONS(11138), 1, + anon_sym_LPAREN2, + STATE(2173), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129223,8 +124090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129239,7 +124106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129256,8 +124122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24327] = 2, - ACTIONS(10280), 12, + [20183] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129270,8 +124136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129285,6 +124151,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -129297,7 +124164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129314,8 +124180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24387] = 2, - ACTIONS(10140), 12, + [20243] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129328,8 +124194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129347,11 +124213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -129372,22 +124238,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24447] = 2, - ACTIONS(10276), 12, + [20303] = 5, + ACTIONS(11142), 1, + aux_sym__text_token3, + ACTIONS(11140), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(945), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129398,7 +124269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129413,7 +124283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129421,6 +124290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -129429,23 +124299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [24507] = 2, - ACTIONS(10272), 12, + [20369] = 4, + ACTIONS(11144), 1, + anon_sym_LPAREN2, + STATE(2602), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129456,7 +124328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129471,7 +124342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129480,6 +124350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -129488,8 +124359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24567] = 2, - ACTIONS(10350), 12, + [20433] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129502,8 +124373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129521,6 +124392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129529,7 +124401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129546,8 +124417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24627] = 2, - ACTIONS(10268), 12, + [20493] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129560,8 +124431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129579,6 +124450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129587,7 +124459,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129604,22 +124475,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24687] = 2, - ACTIONS(10264), 12, + [20553] = 5, + ACTIONS(11148), 1, + aux_sym__text_token3, + ACTIONS(11146), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(946), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129630,7 +124506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129645,12 +124520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -129661,23 +124536,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + [20619] = 5, + ACTIONS(11152), 1, aux_sym__text_token3, - [24747] = 2, - ACTIONS(10260), 12, + ACTIONS(11150), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1787), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129686,9 +124565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129703,7 +124582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129719,23 +124597,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [24807] = 2, - ACTIONS(10256), 12, + [20685] = 4, + ACTIONS(11154), 1, + anon_sym_LPAREN2, + STATE(2520), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129746,7 +124626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129761,7 +124640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129769,6 +124647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -129778,8 +124657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24867] = 2, - ACTIONS(10252), 12, + [20749] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129792,8 +124671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129811,6 +124690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129819,7 +124699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129836,8 +124715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24927] = 2, - ACTIONS(10248), 12, + [20809] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129850,8 +124729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129869,6 +124748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129877,7 +124757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -129894,16 +124773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [24987] = 5, - ACTIONS(10635), 1, + [20869] = 5, + ACTIONS(11158), 1, aux_sym__text_token3, - ACTIONS(10632), 2, + ACTIONS(11156), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(1059), 2, + STATE(948), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129913,8 +124792,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATendforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + [20935] = 4, + ACTIONS(11160), 1, + anon_sym_LPAREN2, + STATE(2438), 1, + sym__directive_parameter, + ACTIONS(10490), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129925,7 +124863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -129945,6 +124882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -129955,8 +124893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [25053] = 2, - ACTIONS(10244), 12, + aux_sym__text_token3, + [20999] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -129969,8 +124908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129988,6 +124927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -129996,7 +124936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130013,8 +124952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25113] = 2, - ACTIONS(10240), 12, + [21059] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130027,8 +124966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130046,6 +124985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130054,7 +124994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130071,22 +125010,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25173] = 2, - ACTIONS(10236), 12, + [21119] = 5, + ACTIONS(11164), 1, + aux_sym__text_token3, + ACTIONS(11162), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(950), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130097,7 +125041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130112,10 +125055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -130128,23 +125071,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [25233] = 2, - ACTIONS(10232), 12, + [21185] = 4, + ACTIONS(11166), 1, + anon_sym_LPAREN2, + STATE(2356), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130155,7 +125100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130170,11 +125114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -130187,8 +125131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25293] = 2, - ACTIONS(10228), 12, + [21249] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130201,8 +125145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130220,6 +125164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130228,7 +125173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130245,8 +125189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25353] = 2, - ACTIONS(10224), 12, + [21309] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130259,8 +125203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130282,11 +125226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130303,8 +125247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25413] = 2, - ACTIONS(10220), 12, + [21369] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130317,8 +125261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130333,6 +125277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -130344,7 +125289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130361,8 +125305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25473] = 2, - ACTIONS(10216), 12, + [21429] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130375,8 +125319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130394,6 +125338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130402,7 +125347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130419,22 +125363,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25533] = 2, - ACTIONS(10212), 12, + [21489] = 5, + ACTIONS(11170), 1, + aux_sym__text_token3, + ACTIONS(11168), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(956), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130445,7 +125394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130460,9 +125408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -130476,23 +125424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [25593] = 2, - ACTIONS(10208), 12, + [21555] = 4, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + STATE(2274), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130503,7 +125453,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130518,10 +125467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -130535,22 +125484,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25653] = 2, - ACTIONS(10204), 12, + [21619] = 5, + ACTIONS(11177), 1, + aux_sym__text_token3, + ACTIONS(11174), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1003), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130558,10 +125512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130576,7 +125530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130592,9 +125545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [25713] = 2, - ACTIONS(10200), 12, + [21685] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130607,8 +125559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130626,6 +125578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130634,7 +125587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130651,22 +125603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25773] = 2, - ACTIONS(10196), 12, + [21745] = 4, + ACTIONS(11180), 1, + anon_sym_LPAREN2, + STATE(2192), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130677,7 +125632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -130692,9 +125646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -130709,8 +125663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25833] = 2, - ACTIONS(10192), 12, + [21809] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130723,8 +125677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130742,6 +125696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130750,7 +125705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130767,8 +125721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25893] = 2, - ACTIONS(10188), 12, + [21869] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130781,8 +125735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130825,8 +125779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [25953] = 2, - ACTIONS(10184), 12, + [21929] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130839,8 +125793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130883,8 +125837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26013] = 2, - ACTIONS(10224), 12, + [21989] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130897,8 +125851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130916,7 +125870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -130925,6 +125878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130941,8 +125895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26073] = 2, - ACTIONS(10176), 12, + [22049] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -130955,8 +125909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130970,6 +125924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -130982,7 +125937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -130999,8 +125953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26133] = 2, - ACTIONS(10172), 12, + [22109] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131013,8 +125967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131057,8 +126011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26193] = 2, - ACTIONS(10476), 12, + [22169] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131071,8 +126025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131086,7 +126040,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -131099,6 +126052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131115,8 +126069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26253] = 2, - ACTIONS(10168), 12, + [22229] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131129,8 +126083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131173,8 +126127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26313] = 2, - ACTIONS(10120), 12, + [22289] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131187,8 +126141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131231,8 +126185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26373] = 2, - ACTIONS(10164), 12, + [22349] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131245,8 +126199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131289,8 +126243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26433] = 2, - ACTIONS(10160), 12, + [22409] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131303,8 +126257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131347,8 +126301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26493] = 2, - ACTIONS(10156), 12, + [22469] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131361,8 +126315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131405,8 +126359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26553] = 2, - ACTIONS(10228), 12, + [22529] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131419,8 +126373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131438,7 +126392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -131447,6 +126400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131463,8 +126417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26613] = 2, - ACTIONS(10220), 12, + [22589] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131477,8 +126431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131496,7 +126450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -131505,6 +126458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131521,8 +126475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26673] = 2, - ACTIONS(10152), 12, + [22649] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131535,8 +126489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131579,8 +126533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26733] = 2, - ACTIONS(10468), 12, + [22709] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131593,8 +126547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131619,8 +126573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131637,8 +126591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26793] = 2, - ACTIONS(10464), 12, + [22769] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131651,8 +126605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131677,8 +126631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131695,8 +126649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26853] = 2, - ACTIONS(10472), 12, + [22829] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131709,8 +126663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131735,8 +126689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131753,8 +126707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26913] = 2, - ACTIONS(10436), 12, + [22889] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131767,8 +126721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131786,7 +126740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -131795,6 +126748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131811,25 +126765,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [26973] = 4, - ACTIONS(10638), 1, - anon_sym_LPAREN2, - STATE(2115), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [22949] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131839,8 +126790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -131855,6 +126806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131871,8 +126823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27037] = 2, - ACTIONS(10460), 12, + [23009] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131885,8 +126837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131911,8 +126863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -131929,8 +126881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27097] = 2, - ACTIONS(10452), 12, + [23069] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -131943,8 +126895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131966,10 +126918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131987,8 +126939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27157] = 2, - ACTIONS(10124), 12, + [23129] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132001,8 +126953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132027,8 +126979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132045,8 +126997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27217] = 2, - ACTIONS(10448), 12, + [23189] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132059,8 +127011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132085,8 +127037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132103,8 +127055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27277] = 2, - ACTIONS(10444), 12, + [23249] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132117,8 +127069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132143,8 +127095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132161,8 +127113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27337] = 2, - ACTIONS(10440), 12, + [23309] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132175,8 +127127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132201,8 +127153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132219,8 +127171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27397] = 2, - ACTIONS(10436), 12, + [23369] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132233,8 +127185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132259,8 +127211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132277,27 +127229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27457] = 5, - ACTIONS(10642), 1, - aux_sym__text_token3, - ACTIONS(10640), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1909), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [23429] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132306,9 +127253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -132323,6 +127270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132338,8 +127286,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [27523] = 2, - ACTIONS(10428), 12, + aux_sym__text_token3, + [23489] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132352,8 +127301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132378,8 +127327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132396,8 +127345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27583] = 2, - ACTIONS(10424), 12, + [23549] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132410,8 +127359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132436,8 +127385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132454,8 +127403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27643] = 2, - ACTIONS(10420), 12, + [23609] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132468,8 +127417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132494,8 +127443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132512,8 +127461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27703] = 2, - ACTIONS(10416), 12, + [23669] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132526,8 +127475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132552,8 +127501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132570,8 +127519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27763] = 2, - ACTIONS(10406), 12, + [23729] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132584,8 +127533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132610,8 +127559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132628,8 +127577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27823] = 2, - ACTIONS(10402), 12, + [23789] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132642,8 +127591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132668,8 +127617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132686,8 +127635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27883] = 2, - ACTIONS(10398), 12, + [23849] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132700,8 +127649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132726,8 +127675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132744,8 +127693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [27943] = 2, - ACTIONS(10464), 12, + [23909] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132758,8 +127707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132777,7 +127726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -132786,6 +127734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132802,8 +127751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28003] = 2, - ACTIONS(10394), 12, + [23969] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132816,8 +127765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132842,8 +127791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132860,8 +127809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28063] = 2, - ACTIONS(10390), 12, + [24029] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132874,8 +127823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132900,8 +127849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132918,8 +127867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28123] = 2, - ACTIONS(10472), 12, + [24089] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132932,8 +127881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132951,7 +127900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -132960,6 +127908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -132976,8 +127925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28183] = 2, - ACTIONS(9942), 12, + [24149] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -132990,8 +127939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133014,10 +127963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133034,8 +127983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28243] = 2, - ACTIONS(10460), 12, + [24209] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133048,8 +127997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133067,7 +128016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -133076,6 +128024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133092,8 +128041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28303] = 2, - ACTIONS(10386), 12, + [24269] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133106,8 +128055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133132,8 +128081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133150,8 +128099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28363] = 2, - ACTIONS(10382), 12, + [24329] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133164,8 +128113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133190,8 +128139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133208,8 +128157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28423] = 2, - ACTIONS(10378), 12, + [24389] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133222,8 +128171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133248,8 +128197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133266,8 +128215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28483] = 2, - ACTIONS(10374), 12, + [24449] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133280,8 +128229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133306,8 +128255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133324,8 +128273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28543] = 2, - ACTIONS(10370), 12, + [24509] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133338,8 +128287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133364,8 +128313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133382,8 +128331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28603] = 2, - ACTIONS(10366), 12, + [24569] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133396,8 +128345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133422,8 +128371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133440,8 +128389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28663] = 2, - ACTIONS(10362), 12, + [24629] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133454,8 +128403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133480,8 +128429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133498,8 +128447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28723] = 2, - ACTIONS(10354), 12, + [24689] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133512,8 +128461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133538,8 +128487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133556,8 +128505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28783] = 2, - ACTIONS(10432), 12, + [24749] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133570,8 +128519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133596,8 +128545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133614,8 +128563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28843] = 2, - ACTIONS(10346), 12, + [24809] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133628,8 +128577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133654,8 +128603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133672,8 +128621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28903] = 2, - ACTIONS(10342), 12, + [24869] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133686,8 +128635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133701,6 +128650,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -133712,7 +128662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133730,8 +128679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [28963] = 2, - ACTIONS(10456), 12, + [24929] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133744,8 +128693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133760,7 +128709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -133772,6 +128720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133788,8 +128737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29023] = 2, - ACTIONS(10338), 12, + [24989] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133802,8 +128751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133828,8 +128777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133846,8 +128795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29083] = 2, - ACTIONS(10334), 12, + [25049] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133860,8 +128809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133886,8 +128835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133904,8 +128853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29143] = 2, - ACTIONS(10452), 12, + [25109] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133918,8 +128867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133937,7 +128886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -133946,6 +128894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -133962,8 +128911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29203] = 2, - ACTIONS(10330), 12, + [25169] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -133976,8 +128925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134002,8 +128951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134020,8 +128969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29263] = 2, - ACTIONS(10124), 12, + [25229] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134034,8 +128983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134078,8 +129027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29323] = 2, - ACTIONS(10324), 12, + [25289] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134092,8 +129041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134118,8 +129067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134136,8 +129085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29383] = 2, - ACTIONS(10320), 12, + [25349] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134150,8 +129099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134176,8 +129125,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134194,8 +129143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29443] = 2, - ACTIONS(10316), 12, + [25409] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134208,8 +129157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134234,8 +129183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134252,8 +129201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29503] = 2, - ACTIONS(10312), 12, + [25469] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134266,8 +129215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134292,8 +129241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134310,8 +129259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29563] = 2, - ACTIONS(10308), 12, + [25529] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134324,8 +129273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134350,8 +129299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134368,8 +129317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29623] = 2, - ACTIONS(10304), 12, + [25589] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134382,8 +129331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134408,8 +129357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134426,22 +129375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29683] = 2, - ACTIONS(10300), 12, + [25649] = 4, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + STATE(2091), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134451,8 +129403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -134466,7 +129418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134484,8 +129435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29743] = 2, - ACTIONS(10448), 12, + [25713] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134498,8 +129449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134517,7 +129468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -134526,6 +129476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134542,8 +129493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29803] = 2, - ACTIONS(10296), 12, + [25773] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134556,8 +129507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134582,8 +129533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134600,8 +129551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29863] = 2, - ACTIONS(10292), 12, + [25833] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134614,8 +129565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134640,8 +129591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134658,8 +129609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29923] = 2, - ACTIONS(10288), 12, + [25893] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134672,8 +129623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134698,8 +129649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134716,8 +129667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [29983] = 2, - ACTIONS(10140), 12, + [25953] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134730,8 +129681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134754,10 +129705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134774,8 +129725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30043] = 2, - ACTIONS(10284), 12, + [26013] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134788,8 +129739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134814,8 +129765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134832,8 +129783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30103] = 2, - ACTIONS(10444), 12, + [26073] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134846,8 +129797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134865,7 +129816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -134874,6 +129824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -134890,22 +129841,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30163] = 2, - ACTIONS(10280), 12, + [26133] = 5, + ACTIONS(11186), 1, + aux_sym__text_token3, + ACTIONS(11184), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1870), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134915,8 +129871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -134930,7 +129886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134947,9 +129902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [30223] = 2, - ACTIONS(10276), 12, + [26199] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -134962,8 +129916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134988,8 +129942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135006,8 +129960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30283] = 2, - ACTIONS(10272), 12, + [26259] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135020,8 +129974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135046,8 +130000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135064,8 +130018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30343] = 2, - ACTIONS(10350), 12, + [26319] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135078,8 +130032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135097,6 +130051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -135104,7 +130059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135122,8 +130076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30403] = 2, - ACTIONS(10268), 12, + [26379] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135136,8 +130090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135162,8 +130116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135180,8 +130134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30463] = 2, - ACTIONS(10264), 12, + [26439] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135194,8 +130148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135220,8 +130174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135238,8 +130192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30523] = 2, - ACTIONS(10260), 12, + [26499] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135252,8 +130206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135278,8 +130232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135296,8 +130250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30583] = 2, - ACTIONS(10256), 12, + [26559] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135310,8 +130264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135336,8 +130290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135354,8 +130308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30643] = 2, - ACTIONS(10252), 12, + [26619] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135368,8 +130322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135394,8 +130348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135412,8 +130366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30703] = 2, - ACTIONS(10248), 12, + [26679] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135426,8 +130380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135452,8 +130406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135470,69 +130424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30763] = 5, - ACTIONS(10647), 1, - aux_sym__text_token3, - ACTIONS(10644), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1155), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATendprepend, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [30829] = 2, - ACTIONS(10244), 12, + [26739] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135545,8 +130438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135571,8 +130464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135589,8 +130482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30889] = 2, - ACTIONS(10240), 12, + [26799] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135603,8 +130496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135627,9 +130520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135647,8 +130540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [30949] = 2, - ACTIONS(10236), 12, + [26859] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135661,8 +130554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135680,6 +130573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -135687,7 +130581,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135705,8 +130598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31009] = 2, - ACTIONS(10232), 12, + [26919] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135719,8 +130612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135738,6 +130631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -135745,7 +130639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135763,8 +130656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31069] = 2, - ACTIONS(10228), 12, + [26979] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135777,8 +130670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135803,8 +130696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -135821,8 +130714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31129] = 2, - ACTIONS(10224), 12, + [27039] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135835,8 +130728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135879,8 +130772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31189] = 2, - ACTIONS(10220), 12, + [27099] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135893,8 +130786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135937,8 +130830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31249] = 2, - ACTIONS(10216), 12, + [27159] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -135951,8 +130844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135995,8 +130888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31309] = 2, - ACTIONS(10212), 12, + [27219] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136009,8 +130902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136053,8 +130946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31369] = 2, - ACTIONS(10208), 12, + [27279] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136067,8 +130960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136111,8 +131004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31429] = 2, - ACTIONS(10204), 12, + [27339] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136125,8 +131018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136169,8 +131062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31489] = 2, - ACTIONS(10200), 12, + [27399] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136183,8 +131076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136227,8 +131120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31549] = 2, - ACTIONS(10196), 12, + [27459] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136241,8 +131134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136285,8 +131178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31609] = 2, - ACTIONS(10192), 12, + [27519] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136299,8 +131192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136315,6 +131208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -136325,7 +131219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136343,8 +131236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31669] = 2, - ACTIONS(10188), 12, + [27579] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136357,8 +131250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136401,8 +131294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31729] = 2, - ACTIONS(10184), 12, + [27639] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136415,8 +131308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136459,8 +131352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31789] = 2, - ACTIONS(10476), 12, + [27699] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136473,8 +131366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136489,7 +131382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -136500,6 +131392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136517,8 +131410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31849] = 2, - ACTIONS(10236), 12, + [27759] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136531,8 +131424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136550,7 +131443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -136558,6 +131450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136575,33 +131468,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [31909] = 2, - ACTIONS(10176), 12, + [27819] = 5, + ACTIONS(11190), 1, + aux_sym__text_token3, + ACTIONS(11188), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1537), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -136615,7 +131513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136632,9 +131529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [31969] = 2, - ACTIONS(10172), 12, + [27885] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136647,8 +131543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136691,8 +131587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32029] = 2, - ACTIONS(10168), 12, + [27945] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136705,8 +131601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136749,8 +131645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32089] = 2, - ACTIONS(10120), 12, + [28005] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136763,8 +131659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136807,8 +131703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32149] = 2, - ACTIONS(10164), 12, + [28065] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136821,8 +131717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136865,8 +131761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32209] = 2, - ACTIONS(10160), 12, + [28125] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136879,8 +131775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136923,8 +131819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32269] = 2, - ACTIONS(10156), 12, + [28185] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136937,8 +131833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136981,8 +131877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32329] = 2, - ACTIONS(10240), 12, + [28245] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -136995,8 +131891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137014,7 +131910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -137022,6 +131917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137039,8 +131935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32389] = 2, - ACTIONS(10244), 12, + [28305] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137053,8 +131949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137072,7 +131968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -137080,6 +131975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137097,8 +131993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32449] = 2, - ACTIONS(10152), 12, + [28365] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137111,8 +132007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137155,8 +132051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32509] = 2, - ACTIONS(10440), 12, + [28425] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137169,8 +132065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137188,7 +132084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -137196,6 +132091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137213,25 +132109,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32569] = 4, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(2033), 1, - sym__directive_parameter, - ACTIONS(9936), 11, + [28485] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9934), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137242,7 +132135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -137256,6 +132149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137273,8 +132167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32633] = 2, - ACTIONS(10468), 12, + [28545] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137287,8 +132181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137311,8 +132205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -137331,8 +132225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32693] = 2, - ACTIONS(10464), 12, + [28605] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137345,8 +132239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137370,8 +132264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137389,8 +132283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32753] = 2, - ACTIONS(10472), 12, + [28665] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137403,8 +132297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137428,8 +132322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137447,8 +132341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32813] = 2, - ACTIONS(10460), 12, + [28725] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137461,8 +132355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137486,8 +132380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137505,8 +132399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32873] = 2, - ACTIONS(10452), 12, + [28785] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137519,8 +132413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137544,8 +132438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137563,8 +132457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32933] = 2, - ACTIONS(10124), 12, + [28845] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137577,8 +132471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137602,8 +132496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137621,8 +132515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [32993] = 2, - ACTIONS(10448), 12, + [28905] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137635,8 +132529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137660,8 +132554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137679,69 +132573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33053] = 5, - ACTIONS(10654), 1, - aux_sym__text_token3, - ACTIONS(10652), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1247), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATendPushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [33119] = 2, - ACTIONS(10444), 12, + [28965] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137754,8 +132587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137779,8 +132612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137798,8 +132631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33179] = 2, - ACTIONS(10440), 12, + [29025] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137812,8 +132645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137837,8 +132670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137856,8 +132689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33239] = 2, - ACTIONS(10436), 12, + [29085] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137870,8 +132703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137895,8 +132728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137914,8 +132747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33299] = 2, - ACTIONS(10428), 12, + [29145] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137928,8 +132761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137953,8 +132786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137972,8 +132805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33359] = 2, - ACTIONS(10424), 12, + [29205] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -137986,8 +132819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138011,8 +132844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138030,8 +132863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33419] = 2, - ACTIONS(10420), 12, + [29265] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138044,8 +132877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138069,8 +132902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138088,8 +132921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33479] = 2, - ACTIONS(10416), 12, + [29325] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138102,8 +132935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138127,8 +132960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138146,8 +132979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33539] = 2, - ACTIONS(10386), 12, + [29385] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138160,8 +132993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138179,7 +133012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -138187,6 +133019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138204,8 +133037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33599] = 2, - ACTIONS(10406), 12, + [29445] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138218,8 +133051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138243,8 +133076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138262,8 +133095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33659] = 2, - ACTIONS(10402), 12, + [29505] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138276,8 +133109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138301,8 +133134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138320,8 +133153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33719] = 2, - ACTIONS(9942), 12, + [29565] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138334,8 +133167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138359,8 +133192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138378,8 +133211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33779] = 2, - ACTIONS(10398), 12, + [29625] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138392,8 +133225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138417,8 +133250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138436,8 +133269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33839] = 2, - ACTIONS(10394), 12, + [29685] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138450,8 +133283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138475,8 +133308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138494,8 +133327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33899] = 2, - ACTIONS(10390), 12, + [29745] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138508,8 +133341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138533,8 +133366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138552,8 +133385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [33959] = 2, - ACTIONS(10386), 12, + [29805] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138566,8 +133399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138591,8 +133424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138610,8 +133443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34019] = 2, - ACTIONS(10382), 12, + [29865] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138624,8 +133457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138649,8 +133482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138668,8 +133501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34079] = 2, - ACTIONS(10378), 12, + [29925] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138682,8 +133515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138707,8 +133540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138726,8 +133559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34139] = 2, - ACTIONS(10374), 12, + [29985] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138740,8 +133573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138765,8 +133598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138784,8 +133617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34199] = 2, - ACTIONS(10370), 12, + [30045] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138798,8 +133631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138823,8 +133656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138842,8 +133675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34259] = 2, - ACTIONS(10366), 12, + [30105] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138856,8 +133689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138881,8 +133714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138900,8 +133733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34319] = 2, - ACTIONS(10362), 12, + [30165] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138914,8 +133747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138939,8 +133772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138958,8 +133791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34379] = 2, - ACTIONS(10354), 12, + [30225] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -138972,8 +133805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138997,8 +133830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139016,8 +133849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34439] = 2, - ACTIONS(10432), 12, + [30285] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139030,8 +133863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139055,8 +133888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139074,8 +133907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34499] = 2, - ACTIONS(10346), 12, + [30345] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139088,8 +133921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139104,6 +133937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -139113,7 +133947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139132,8 +133965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34559] = 2, - ACTIONS(10342), 12, + [30405] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139146,8 +133979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139171,8 +134004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139190,22 +134023,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34619] = 2, - ACTIONS(10428), 12, + [30465] = 5, + ACTIONS(11195), 1, + aux_sym__text_token3, + ACTIONS(11192), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1150), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139216,14 +134054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -139247,9 +134084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [34679] = 2, - ACTIONS(10338), 12, + [30531] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139262,8 +134098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139287,8 +134123,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139306,8 +134142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34739] = 2, - ACTIONS(10424), 12, + [30591] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139320,8 +134156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139339,7 +134175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -139347,6 +134182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139364,8 +134200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34799] = 2, - ACTIONS(10334), 12, + [30651] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139378,8 +134214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139403,8 +134239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139422,8 +134258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34859] = 2, - ACTIONS(10330), 12, + [30711] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139436,8 +134272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139461,8 +134297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139480,8 +134316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34919] = 2, - ACTIONS(10324), 12, + [30771] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139494,8 +134330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139519,8 +134355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139538,8 +134374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [34979] = 2, - ACTIONS(10320), 12, + [30831] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139552,8 +134388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139577,8 +134413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139596,8 +134432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35039] = 2, - ACTIONS(10316), 12, + [30891] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139610,8 +134446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139635,8 +134471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139654,8 +134490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35099] = 2, - ACTIONS(10312), 12, + [30951] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139668,8 +134504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139693,8 +134529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139712,8 +134548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35159] = 2, - ACTIONS(10308), 12, + [31011] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139726,8 +134562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139751,8 +134587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139770,8 +134606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35219] = 2, - ACTIONS(10304), 12, + [31071] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139784,8 +134620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139809,8 +134645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139828,22 +134664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35279] = 2, - ACTIONS(10300), 12, + [31131] = 4, + ACTIONS(11198), 1, + anon_sym_LPAREN2, + STATE(2006), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139854,7 +134693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -139867,7 +134706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -139886,8 +134724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35339] = 2, - ACTIONS(10296), 12, + [31195] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139900,8 +134738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139925,8 +134763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -139944,8 +134782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35399] = 2, - ACTIONS(10140), 12, + [31255] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -139958,8 +134796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139983,8 +134821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140002,8 +134840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35459] = 2, - ACTIONS(10292), 12, + [31315] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140016,8 +134854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140041,8 +134879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140060,8 +134898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35519] = 2, - ACTIONS(10420), 12, + [31375] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140074,8 +134912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140093,7 +134931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -140101,6 +134938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140118,8 +134956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35579] = 2, - ACTIONS(10288), 12, + [31435] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140132,8 +134970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140157,8 +134995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140176,8 +135014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35639] = 2, - ACTIONS(10284), 12, + [31495] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140190,8 +135028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140209,13 +135047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -140234,8 +135072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35699] = 2, - ACTIONS(10280), 12, + [31555] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140248,8 +135086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140273,8 +135111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140292,22 +135130,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35759] = 2, - ACTIONS(10276), 12, + [31615] = 5, + ACTIONS(11202), 1, + aux_sym__text_token3, + ACTIONS(11200), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1238), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140317,8 +135160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -140331,7 +135174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -140349,9 +135191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [35819] = 2, - ACTIONS(10272), 12, + [31681] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140364,8 +135205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140389,8 +135230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140408,8 +135249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35879] = 2, - ACTIONS(10350), 12, + [31741] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140422,8 +135263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140447,8 +135288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140466,8 +135307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35939] = 2, - ACTIONS(10268), 12, + [31801] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140480,8 +135321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140505,8 +135346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140524,8 +135365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [35999] = 2, - ACTIONS(10264), 12, + [31861] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140538,8 +135379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140563,8 +135404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140582,8 +135423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36059] = 2, - ACTIONS(10260), 12, + [31921] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140596,8 +135437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140621,8 +135462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140640,8 +135481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36119] = 2, - ACTIONS(10256), 12, + [31981] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140654,8 +135495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140679,8 +135520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140698,8 +135539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36179] = 2, - ACTIONS(10252), 12, + [32041] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140712,8 +135553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140731,13 +135572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -140756,8 +135597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36239] = 2, - ACTIONS(10248), 12, + [32101] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140770,8 +135611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140789,13 +135630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -140814,27 +135655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36299] = 5, - ACTIONS(10659), 1, - aux_sym__text_token3, - ACTIONS(10656), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1247), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [32161] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140844,8 +135680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -140859,6 +135695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140875,8 +135712,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [36365] = 2, - ACTIONS(10244), 12, + aux_sym__text_token3, + [32221] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140889,8 +135727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140933,8 +135771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36425] = 2, - ACTIONS(10240), 12, + [32281] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -140947,8 +135785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140991,8 +135829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36485] = 2, - ACTIONS(10236), 12, + [32341] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141005,8 +135843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141049,8 +135887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36545] = 2, - ACTIONS(10232), 12, + [32401] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141063,8 +135901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141107,8 +135945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36605] = 2, - ACTIONS(10228), 12, + [32461] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141121,8 +135959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141165,8 +136003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36665] = 2, - ACTIONS(10224), 12, + [32521] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141179,8 +136017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141223,8 +136061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36725] = 2, - ACTIONS(10220), 12, + [32581] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141237,8 +136075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141281,8 +136119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36785] = 2, - ACTIONS(10216), 12, + [32641] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141295,8 +136133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141339,8 +136177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36845] = 2, - ACTIONS(10212), 12, + [32701] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141353,8 +136191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141397,8 +136235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36905] = 2, - ACTIONS(10208), 12, + [32761] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141411,8 +136249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141455,8 +136293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [36965] = 2, - ACTIONS(10204), 12, + [32821] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141469,8 +136307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141513,8 +136351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37025] = 2, - ACTIONS(10200), 12, + [32881] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141527,8 +136365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141571,8 +136409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37085] = 2, - ACTIONS(10196), 12, + [32941] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141585,8 +136423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141629,8 +136467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37145] = 2, - ACTIONS(10192), 12, + [33001] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141643,8 +136481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141687,8 +136525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37205] = 2, - ACTIONS(10188), 12, + [33061] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141701,8 +136539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141720,13 +136558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -141745,8 +136583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37265] = 2, - ACTIONS(10184), 12, + [33121] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141759,8 +136597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141803,38 +136641,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37325] = 5, - ACTIONS(10665), 1, - aux_sym__text_token3, - ACTIONS(10662), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1264), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [33181] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -141847,6 +136680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -141864,8 +136698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [37391] = 2, - ACTIONS(10176), 12, + aux_sym__text_token3, + [33241] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141878,8 +136713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141922,8 +136757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37451] = 2, - ACTIONS(10172), 12, + [33301] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141936,8 +136771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141980,8 +136815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37511] = 2, - ACTIONS(10168), 12, + [33361] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -141994,8 +136829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142038,8 +136873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37571] = 2, - ACTIONS(10120), 12, + [33421] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142052,8 +136887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142096,8 +136931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37631] = 2, - ACTIONS(10164), 12, + [33481] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142110,8 +136945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142154,8 +136989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37691] = 2, - ACTIONS(10160), 12, + [33541] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142168,8 +137003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142212,8 +137047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37751] = 2, - ACTIONS(10156), 12, + [33601] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142226,8 +137061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142270,8 +137105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37811] = 2, - ACTIONS(10152), 12, + [33661] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142284,8 +137119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142298,7 +137133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142310,6 +137144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142328,8 +137163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37871] = 2, - ACTIONS(10416), 12, + [33721] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142342,8 +137177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142361,13 +137196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142386,8 +137221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37931] = 2, - ACTIONS(10406), 12, + [33781] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142400,8 +137235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142419,13 +137254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142444,8 +137279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [37991] = 2, - ACTIONS(10156), 12, + [33841] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142458,8 +137293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142472,7 +137307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142484,6 +137318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142502,8 +137337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38051] = 2, - ACTIONS(10160), 12, + [33901] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142516,8 +137351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142530,7 +137365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142542,6 +137376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142560,8 +137395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38111] = 2, - ACTIONS(10164), 12, + [33961] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142574,8 +137409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142588,7 +137423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142600,6 +137434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142618,35 +137453,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38171] = 2, - ACTIONS(10120), 12, + [34021] = 4, + ACTIONS(11204), 1, + anon_sym_LPAREN2, + STATE(2280), 1, + sym__directive_parameter, + ACTIONS(10490), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10488), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142676,8 +137513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38231] = 2, - ACTIONS(10168), 12, + [34085] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142690,8 +137527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142704,7 +137541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142716,6 +137552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142734,8 +137571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38291] = 2, - ACTIONS(10172), 12, + [34145] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142748,8 +137585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142762,7 +137599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142774,6 +137610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142792,8 +137629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38351] = 2, - ACTIONS(10176), 12, + [34205] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142806,8 +137643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142820,7 +137657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142832,6 +137668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142850,27 +137687,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38411] = 5, - ACTIONS(10670), 1, - aux_sym__text_token3, - ACTIONS(10668), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1155), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, + [34265] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142880,8 +137712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -142894,6 +137726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142911,8 +137744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [38477] = 2, - ACTIONS(10184), 12, + aux_sym__text_token3, + [34325] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142925,8 +137759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142939,7 +137773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -142951,6 +137784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -142969,8 +137803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38537] = 2, - ACTIONS(10188), 12, + [34385] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -142983,8 +137817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142997,7 +137831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143009,6 +137842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143027,8 +137861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38597] = 2, - ACTIONS(10192), 12, + [34445] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143041,8 +137875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143055,7 +137889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143067,6 +137900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143085,8 +137919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38657] = 2, - ACTIONS(10196), 12, + [34505] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143099,8 +137933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143113,7 +137947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143125,6 +137958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143143,8 +137977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38717] = 2, - ACTIONS(10200), 12, + [34565] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143157,8 +137991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143171,7 +138005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143183,6 +138016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143201,8 +138035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38777] = 2, - ACTIONS(10204), 12, + [34625] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143215,8 +138049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143229,7 +138063,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143241,6 +138074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143259,8 +138093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38837] = 2, - ACTIONS(10208), 12, + [34685] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143273,8 +138107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143287,7 +138121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143299,6 +138132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143317,8 +138151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38897] = 2, - ACTIONS(10402), 12, + [34745] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143331,8 +138165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143350,13 +138184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143375,8 +138209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [38957] = 2, - ACTIONS(10212), 12, + [34805] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143389,8 +138223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143403,7 +138237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143415,6 +138248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143433,8 +138267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39017] = 2, - ACTIONS(10216), 12, + [34865] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143447,8 +138281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143461,7 +138295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143473,6 +138306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143491,8 +138325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39077] = 2, - ACTIONS(9942), 12, + [34925] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143505,8 +138339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143530,8 +138364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -143549,8 +138383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39137] = 2, - ACTIONS(10398), 12, + [34985] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143563,8 +138397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143582,13 +138416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143607,8 +138441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39197] = 2, - ACTIONS(10220), 12, + [35045] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143621,8 +138455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143635,7 +138469,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143647,6 +138480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143665,8 +138499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39257] = 2, - ACTIONS(10224), 12, + [35105] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143679,8 +138513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143693,7 +138527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143705,6 +138538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143723,8 +138557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39317] = 2, - ACTIONS(10228), 12, + [35165] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143737,8 +138571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143751,7 +138585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143763,6 +138596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143781,8 +138615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39377] = 2, - ACTIONS(10232), 12, + [35225] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143795,8 +138629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143809,7 +138643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143821,6 +138654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143839,8 +138673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39437] = 2, - ACTIONS(10236), 12, + [35285] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143853,8 +138687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143867,7 +138701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143879,6 +138712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143897,8 +138731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39497] = 2, - ACTIONS(10240), 12, + [35345] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143911,8 +138745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143925,7 +138759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143937,6 +138770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -143955,8 +138789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39557] = 2, - ACTIONS(10244), 12, + [35405] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -143969,8 +138803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -143983,7 +138817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -143995,6 +138828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144013,8 +138847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39617] = 2, - ACTIONS(10248), 12, + [35465] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144027,8 +138861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144046,13 +138880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144071,8 +138905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39677] = 2, - ACTIONS(10248), 12, + [35525] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144085,8 +138919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144099,7 +138933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144111,6 +138944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144129,8 +138963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39737] = 2, - ACTIONS(10252), 12, + [35585] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144143,8 +138977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144157,7 +138991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144169,6 +139002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144187,8 +139021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39797] = 2, - ACTIONS(10256), 12, + [35645] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144201,8 +139035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144215,7 +139049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144227,6 +139060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144245,8 +139079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39857] = 2, - ACTIONS(10456), 12, + [35705] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144259,8 +139093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144279,12 +139113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144303,22 +139137,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [39917] = 2, - ACTIONS(10260), 12, + [35765] = 5, + ACTIONS(11209), 1, + aux_sym__text_token3, + ACTIONS(11206), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1238), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144328,10 +139167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144360,9 +139198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [39977] = 2, - ACTIONS(10264), 12, + [35831] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144375,8 +139212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144389,7 +139226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144401,6 +139237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144419,8 +139256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40037] = 2, - ACTIONS(10394), 12, + [35891] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144433,8 +139270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144452,13 +139289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144477,8 +139314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40097] = 2, - ACTIONS(10268), 12, + [35951] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144491,8 +139328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144505,7 +139342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144517,6 +139353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144535,8 +139372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40157] = 2, - ACTIONS(10390), 12, + [36011] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144549,8 +139386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144568,13 +139405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144593,8 +139430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40217] = 2, - ACTIONS(10350), 12, + [36071] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144607,8 +139444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144621,7 +139458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144633,6 +139469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144651,8 +139488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40277] = 2, - ACTIONS(10272), 12, + [36131] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144665,8 +139502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144679,7 +139516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144691,6 +139527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144709,8 +139546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40337] = 2, - ACTIONS(10276), 12, + [36191] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144723,8 +139560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144737,7 +139574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144749,6 +139585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144767,8 +139604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40397] = 2, - ACTIONS(10280), 12, + [36251] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144781,8 +139618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144795,7 +139632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144807,6 +139643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144825,8 +139662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40457] = 2, - ACTIONS(10284), 12, + [36311] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144839,8 +139676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144853,7 +139690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144865,6 +139701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144883,8 +139720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40517] = 2, - ACTIONS(10288), 12, + [36371] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144897,8 +139734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144941,8 +139778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40577] = 2, - ACTIONS(10292), 12, + [36431] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -144955,8 +139792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -144969,7 +139806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -144981,6 +139817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -144999,8 +139836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40637] = 2, - ACTIONS(10296), 12, + [36491] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145013,8 +139850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145027,12 +139864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -145057,8 +139894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40697] = 2, - ACTIONS(10300), 12, + [36551] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145071,8 +139908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145115,8 +139952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40757] = 2, - ACTIONS(10304), 12, + [36611] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145129,8 +139966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145173,8 +140010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40817] = 2, - ACTIONS(10140), 12, + [36671] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145187,8 +140024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145201,6 +140038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -145213,7 +140051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -145231,8 +140068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40877] = 2, - ACTIONS(10308), 12, + [36731] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145245,8 +140082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145289,8 +140126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40937] = 2, - ACTIONS(10354), 12, + [36791] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145303,8 +140140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145317,12 +140154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -145347,8 +140184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [40997] = 2, - ACTIONS(10312), 12, + [36851] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145361,8 +140198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145405,8 +140242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41057] = 2, - ACTIONS(10316), 12, + [36911] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145419,8 +140256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145463,22 +140300,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41117] = 2, - ACTIONS(10320), 12, + [36971] = 5, + ACTIONS(11214), 1, + aux_sym__text_token3, + ACTIONS(11212), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1150), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10504), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10502), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145489,9 +140331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -145520,9 +140361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [41177] = 2, - ACTIONS(10324), 12, + [37037] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145535,8 +140375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145579,8 +140419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41237] = 2, - ACTIONS(10330), 12, + [37097] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145593,8 +140433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145637,8 +140477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41297] = 2, - ACTIONS(10334), 12, + [37157] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145651,8 +140491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145695,8 +140535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41357] = 2, - ACTIONS(10338), 12, + [37217] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145709,8 +140549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145753,8 +140593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41417] = 2, - ACTIONS(10342), 12, + [37277] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145767,8 +140607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145811,8 +140651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41477] = 2, - ACTIONS(10346), 12, + [37337] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145825,8 +140665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145869,8 +140709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41537] = 2, - ACTIONS(10432), 12, + [37397] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145883,8 +140723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145897,12 +140737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -145927,8 +140767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41597] = 2, - ACTIONS(10354), 12, + [37457] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145941,8 +140781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -145985,8 +140825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41657] = 2, - ACTIONS(10362), 12, + [37517] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -145999,8 +140839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146043,8 +140883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41717] = 2, - ACTIONS(10366), 12, + [37577] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146057,8 +140897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146071,7 +140911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146084,6 +140923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -146101,8 +140941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41777] = 2, - ACTIONS(10370), 12, + [37637] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146115,8 +140955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146129,12 +140969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -146159,8 +140999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41837] = 2, - ACTIONS(10374), 12, + [37697] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146173,8 +141013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146217,8 +141057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41897] = 2, - ACTIONS(10378), 12, + [37757] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146231,8 +141071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146275,8 +141115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [41957] = 2, - ACTIONS(10382), 12, + [37817] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146289,8 +141129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146333,8 +141173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42017] = 2, - ACTIONS(10386), 12, + [37877] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146347,8 +141187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146391,8 +141231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42077] = 2, - ACTIONS(10390), 12, + [37937] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146405,8 +141245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146449,8 +141289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42137] = 2, - ACTIONS(10394), 12, + [37997] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146463,8 +141303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146507,8 +141347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42197] = 2, - ACTIONS(10398), 12, + [38057] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146521,8 +141361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146565,8 +141405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42257] = 2, - ACTIONS(10402), 12, + [38117] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146579,8 +141419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146593,7 +141433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -146605,6 +141444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -146623,8 +141463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42317] = 2, - ACTIONS(10406), 12, + [38177] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146637,8 +141477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146681,8 +141521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42377] = 2, - ACTIONS(10416), 12, + [38237] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146695,8 +141535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146739,8 +141579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42437] = 2, - ACTIONS(10420), 12, + [38297] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146753,8 +141593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146767,13 +141607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -146797,8 +141637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42497] = 2, - ACTIONS(10424), 12, + [38357] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146811,8 +141651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146855,8 +141695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42557] = 2, - ACTIONS(10428), 12, + [38417] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146869,8 +141709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146913,8 +141753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42617] = 2, - ACTIONS(10476), 12, + [38477] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146927,8 +141767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -146946,8 +141786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -146971,8 +141811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42677] = 2, - ACTIONS(10436), 12, + [38537] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -146985,8 +141825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147029,8 +141869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42737] = 2, - ACTIONS(10440), 12, + [38597] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147043,8 +141883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147057,12 +141897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -147087,8 +141927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42797] = 2, - ACTIONS(10444), 12, + [38657] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147101,8 +141941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147145,8 +141985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42857] = 2, - ACTIONS(10448), 12, + [38717] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147159,8 +141999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147203,8 +142043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42917] = 2, - ACTIONS(10124), 12, + [38777] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147217,8 +142057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147261,8 +142101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [42977] = 2, - ACTIONS(10452), 12, + [38837] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147275,8 +142115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147319,8 +142159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43037] = 2, - ACTIONS(10460), 12, + [38897] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147333,8 +142173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147377,8 +142217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43097] = 2, - ACTIONS(10472), 12, + [38957] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147391,8 +142231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147435,8 +142275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43157] = 2, - ACTIONS(10464), 12, + [39017] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147449,8 +142289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147493,8 +142333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43217] = 2, - ACTIONS(10468), 12, + [39077] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147507,8 +142347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147551,8 +142391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43277] = 2, - ACTIONS(10152), 12, + [39137] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147565,8 +142405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147579,7 +142419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -147609,8 +142449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43337] = 2, - ACTIONS(10382), 12, + [39197] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147623,8 +142463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147637,12 +142477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -147667,8 +142507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43397] = 2, - ACTIONS(10378), 12, + [39257] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147681,8 +142521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147700,7 +142540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -147708,6 +142547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -147725,8 +142565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43457] = 2, - ACTIONS(10156), 12, + [39317] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147739,8 +142579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147753,7 +142593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -147783,8 +142623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43517] = 2, - ACTIONS(10160), 12, + [39377] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147797,8 +142637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147811,12 +142651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -147841,8 +142681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43577] = 2, - ACTIONS(10164), 12, + [39437] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147855,8 +142695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147869,7 +142709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -147899,8 +142739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43637] = 2, - ACTIONS(10120), 12, + [39497] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147913,8 +142753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147927,7 +142767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -147957,8 +142797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43697] = 2, - ACTIONS(10168), 12, + [39557] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -147971,8 +142811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -147985,7 +142825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148015,8 +142855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43757] = 2, - ACTIONS(10172), 12, + [39617] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148029,8 +142869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148043,7 +142883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148073,8 +142913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43817] = 2, - ACTIONS(10176), 12, + [39677] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148087,8 +142927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148101,7 +142941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148131,69 +142971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [43877] = 5, - ACTIONS(10674), 1, - aux_sym__text_token3, - ACTIONS(10672), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1059), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9960), 9, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - ACTIONS(9958), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - [43943] = 2, - ACTIONS(10184), 12, + [39737] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148206,8 +142985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148220,7 +142999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148250,8 +143029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44003] = 2, - ACTIONS(10188), 12, + [39797] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148264,8 +143043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148278,7 +143057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148308,8 +143087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44063] = 2, - ACTIONS(10192), 12, + [39857] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148322,8 +143101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148336,7 +143115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148366,8 +143145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44123] = 2, - ACTIONS(10196), 12, + [39917] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148380,8 +143159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148394,7 +143173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148424,8 +143203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44183] = 2, - ACTIONS(10200), 12, + [39977] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148438,8 +143217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148452,7 +143231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148482,8 +143261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44243] = 2, - ACTIONS(10204), 12, + [40037] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148496,8 +143275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148510,7 +143289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148540,8 +143319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44303] = 2, - ACTIONS(10208), 12, + [40097] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148554,8 +143333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148568,7 +143347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148598,8 +143377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44363] = 2, - ACTIONS(10374), 12, + [40157] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148612,8 +143391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148626,12 +143405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -148656,8 +143435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44423] = 2, - ACTIONS(10212), 12, + [40217] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148670,8 +143449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148684,7 +143463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148714,8 +143493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44483] = 2, - ACTIONS(10216), 12, + [40277] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148728,8 +143507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148742,7 +143521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148772,8 +143551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44543] = 2, - ACTIONS(9942), 12, + [40337] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148786,8 +143565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(9940), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148800,6 +143579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148813,7 +143593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -148830,8 +143609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44603] = 2, - ACTIONS(10370), 12, + [40397] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148844,8 +143623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148858,12 +143637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -148888,8 +143667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44663] = 2, - ACTIONS(10220), 12, + [40457] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148902,8 +143681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148916,7 +143695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -148946,8 +143725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44723] = 2, - ACTIONS(10224), 12, + [40517] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -148960,8 +143739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -148974,7 +143753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149004,8 +143783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44783] = 2, - ACTIONS(10228), 12, + [40577] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149018,8 +143797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149032,7 +143811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149062,8 +143841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44843] = 2, - ACTIONS(10232), 12, + [40637] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149076,8 +143855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149090,7 +143869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149120,8 +143899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44903] = 2, - ACTIONS(10236), 12, + [40697] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149134,8 +143913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149148,7 +143927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149178,8 +143957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [44963] = 2, - ACTIONS(10240), 12, + [40757] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149192,8 +143971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149206,7 +143985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149236,8 +144015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45023] = 2, - ACTIONS(10244), 12, + [40817] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149250,8 +144029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149264,7 +144043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149294,8 +144073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45083] = 2, - ACTIONS(10232), 12, + [40877] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149308,8 +144087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149322,12 +144101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149352,8 +144131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45143] = 2, - ACTIONS(10248), 12, + [40937] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149366,8 +144145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149380,7 +144159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149410,8 +144189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45203] = 2, - ACTIONS(10252), 12, + [40997] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149424,8 +144203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149438,7 +144217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149468,8 +144247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45263] = 2, - ACTIONS(10256), 12, + [41057] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149482,8 +144261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149496,13 +144275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -149526,8 +144305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45323] = 2, - ACTIONS(10456), 12, + [41117] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149540,8 +144319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149554,6 +144333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149563,7 +144343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -149584,8 +144363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45383] = 2, - ACTIONS(10260), 12, + [41177] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149598,8 +144377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149612,7 +144391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149642,8 +144421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45443] = 2, - ACTIONS(10264), 12, + [41237] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149656,8 +144435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149670,7 +144449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149700,8 +144479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45503] = 2, - ACTIONS(10366), 12, + [41297] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149714,8 +144493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149728,12 +144507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149758,8 +144537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45563] = 2, - ACTIONS(10268), 12, + [41357] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149772,8 +144551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149786,7 +144565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149816,8 +144595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45623] = 2, - ACTIONS(10362), 12, + [41417] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149830,8 +144609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149844,12 +144623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -149874,8 +144653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45683] = 2, - ACTIONS(10350), 12, + [41477] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149888,8 +144667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149902,7 +144681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149932,8 +144711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45743] = 2, - ACTIONS(10272), 12, + [41537] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -149946,8 +144725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -149960,7 +144739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -149990,8 +144769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45803] = 2, - ACTIONS(10276), 12, + [41597] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150004,8 +144783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150018,7 +144797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -150048,8 +144827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45863] = 2, - ACTIONS(10280), 12, + [41657] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150062,8 +144841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150076,7 +144855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -150106,8 +144885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45923] = 2, - ACTIONS(10284), 12, + [41717] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150120,8 +144899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150164,8 +144943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [45983] = 2, - ACTIONS(10288), 12, + [41777] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150178,8 +144957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150192,12 +144971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150222,8 +145001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46043] = 2, - ACTIONS(10292), 12, + [41837] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150236,8 +145015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150250,12 +145029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150280,8 +145059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46103] = 2, - ACTIONS(10296), 12, + [41897] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150294,8 +145073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150338,8 +145117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46163] = 2, - ACTIONS(10300), 12, + [41957] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150352,8 +145131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150396,8 +145175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46223] = 2, - ACTIONS(10304), 12, + [42017] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150410,8 +145189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150424,7 +145203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -150436,6 +145214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -150454,8 +145233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46283] = 2, - ACTIONS(10140), 12, + [42077] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150468,8 +145247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150482,6 +145261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -150495,7 +145275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -150512,8 +145291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46343] = 2, - ACTIONS(10308), 12, + [42137] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150526,8 +145305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150570,8 +145349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46403] = 2, - ACTIONS(10312), 12, + [42197] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150584,8 +145363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150628,8 +145407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46463] = 2, - ACTIONS(10316), 12, + [42257] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150642,8 +145421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150686,8 +145465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46523] = 2, - ACTIONS(10320), 12, + [42317] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150700,8 +145479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150714,12 +145493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -150744,8 +145523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46583] = 2, - ACTIONS(10324), 12, + [42377] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150758,8 +145537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150802,8 +145581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46643] = 2, - ACTIONS(10330), 12, + [42437] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150816,8 +145595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150860,8 +145639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46703] = 2, - ACTIONS(10334), 12, + [42497] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150874,8 +145653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150918,8 +145697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46763] = 2, - ACTIONS(10338), 12, + [42557] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150932,8 +145711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -150976,8 +145755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46823] = 2, - ACTIONS(10342), 12, + [42617] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -150990,8 +145769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151034,8 +145813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46883] = 2, - ACTIONS(10346), 12, + [42677] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151048,8 +145827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151092,8 +145871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [46943] = 2, - ACTIONS(10432), 12, + [42737] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151106,8 +145885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151120,12 +145899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -151150,8 +145929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47003] = 2, - ACTIONS(10354), 12, + [42797] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151164,8 +145943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151208,8 +145987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47063] = 2, - ACTIONS(10362), 12, + [42857] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151222,8 +146001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151266,8 +146045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47123] = 2, - ACTIONS(10366), 12, + [42917] = 2, + ACTIONS(10498), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151280,8 +146059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10496), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151294,7 +146073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -151308,6 +146086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -151324,8 +146103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47183] = 2, - ACTIONS(10370), 12, + [42977] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151338,8 +146117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151352,7 +146131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -151364,6 +146142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -151382,8 +146161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47243] = 2, - ACTIONS(10374), 12, + [43037] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151396,8 +146175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151440,8 +146219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47303] = 2, - ACTIONS(10378), 12, + [43097] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151454,8 +146233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151498,8 +146277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47363] = 2, - ACTIONS(10382), 12, + [43157] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151512,8 +146291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151556,8 +146335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47423] = 2, - ACTIONS(10386), 12, + [43217] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151570,8 +146349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151614,8 +146393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47483] = 2, - ACTIONS(10390), 12, + [43277] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151628,8 +146407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151672,8 +146451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47543] = 2, - ACTIONS(10394), 12, + [43337] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151686,8 +146465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151730,8 +146509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47603] = 2, - ACTIONS(10398), 12, + [43397] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151744,8 +146523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151788,8 +146567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47663] = 2, - ACTIONS(10402), 12, + [43457] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151802,8 +146581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151816,7 +146595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -151828,6 +146606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -151846,8 +146625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47723] = 2, - ACTIONS(10406), 12, + [43517] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151860,8 +146639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151904,8 +146683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47783] = 2, - ACTIONS(10416), 12, + [43577] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151918,8 +146697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151962,8 +146741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47843] = 2, - ACTIONS(10420), 12, + [43637] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -151976,8 +146755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -151990,7 +146769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -152000,6 +146778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -152020,8 +146799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47903] = 2, - ACTIONS(10424), 12, + [43697] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152034,8 +146813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152078,8 +146857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [47963] = 2, - ACTIONS(10428), 12, + [43757] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152092,8 +146871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152136,8 +146915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48023] = 2, - ACTIONS(10476), 12, + [43817] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152150,8 +146929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152169,11 +146948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -152194,8 +146973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48083] = 2, - ACTIONS(10436), 12, + [43877] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152208,8 +146987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152252,8 +147031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48143] = 2, - ACTIONS(10440), 12, + [43937] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152266,8 +147045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152280,12 +147059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -152310,8 +147089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48203] = 2, - ACTIONS(10444), 12, + [43997] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152324,8 +147103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152368,8 +147147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48263] = 2, - ACTIONS(10448), 12, + [44057] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152382,8 +147161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152426,8 +147205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48323] = 2, - ACTIONS(10124), 12, + [44117] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152440,8 +147219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152484,8 +147263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48383] = 2, - ACTIONS(10452), 12, + [44177] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152498,8 +147277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152542,8 +147321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48443] = 2, - ACTIONS(10460), 12, + [44237] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152556,8 +147335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152600,8 +147379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48503] = 2, - ACTIONS(10472), 12, + [44297] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152614,8 +147393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152658,8 +147437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48563] = 2, - ACTIONS(10464), 12, + [44357] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152672,8 +147451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152716,8 +147495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48623] = 2, - ACTIONS(10468), 12, + [44417] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152730,8 +147509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152774,8 +147553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48683] = 2, - ACTIONS(10152), 12, + [44477] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152788,8 +147567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152802,8 +147581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -152832,8 +147611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48743] = 2, - ACTIONS(10140), 12, + [44537] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152846,8 +147625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10138), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152860,8 +147639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -152890,8 +147669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48803] = 2, - ACTIONS(10432), 12, + [44597] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152904,8 +147683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152923,7 +147702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -152932,6 +147710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -152948,8 +147727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48863] = 2, - ACTIONS(10156), 12, + [44657] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -152962,8 +147741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -152976,8 +147755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153006,8 +147785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48923] = 2, - ACTIONS(10160), 12, + [44717] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153020,8 +147799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153034,8 +147813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153064,8 +147843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [48983] = 2, - ACTIONS(10164), 12, + [44777] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153078,8 +147857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153092,8 +147871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153122,8 +147901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49043] = 2, - ACTIONS(10120), 12, + [44837] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153136,8 +147915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153150,8 +147929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153180,8 +147959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49103] = 2, - ACTIONS(10168), 12, + [44897] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153194,8 +147973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153208,8 +147987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153238,8 +148017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49163] = 2, - ACTIONS(10172), 12, + [44957] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153252,8 +148031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153266,8 +148045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153296,8 +148075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49223] = 2, - ACTIONS(10176), 12, + [45017] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153310,8 +148089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153324,8 +148103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153354,8 +148133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49283] = 2, - ACTIONS(10346), 12, + [45077] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153368,8 +148147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153382,12 +148161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -153412,8 +148191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49343] = 2, - ACTIONS(10184), 12, + [45137] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153426,8 +148205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153440,8 +148219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153470,8 +148249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49403] = 2, - ACTIONS(10188), 12, + [45197] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153484,8 +148263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153498,8 +148277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153528,8 +148307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49463] = 2, - ACTIONS(10192), 12, + [45257] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153542,8 +148321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153556,8 +148335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153586,8 +148365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49523] = 2, - ACTIONS(10196), 12, + [45317] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153600,8 +148379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153614,8 +148393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153644,8 +148423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49583] = 2, - ACTIONS(10200), 12, + [45377] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153658,8 +148437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153672,8 +148451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153702,8 +148481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49643] = 2, - ACTIONS(10204), 12, + [45437] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153716,8 +148495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153730,8 +148509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153760,8 +148539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49703] = 2, - ACTIONS(10208), 12, + [45497] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153774,8 +148553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153788,8 +148567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153818,8 +148597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49763] = 2, - ACTIONS(10342), 12, + [45557] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153832,8 +148611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153846,12 +148625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -153876,8 +148655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49823] = 2, - ACTIONS(10212), 12, + [45617] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153890,8 +148669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153904,8 +148683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153934,8 +148713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49883] = 2, - ACTIONS(10216), 12, + [45677] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -153948,8 +148727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -153962,8 +148741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -153992,8 +148771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [49943] = 2, - ACTIONS(10220), 12, + [45737] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154006,8 +148785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154020,8 +148799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154050,8 +148829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50003] = 2, - ACTIONS(10224), 12, + [45797] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154064,8 +148843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154078,8 +148857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154108,8 +148887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50063] = 2, - ACTIONS(10228), 12, + [45857] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154122,8 +148901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154136,8 +148915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154166,8 +148945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50123] = 2, - ACTIONS(10232), 12, + [45917] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154180,8 +148959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154194,8 +148973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154224,8 +149003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50183] = 2, - ACTIONS(10236), 12, + [45977] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154238,8 +149017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154252,8 +149031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154282,8 +149061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50243] = 2, - ACTIONS(10240), 12, + [46037] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154296,8 +149075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154310,8 +149089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154340,8 +149119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50303] = 2, - ACTIONS(10244), 12, + [46097] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154354,8 +149133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154368,8 +149147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154398,8 +149177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50363] = 2, - ACTIONS(10152), 12, + [46157] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154412,8 +149191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154426,6 +149205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -154437,7 +149217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -154456,8 +149235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50423] = 2, - ACTIONS(10248), 12, + [46217] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154470,8 +149249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154484,8 +149263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154514,8 +149293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50483] = 2, - ACTIONS(10252), 12, + [46277] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154528,8 +149307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154542,8 +149321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154572,8 +149351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50543] = 2, - ACTIONS(10256), 12, + [46337] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154586,8 +149365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154601,7 +149380,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154610,6 +149388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -154630,8 +149409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50603] = 2, - ACTIONS(10456), 12, + [46397] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154644,8 +149423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154658,6 +149437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -154667,7 +149447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -154688,8 +149467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50663] = 2, - ACTIONS(10260), 12, + [46457] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154702,8 +149481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154716,8 +149495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154746,8 +149525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50723] = 2, - ACTIONS(10264), 12, + [46517] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154760,8 +149539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154774,8 +149553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154804,8 +149583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50783] = 2, - ACTIONS(10338), 12, + [46577] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154818,8 +149597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154832,12 +149611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -154862,8 +149641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50843] = 2, - ACTIONS(10268), 12, + [46637] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154876,8 +149655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154890,8 +149669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -154920,8 +149699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50903] = 2, - ACTIONS(10334), 12, + [46697] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154934,8 +149713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -154948,12 +149727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -154978,8 +149757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [50963] = 2, - ACTIONS(10350), 12, + [46757] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -154992,8 +149771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155006,8 +149785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -155036,8 +149815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51023] = 2, - ACTIONS(10272), 12, + [46817] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155050,8 +149829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155064,8 +149843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -155094,8 +149873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51083] = 2, - ACTIONS(10276), 12, + [46877] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155108,8 +149887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155122,8 +149901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -155152,8 +149931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51143] = 2, - ACTIONS(10280), 12, + [46937] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155166,8 +149945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155180,8 +149959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -155210,8 +149989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51203] = 2, - ACTIONS(10284), 12, + [46997] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155224,8 +150003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155268,8 +150047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51263] = 2, - ACTIONS(10288), 12, + [47057] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155282,8 +150061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155297,11 +150076,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155326,8 +150105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51323] = 2, - ACTIONS(10292), 12, + [47117] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155340,8 +150119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155355,11 +150134,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155384,8 +150163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51383] = 2, - ACTIONS(10296), 12, + [47177] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155398,8 +150177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155442,8 +150221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51443] = 2, - ACTIONS(10300), 12, + [47237] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155456,8 +150235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155500,8 +150279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51503] = 2, - ACTIONS(10304), 12, + [47297] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155514,8 +150293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155558,8 +150337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51563] = 2, - ACTIONS(10308), 12, + [47357] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155572,8 +150351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155616,8 +150395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51623] = 2, - ACTIONS(10312), 12, + [47417] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155630,8 +150409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155674,8 +150453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51683] = 2, - ACTIONS(10316), 12, + [47477] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155688,8 +150467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155732,8 +150511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51743] = 2, - ACTIONS(10320), 12, + [47537] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155746,8 +150525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155790,8 +150569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51803] = 2, - ACTIONS(10324), 12, + [47597] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155804,8 +150583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155819,11 +150598,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -155848,8 +150627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51863] = 2, - ACTIONS(10330), 12, + [47657] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155862,8 +150641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155906,8 +150685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51923] = 2, - ACTIONS(10334), 12, + [47717] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155920,8 +150699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -155964,8 +150743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [51983] = 2, - ACTIONS(10338), 12, + [47777] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -155978,8 +150757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156022,8 +150801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52043] = 2, - ACTIONS(10342), 12, + [47837] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156036,8 +150815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156080,8 +150859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52103] = 2, - ACTIONS(10346), 12, + [47897] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156094,8 +150873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156138,8 +150917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52163] = 2, - ACTIONS(10432), 12, + [47957] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156152,8 +150931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156196,8 +150975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52223] = 2, - ACTIONS(10354), 12, + [48017] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156210,8 +150989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156225,11 +151004,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -156254,8 +151033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52283] = 2, - ACTIONS(10362), 12, + [48077] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156268,8 +151047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156312,8 +151091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52343] = 2, - ACTIONS(10366), 12, + [48137] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156326,8 +151105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156370,8 +151149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52403] = 2, - ACTIONS(10370), 12, + [48197] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156384,8 +151163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156428,8 +151207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52463] = 2, - ACTIONS(10374), 12, + [48257] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156442,8 +151221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156486,8 +151265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52523] = 2, - ACTIONS(10378), 12, + [48317] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156500,8 +151279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156544,8 +151323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52583] = 2, - ACTIONS(10382), 12, + [48377] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156558,8 +151337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156602,8 +151381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52643] = 2, - ACTIONS(10386), 12, + [48437] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156616,8 +151395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156660,8 +151439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52703] = 2, - ACTIONS(10390), 12, + [48497] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156674,8 +151453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156718,8 +151497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52763] = 2, - ACTIONS(10394), 12, + [48557] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156732,8 +151511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156776,8 +151555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52823] = 2, - ACTIONS(10398), 12, + [48617] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156790,8 +151569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156805,7 +151584,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -156816,6 +151594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -156834,8 +151613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52883] = 2, - ACTIONS(10402), 12, + [48677] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156848,8 +151627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156892,8 +151671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [52943] = 2, - ACTIONS(10406), 12, + [48737] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156906,8 +151685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156950,8 +151729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53003] = 2, - ACTIONS(10416), 12, + [48797] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -156964,8 +151743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -156979,7 +151758,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -156988,6 +151766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -157008,8 +151787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53063] = 2, - ACTIONS(10420), 12, + [48857] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157022,8 +151801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157066,8 +151845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53123] = 2, - ACTIONS(10424), 12, + [48917] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157080,8 +151859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157124,8 +151903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53183] = 2, - ACTIONS(10428), 12, + [48977] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157138,8 +151917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157153,11 +151932,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -157182,8 +151961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53243] = 2, - ACTIONS(10476), 12, + [49037] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157196,8 +151975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157211,6 +151990,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -157219,7 +151999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -157240,8 +152019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53303] = 2, - ACTIONS(10436), 12, + [49097] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157254,8 +152033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157269,11 +152048,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -157298,8 +152077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53363] = 2, - ACTIONS(10440), 12, + [49157] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157312,8 +152091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157356,8 +152135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53423] = 2, - ACTIONS(10444), 12, + [49217] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157370,8 +152149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157414,8 +152193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53483] = 2, - ACTIONS(10448), 12, + [49277] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157428,8 +152207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157472,8 +152251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53543] = 2, - ACTIONS(10124), 12, + [49337] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157486,8 +152265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157530,8 +152309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53603] = 2, - ACTIONS(10452), 12, + [49397] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157544,8 +152323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157588,8 +152367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53663] = 2, - ACTIONS(10460), 12, + [49457] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157602,8 +152381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157646,8 +152425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53723] = 2, - ACTIONS(10472), 12, + [49517] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157660,8 +152439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157704,8 +152483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53783] = 2, - ACTIONS(10464), 12, + [49577] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157718,8 +152497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157762,8 +152541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53843] = 2, - ACTIONS(10468), 12, + [49637] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157776,8 +152555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157820,8 +152599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53903] = 2, - ACTIONS(10152), 12, + [49697] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157834,8 +152613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157849,8 +152628,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -157878,8 +152657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [53963] = 2, - ACTIONS(10330), 12, + [49757] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157892,8 +152671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157907,11 +152686,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -157936,8 +152715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54023] = 2, - ACTIONS(10324), 12, + [49817] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -157950,8 +152729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -157965,11 +152744,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -157994,8 +152773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54083] = 2, - ACTIONS(10156), 12, + [49877] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158008,8 +152787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158023,8 +152802,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158052,8 +152831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54143] = 2, - ACTIONS(10160), 12, + [49937] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158066,8 +152845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158081,8 +152860,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158110,8 +152889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54203] = 2, - ACTIONS(10164), 12, + [49997] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158124,8 +152903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158139,8 +152918,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158168,8 +152947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54263] = 2, - ACTIONS(10120), 12, + [50057] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158182,8 +152961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158197,8 +152976,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158226,8 +153005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54323] = 2, - ACTIONS(10168), 12, + [50117] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158240,8 +153019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158255,8 +153034,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158284,8 +153063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54383] = 2, - ACTIONS(10172), 12, + [50177] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158298,8 +153077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158313,8 +153092,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158342,8 +153121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54443] = 2, - ACTIONS(10176), 12, + [50237] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158356,8 +153135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158371,8 +153150,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158400,8 +153179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54503] = 2, - ACTIONS(10320), 12, + [50297] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158414,8 +153193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158429,11 +153208,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -158458,8 +153237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54563] = 2, - ACTIONS(10184), 12, + [50357] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158472,8 +153251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158487,8 +153266,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158516,8 +153295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54623] = 2, - ACTIONS(10188), 12, + [50417] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158530,8 +153309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158545,8 +153324,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158574,8 +153353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54683] = 2, - ACTIONS(10192), 12, + [50477] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158588,8 +153367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158603,8 +153382,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158632,8 +153411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54743] = 2, - ACTIONS(10196), 12, + [50537] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158646,8 +153425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158661,8 +153440,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158690,8 +153469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54803] = 2, - ACTIONS(10200), 12, + [50597] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158704,8 +153483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158719,8 +153498,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158748,8 +153527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54863] = 2, - ACTIONS(10204), 12, + [50657] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158762,8 +153541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158777,8 +153556,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158806,8 +153585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54923] = 2, - ACTIONS(10208), 12, + [50717] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158820,8 +153599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158835,8 +153614,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158864,8 +153643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [54983] = 2, - ACTIONS(10316), 12, + [50777] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158878,8 +153657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158893,11 +153672,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -158922,8 +153701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55043] = 2, - ACTIONS(10212), 12, + [50837] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158936,8 +153715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -158951,8 +153730,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -158980,8 +153759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55103] = 2, - ACTIONS(10216), 12, + [50897] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -158994,8 +153773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159009,8 +153788,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159038,8 +153817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55163] = 2, - ACTIONS(10220), 12, + [50957] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159052,8 +153831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159067,8 +153846,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159096,8 +153875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55223] = 2, - ACTIONS(10224), 12, + [51017] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159110,8 +153889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159125,8 +153904,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159154,8 +153933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55283] = 2, - ACTIONS(10228), 12, + [51077] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159168,8 +153947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159183,8 +153962,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159212,8 +153991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55343] = 2, - ACTIONS(10232), 12, + [51137] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159226,8 +154005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159241,8 +154020,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159270,8 +154049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55403] = 2, - ACTIONS(10236), 12, + [51197] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159284,8 +154063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159299,8 +154078,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159328,8 +154107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55463] = 2, - ACTIONS(10240), 12, + [51257] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159342,8 +154121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159357,8 +154136,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159386,8 +154165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55523] = 2, - ACTIONS(10244), 12, + [51317] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159400,8 +154179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159415,8 +154194,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159444,8 +154223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55583] = 2, - ACTIONS(10468), 12, + [51377] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159458,8 +154237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159473,6 +154252,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -159482,7 +154262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -159502,8 +154281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55643] = 2, - ACTIONS(10248), 12, + [51437] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159516,8 +154295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159532,7 +154311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159540,6 +154318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -159560,8 +154339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55703] = 2, - ACTIONS(10252), 12, + [51497] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159574,8 +154353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159589,8 +154368,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159618,8 +154397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55763] = 2, - ACTIONS(10256), 12, + [51557] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159632,8 +154411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159647,8 +154426,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159676,8 +154455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55823] = 2, - ACTIONS(10456), 12, + [51617] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159690,8 +154469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159705,6 +154484,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -159714,7 +154494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -159734,8 +154513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55883] = 2, - ACTIONS(10260), 12, + [51677] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159748,8 +154527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159763,8 +154542,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159792,8 +154571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [55943] = 2, - ACTIONS(10264), 12, + [51737] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159806,8 +154585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159821,8 +154600,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159850,8 +154629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56003] = 2, - ACTIONS(10312), 12, + [51797] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159864,8 +154643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159879,11 +154658,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -159908,8 +154687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56063] = 2, - ACTIONS(10268), 12, + [51857] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159922,8 +154701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159937,8 +154716,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -159966,8 +154745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56123] = 2, - ACTIONS(10308), 12, + [51917] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -159980,8 +154759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -159995,11 +154774,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -160024,8 +154803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56183] = 2, - ACTIONS(10350), 12, + [51977] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160038,8 +154817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160053,8 +154832,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -160082,8 +154861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56243] = 2, - ACTIONS(10272), 12, + [52037] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160096,8 +154875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160111,8 +154890,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -160140,8 +154919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56303] = 2, - ACTIONS(10276), 12, + [52097] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160154,8 +154933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160198,8 +154977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56363] = 2, - ACTIONS(10280), 12, + [52157] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160212,8 +154991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160228,10 +155007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -160256,8 +155035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56423] = 2, - ACTIONS(10284), 12, + [52217] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160270,8 +155049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160286,10 +155065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -160314,8 +155093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56483] = 2, - ACTIONS(10288), 12, + [52277] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160328,8 +155107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160372,8 +155151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56543] = 2, - ACTIONS(10292), 12, + [52337] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160386,8 +155165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160430,8 +155209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56603] = 2, - ACTIONS(10296), 12, + [52397] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160444,8 +155223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160488,8 +155267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56663] = 2, - ACTIONS(10300), 12, + [52457] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160502,8 +155281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160546,8 +155325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56723] = 2, - ACTIONS(10304), 12, + [52517] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160560,8 +155339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160604,8 +155383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56783] = 2, - ACTIONS(10308), 12, + [52577] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160618,8 +155397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160662,8 +155441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56843] = 2, - ACTIONS(10312), 12, + [52637] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160676,8 +155455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160720,8 +155499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56903] = 2, - ACTIONS(10316), 12, + [52697] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160734,8 +155513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160750,10 +155529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -160778,8 +155557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [56963] = 2, - ACTIONS(10320), 12, + [52757] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160792,8 +155571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160836,8 +155615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57023] = 2, - ACTIONS(10324), 12, + [52817] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160850,8 +155629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160894,8 +155673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57083] = 2, - ACTIONS(10330), 12, + [52877] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160908,8 +155687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -160952,8 +155731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57143] = 2, - ACTIONS(10334), 12, + [52937] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -160966,8 +155745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161010,8 +155789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57203] = 2, - ACTIONS(10338), 12, + [52997] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161024,8 +155803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161068,8 +155847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57263] = 2, - ACTIONS(10342), 12, + [53057] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161082,8 +155861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161126,8 +155905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57323] = 2, - ACTIONS(10346), 12, + [53117] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161140,8 +155919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161156,10 +155935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -161184,8 +155963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57383] = 2, - ACTIONS(10432), 12, + [53177] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161198,8 +155977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161242,8 +156021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57443] = 2, - ACTIONS(10354), 12, + [53237] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161256,8 +156035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161300,8 +156079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57503] = 2, - ACTIONS(10362), 12, + [53297] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161314,8 +156093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161358,8 +156137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57563] = 2, - ACTIONS(10366), 12, + [53357] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161372,8 +156151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161416,8 +156195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57623] = 2, - ACTIONS(10370), 12, + [53417] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161430,8 +156209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161474,8 +156253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57683] = 2, - ACTIONS(10374), 12, + [53477] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161488,8 +156267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161532,8 +156311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57743] = 2, - ACTIONS(10378), 12, + [53537] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161546,8 +156325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161590,8 +156369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57803] = 2, - ACTIONS(10382), 12, + [53597] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161604,8 +156383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161648,8 +156427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57863] = 2, - ACTIONS(10386), 12, + [53657] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161662,8 +156441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161706,37 +156485,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [57923] = 2, - ACTIONS(10390), 12, + [53717] = 5, + ACTIONS(11219), 1, + aux_sym__text_token3, + ACTIONS(11216), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1537), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -161763,9 +156546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [57983] = 2, - ACTIONS(10394), 12, + [53783] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161778,8 +156560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161822,8 +156604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58043] = 2, - ACTIONS(10398), 12, + [53843] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161836,8 +156618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161880,8 +156662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58103] = 2, - ACTIONS(10402), 12, + [53903] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161894,8 +156676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161910,7 +156692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -161919,6 +156700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -161938,8 +156720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58163] = 2, - ACTIONS(10406), 12, + [53963] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -161952,8 +156734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -161996,8 +156778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58223] = 2, - ACTIONS(10416), 12, + [54023] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162010,8 +156792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162054,8 +156836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58283] = 2, - ACTIONS(10420), 12, + [54083] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162068,8 +156850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162084,10 +156866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -162112,8 +156894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58343] = 2, - ACTIONS(10424), 12, + [54143] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162126,8 +156908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162170,8 +156952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58403] = 2, - ACTIONS(10428), 12, + [54203] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162184,8 +156966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162200,10 +156982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -162228,8 +157010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58463] = 2, - ACTIONS(10476), 12, + [54263] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162242,8 +157024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162258,6 +157040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -162266,7 +157049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -162286,8 +157068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58523] = 2, - ACTIONS(10436), 12, + [54323] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162300,8 +157082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162344,8 +157126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58583] = 2, - ACTIONS(10440), 12, + [54383] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162358,8 +157140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162402,8 +157184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58643] = 2, - ACTIONS(10444), 12, + [54443] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162416,8 +157198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162460,8 +157242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58703] = 2, - ACTIONS(10448), 12, + [54503] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162474,8 +157256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162518,8 +157300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58763] = 2, - ACTIONS(10124), 12, + [54563] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162532,8 +157314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162576,8 +157358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58823] = 2, - ACTIONS(10452), 12, + [54623] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162590,8 +157372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162634,8 +157416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58883] = 2, - ACTIONS(10460), 12, + [54683] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162648,8 +157430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162692,8 +157474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [58943] = 2, - ACTIONS(10472), 12, + [54743] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162706,8 +157488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162750,8 +157532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59003] = 2, - ACTIONS(10464), 12, + [54803] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162764,8 +157546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162808,8 +157590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59063] = 2, - ACTIONS(10468), 12, + [54863] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162822,8 +157604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162866,8 +157648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59123] = 2, - ACTIONS(10152), 12, + [54923] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162880,8 +157662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162896,11 +157678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -162924,8 +157706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59183] = 2, - ACTIONS(10292), 12, + [54983] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162938,8 +157720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -162954,10 +157736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -162982,8 +157764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59243] = 2, - ACTIONS(10304), 12, + [55043] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -162996,8 +157778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163012,10 +157794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -163040,8 +157822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59303] = 2, - ACTIONS(10156), 12, + [55103] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163054,8 +157836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163070,11 +157852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163098,8 +157880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59363] = 2, - ACTIONS(10160), 12, + [55163] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163112,8 +157894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163128,11 +157910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163156,8 +157938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59423] = 2, - ACTIONS(10164), 12, + [55223] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163170,8 +157952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163186,11 +157968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163214,8 +157996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59483] = 2, - ACTIONS(10120), 12, + [55283] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163228,8 +158010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163244,11 +158026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163272,8 +158054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59543] = 2, - ACTIONS(10168), 12, + [55343] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163286,8 +158068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163302,11 +158084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163330,8 +158112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59603] = 2, - ACTIONS(10172), 12, + [55403] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163344,8 +158126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163360,11 +158142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163388,8 +158170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59663] = 2, - ACTIONS(10176), 12, + [55463] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163402,8 +158184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163418,11 +158200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163446,8 +158228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59723] = 2, - ACTIONS(10300), 12, + [55523] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163460,8 +158242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163476,10 +158258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -163504,8 +158286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59783] = 2, - ACTIONS(10184), 12, + [55583] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163518,8 +158300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163534,11 +158316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163562,8 +158344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59843] = 2, - ACTIONS(10188), 12, + [55643] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163576,8 +158358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163592,11 +158374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163620,8 +158402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59903] = 2, - ACTIONS(10192), 12, + [55703] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163634,8 +158416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163650,11 +158432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163678,8 +158460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [59963] = 2, - ACTIONS(10196), 12, + [55763] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163692,8 +158474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163708,11 +158490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163736,8 +158518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60023] = 2, - ACTIONS(10200), 12, + [55823] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163750,8 +158532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163766,11 +158548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163794,8 +158576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60083] = 2, - ACTIONS(10204), 12, + [55883] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163808,8 +158590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163824,11 +158606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163852,8 +158634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60143] = 2, - ACTIONS(10208), 12, + [55943] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163866,8 +158648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163882,11 +158664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163910,8 +158692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60203] = 2, - ACTIONS(10212), 12, + [56003] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163924,8 +158706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163940,11 +158722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -163968,8 +158750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60263] = 2, - ACTIONS(10216), 12, + [56063] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -163982,8 +158764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -163998,11 +158780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164026,8 +158808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60323] = 2, - ACTIONS(10220), 12, + [56123] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164040,8 +158822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164056,11 +158838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164084,8 +158866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60383] = 2, - ACTIONS(10224), 12, + [56183] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164098,8 +158880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164114,11 +158896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164142,8 +158924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60443] = 2, - ACTIONS(10228), 12, + [56243] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164156,8 +158938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164172,11 +158954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164200,8 +158982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60503] = 2, - ACTIONS(10232), 12, + [56303] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164214,8 +158996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164230,11 +159012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164258,8 +159040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60563] = 2, - ACTIONS(10236), 12, + [56363] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164272,8 +159054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164288,11 +159070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164316,8 +159098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60623] = 2, - ACTIONS(10240), 12, + [56423] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164330,8 +159112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164346,11 +159128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164374,8 +159156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60683] = 2, - ACTIONS(10244), 12, + [56483] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164388,8 +159170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164404,11 +159186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164432,38 +159214,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60743] = 5, - ACTIONS(10679), 1, - aux_sym__text_token3, - ACTIONS(10676), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1654), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [56543] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -164475,6 +159252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -164493,8 +159271,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [60809] = 2, - ACTIONS(10248), 12, + aux_sym__text_token3, + [56603] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164507,8 +159286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164523,11 +159302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164551,8 +159330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60869] = 2, - ACTIONS(10252), 12, + [56663] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164565,8 +159344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164581,11 +159360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164609,8 +159388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60929] = 2, - ACTIONS(10256), 12, + [56723] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164623,8 +159402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164639,11 +159418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164667,8 +159446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [60989] = 2, - ACTIONS(10456), 12, + [56783] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164681,8 +159460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164697,6 +159476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -164706,7 +159486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, - anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -164725,8 +159504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61049] = 2, - ACTIONS(10260), 12, + [56843] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164739,8 +159518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164755,11 +159534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164783,8 +159562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61109] = 2, - ACTIONS(10264), 12, + [56903] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164797,8 +159576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164813,11 +159592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164841,8 +159620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61169] = 2, - ACTIONS(10268), 12, + [56963] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164855,8 +159634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164871,11 +159650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -164899,8 +159678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61229] = 2, - ACTIONS(10296), 12, + [57023] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164913,8 +159692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164929,10 +159708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -164957,8 +159736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61289] = 2, - ACTIONS(10350), 12, + [57083] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -164971,8 +159750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -164987,11 +159766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -165015,8 +159794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61349] = 2, - ACTIONS(10272), 12, + [57143] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165029,8 +159808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165045,11 +159824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -165073,8 +159852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61409] = 2, - ACTIONS(10276), 12, + [57203] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165087,8 +159866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165131,8 +159910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61469] = 2, - ACTIONS(10280), 12, + [57263] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165145,8 +159924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165164,8 +159943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -165189,8 +159968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61529] = 2, - ACTIONS(10284), 12, + [57323] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165203,8 +159982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165222,8 +160001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -165247,8 +160026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61589] = 2, - ACTIONS(10288), 12, + [57383] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165261,8 +160040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165305,8 +160084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61649] = 2, - ACTIONS(10292), 12, + [57443] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165319,8 +160098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165363,8 +160142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61709] = 2, - ACTIONS(10296), 12, + [57503] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165377,8 +160156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165421,8 +160200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61769] = 2, - ACTIONS(10300), 12, + [57563] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165435,8 +160214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165479,8 +160258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61829] = 2, - ACTIONS(10304), 12, + [57623] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165493,8 +160272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165537,8 +160316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61889] = 2, - ACTIONS(10308), 12, + [57683] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165551,8 +160330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165595,8 +160374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [61949] = 2, - ACTIONS(10312), 12, + [57743] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165609,8 +160388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165653,8 +160432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62009] = 2, - ACTIONS(10316), 12, + [57803] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165667,8 +160446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165686,8 +160465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -165711,8 +160490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62069] = 2, - ACTIONS(10320), 12, + [57863] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165725,8 +160504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165769,8 +160548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62129] = 2, - ACTIONS(10324), 12, + [57923] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165783,8 +160562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165827,8 +160606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62189] = 2, - ACTIONS(10330), 12, + [57983] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165841,8 +160620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165885,8 +160664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62249] = 2, - ACTIONS(10334), 12, + [58043] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165899,8 +160678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -165943,8 +160722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62309] = 2, - ACTIONS(10338), 12, + [58103] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -165957,8 +160736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166001,8 +160780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62369] = 2, - ACTIONS(10342), 12, + [58163] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166015,8 +160794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166059,8 +160838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62429] = 2, - ACTIONS(10346), 12, + [58223] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166073,8 +160852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166117,8 +160896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62489] = 2, - ACTIONS(10432), 12, + [58283] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166131,8 +160910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166175,8 +160954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62549] = 2, - ACTIONS(10354), 12, + [58343] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166189,8 +160968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166233,8 +161012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62609] = 2, - ACTIONS(10362), 12, + [58403] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166247,8 +161026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166291,8 +161070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62669] = 2, - ACTIONS(10366), 12, + [58463] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166305,8 +161084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166349,8 +161128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62729] = 2, - ACTIONS(10370), 12, + [58523] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166363,8 +161142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166407,8 +161186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62789] = 2, - ACTIONS(10374), 12, + [58583] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166421,8 +161200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166465,8 +161244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62849] = 2, - ACTIONS(10378), 12, + [58643] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166479,8 +161258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166523,8 +161302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62909] = 2, - ACTIONS(10382), 12, + [58703] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166537,8 +161316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166581,8 +161360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [62969] = 2, - ACTIONS(10386), 12, + [58763] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166595,8 +161374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166615,12 +161394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -166639,8 +161418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63029] = 2, - ACTIONS(10390), 12, + [58823] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166653,8 +161432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166697,8 +161476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63089] = 2, - ACTIONS(10394), 12, + [58883] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166711,8 +161490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166755,8 +161534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63149] = 2, - ACTIONS(10398), 12, + [58943] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166769,8 +161548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166789,12 +161568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -166813,8 +161592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63209] = 2, - ACTIONS(10402), 12, + [59003] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166827,8 +161606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166871,8 +161650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63269] = 2, - ACTIONS(10406), 12, + [59063] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166885,8 +161664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166929,8 +161708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63329] = 2, - ACTIONS(10416), 12, + [59123] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -166943,8 +161722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -166987,8 +161766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63389] = 2, - ACTIONS(10420), 12, + [59183] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167001,8 +161780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167020,8 +161799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -167045,8 +161824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63449] = 2, - ACTIONS(10424), 12, + [59243] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167059,8 +161838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167103,8 +161882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63509] = 2, - ACTIONS(10428), 12, + [59303] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167117,8 +161896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167161,66 +161940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63569] = 2, - ACTIONS(10476), 12, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATelse, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATendcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [63629] = 2, - ACTIONS(10436), 12, + [59363] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167233,8 +161954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167277,8 +161998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63689] = 2, - ACTIONS(10440), 12, + [59423] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167291,8 +162012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167335,8 +162056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63749] = 2, - ACTIONS(10444), 12, + [59483] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167349,8 +162070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167393,8 +162114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63809] = 2, - ACTIONS(10448), 12, + [59543] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167407,8 +162128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167451,8 +162172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63869] = 2, - ACTIONS(10124), 12, + [59603] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167465,8 +162186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167509,8 +162230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63929] = 2, - ACTIONS(10452), 12, + [59663] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167523,8 +162244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167567,8 +162288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [63989] = 2, - ACTIONS(10460), 12, + [59723] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167581,8 +162302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167625,8 +162346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64049] = 2, - ACTIONS(10472), 12, + [59783] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167639,8 +162360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167683,8 +162404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64109] = 2, - ACTIONS(10464), 12, + [59843] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167697,8 +162418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167741,8 +162462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64169] = 2, - ACTIONS(10468), 12, + [59903] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167755,8 +162476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167799,8 +162520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64229] = 2, - ACTIONS(10152), 12, + [59963] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167813,8 +162534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167833,10 +162554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -167857,8 +162578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64289] = 2, - ACTIONS(10260), 12, + [60023] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167871,8 +162592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167890,8 +162611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -167915,8 +162636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64349] = 2, - ACTIONS(10288), 12, + [60083] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167929,8 +162650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -167948,8 +162669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -167973,8 +162694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64409] = 2, - ACTIONS(10156), 12, + [60143] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -167987,8 +162708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168007,10 +162728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168031,8 +162752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64469] = 2, - ACTIONS(10160), 12, + [60203] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168045,8 +162766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168065,10 +162786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168089,8 +162810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64529] = 2, - ACTIONS(10164), 12, + [60263] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168103,8 +162824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168123,10 +162844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168147,8 +162868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64589] = 2, - ACTIONS(10284), 12, + [60323] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168161,8 +162882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168180,8 +162901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -168205,8 +162926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64649] = 2, - ACTIONS(10168), 12, + [60383] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168219,8 +162940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168239,10 +162960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168263,8 +162984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64709] = 2, - ACTIONS(10172), 12, + [60443] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168277,8 +162998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168297,10 +163018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168321,8 +163042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64769] = 2, - ACTIONS(10176), 12, + [60503] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168335,8 +163056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168355,10 +163076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168379,8 +163100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64829] = 2, - ACTIONS(10280), 12, + [60563] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168393,8 +163114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168412,8 +163133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -168437,8 +163158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64889] = 2, - ACTIONS(10184), 12, + [60623] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168451,8 +163172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168471,10 +163192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168495,8 +163216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [64949] = 2, - ACTIONS(10188), 12, + [60683] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168509,8 +163230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168529,10 +163250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168553,8 +163274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65009] = 2, - ACTIONS(10192), 12, + [60743] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168567,8 +163288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168587,10 +163308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168611,8 +163332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65069] = 2, - ACTIONS(10196), 12, + [60803] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168625,8 +163346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168645,10 +163366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168669,8 +163390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65129] = 2, - ACTIONS(10200), 12, + [60863] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168683,8 +163404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168703,10 +163424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168727,8 +163448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65189] = 2, - ACTIONS(10204), 12, + [60923] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168741,8 +163462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168761,10 +163482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168785,8 +163506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65249] = 2, - ACTIONS(10208), 12, + [60983] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168799,8 +163520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168819,10 +163540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168843,8 +163564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65309] = 2, - ACTIONS(10212), 12, + [61043] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168857,8 +163578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168877,10 +163598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168901,8 +163622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65369] = 2, - ACTIONS(10216), 12, + [61103] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168915,8 +163636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168935,10 +163656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -168959,8 +163680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65429] = 2, - ACTIONS(10220), 12, + [61163] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -168973,8 +163694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -168993,10 +163714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169017,8 +163738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65489] = 2, - ACTIONS(10224), 12, + [61223] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169031,8 +163752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169051,10 +163772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169075,8 +163796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65549] = 2, - ACTIONS(10228), 12, + [61283] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169089,8 +163810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169109,10 +163830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169133,8 +163854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65609] = 2, - ACTIONS(10232), 12, + [61343] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169147,8 +163868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169167,10 +163888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169191,8 +163912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65669] = 2, - ACTIONS(10236), 12, + [61403] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169205,8 +163926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169225,10 +163946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169249,8 +163970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65729] = 2, - ACTIONS(10240), 12, + [61463] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169263,8 +163984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169283,10 +164004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169307,8 +164028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65789] = 2, - ACTIONS(10244), 12, + [61523] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169321,8 +164042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169344,9 +164065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -169365,8 +164086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65849] = 2, - ACTIONS(10464), 12, + [61583] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169379,8 +164100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169399,11 +164120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -169423,8 +164144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65909] = 2, - ACTIONS(10248), 12, + [61643] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169437,8 +164158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169457,10 +164178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169481,8 +164202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [65969] = 2, - ACTIONS(10252), 12, + [61703] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169495,8 +164216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169515,10 +164236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169539,8 +164260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66029] = 2, - ACTIONS(10256), 12, + [61763] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169553,8 +164274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169573,10 +164294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169597,8 +164318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66089] = 2, - ACTIONS(10456), 12, + [61823] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169611,8 +164332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169631,13 +164352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -169655,8 +164376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66149] = 2, - ACTIONS(10260), 12, + [61883] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169669,8 +164390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169689,10 +164410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169713,8 +164434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66209] = 2, - ACTIONS(10264), 12, + [61943] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169727,8 +164448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169747,10 +164468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169771,8 +164492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66269] = 2, - ACTIONS(10268), 12, + [62003] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169785,8 +164506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169805,10 +164526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169829,8 +164550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66329] = 2, - ACTIONS(10276), 12, + [62063] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169843,8 +164564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169862,8 +164583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, @@ -169887,8 +164608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66389] = 2, - ACTIONS(10350), 12, + [62123] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169901,8 +164622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -169921,10 +164642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -169945,8 +164666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66449] = 2, - ACTIONS(10272), 12, + [62183] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -169959,8 +164680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170003,8 +164724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66509] = 2, - ACTIONS(10276), 12, + [62243] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170017,8 +164738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170036,11 +164757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170061,8 +164782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66569] = 2, - ACTIONS(10280), 12, + [62303] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170075,8 +164796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170094,11 +164815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170119,8 +164840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66629] = 2, - ACTIONS(10284), 12, + [62363] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170133,8 +164854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170177,8 +164898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66689] = 2, - ACTIONS(10288), 12, + [62423] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170191,8 +164912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170235,8 +164956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66749] = 2, - ACTIONS(10292), 12, + [62483] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170249,8 +164970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170293,8 +165014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66809] = 2, - ACTIONS(10296), 12, + [62543] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170307,8 +165028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170351,8 +165072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66869] = 2, - ACTIONS(10300), 12, + [62603] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170365,8 +165086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170384,11 +165105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170409,8 +165130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66929] = 2, - ACTIONS(10304), 12, + [62663] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170423,8 +165144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170467,8 +165188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [66989] = 2, - ACTIONS(10308), 12, + [62723] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170481,8 +165202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170525,8 +165246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67049] = 2, - ACTIONS(10312), 12, + [62783] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170539,8 +165260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170558,11 +165279,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -170583,8 +165304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67109] = 2, - ACTIONS(10316), 12, + [62843] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170597,8 +165318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170641,8 +165362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67169] = 2, - ACTIONS(10320), 12, + [62903] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170655,8 +165376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170699,8 +165420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67229] = 2, - ACTIONS(10324), 12, + [62963] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170713,8 +165434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170757,8 +165478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67289] = 2, - ACTIONS(10330), 12, + [63023] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170771,8 +165492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170815,8 +165536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67349] = 2, - ACTIONS(10334), 12, + [63083] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170829,8 +165550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170873,8 +165594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67409] = 2, - ACTIONS(10338), 12, + [63143] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170887,8 +165608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170931,8 +165652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67469] = 2, - ACTIONS(10342), 12, + [63203] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -170945,8 +165666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -170989,8 +165710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67529] = 2, - ACTIONS(10346), 12, + [63263] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171003,8 +165724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171047,8 +165768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67589] = 2, - ACTIONS(10432), 12, + [63323] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171061,8 +165782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171105,8 +165826,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67649] = 2, - ACTIONS(10354), 12, + [63383] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171119,8 +165840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171163,8 +165884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67709] = 2, - ACTIONS(10362), 12, + [63443] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171177,8 +165898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171221,8 +165942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67769] = 2, - ACTIONS(10366), 12, + [63503] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171235,8 +165956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171279,8 +166000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67829] = 2, - ACTIONS(10370), 12, + [63563] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171293,8 +166014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171337,8 +166058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67889] = 2, - ACTIONS(10374), 12, + [63623] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171351,8 +166072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171395,8 +166116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [67949] = 2, - ACTIONS(10378), 12, + [63683] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171409,8 +166130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171453,22 +166174,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68009] = 2, - ACTIONS(10382), 12, + [63743] = 5, + ACTIONS(11225), 1, + aux_sym__text_token3, + ACTIONS(11222), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1704), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, - anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10534), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171476,10 +166202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -171490,7 +166216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -171510,9 +166235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - aux_sym__text_token3, - [68069] = 2, - ACTIONS(10386), 12, + [63809] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171525,8 +166249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171569,8 +166293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68129] = 2, - ACTIONS(10390), 12, + [63869] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171583,8 +166307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171627,8 +166351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68189] = 2, - ACTIONS(10394), 12, + [63929] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171641,8 +166365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171664,10 +166388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -171685,8 +166409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68249] = 2, - ACTIONS(10398), 12, + [63989] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171699,8 +166423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171743,8 +166467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68309] = 2, - ACTIONS(10402), 12, + [64049] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171757,8 +166481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171801,8 +166525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68369] = 2, - ACTIONS(10406), 12, + [64109] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171815,8 +166539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171859,8 +166583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68429] = 2, - ACTIONS(10416), 12, + [64169] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171873,8 +166597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171892,11 +166616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -171917,8 +166641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68489] = 2, - ACTIONS(10420), 12, + [64229] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171931,8 +166655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -171975,8 +166699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68549] = 2, - ACTIONS(10424), 12, + [64289] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -171989,8 +166713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172033,8 +166757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68609] = 2, - ACTIONS(10428), 12, + [64349] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172047,8 +166771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172091,8 +166815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68669] = 2, - ACTIONS(10476), 12, + [64409] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172105,8 +166829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172128,10 +166852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, - anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -172149,8 +166873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68729] = 2, - ACTIONS(10436), 12, + [64469] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172163,8 +166887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172207,8 +166931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68789] = 2, - ACTIONS(10440), 12, + [64529] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172221,8 +166945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172265,8 +166989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68849] = 2, - ACTIONS(10444), 12, + [64589] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172279,8 +167003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172323,8 +167047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68909] = 2, - ACTIONS(10448), 12, + [64649] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172337,8 +167061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172381,8 +167105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [68969] = 2, - ACTIONS(10124), 12, + [64709] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172395,8 +167119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172439,8 +167163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69029] = 2, - ACTIONS(10452), 12, + [64769] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172453,8 +167177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172497,8 +167221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69089] = 2, - ACTIONS(10460), 12, + [64829] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172511,8 +167235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172555,8 +167279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69149] = 2, - ACTIONS(10472), 12, + [64889] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172569,8 +167293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172613,8 +167337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69209] = 2, - ACTIONS(10464), 12, + [64949] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172627,8 +167351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172671,8 +167395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69269] = 2, - ACTIONS(10468), 12, + [65009] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172685,8 +167409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172729,8 +167453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69329] = 2, - ACTIONS(10152), 12, + [65069] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172743,8 +167467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172766,7 +167490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -172787,8 +167511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69389] = 2, - ACTIONS(10272), 12, + [65129] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172801,8 +167525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172820,11 +167544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -172845,8 +167569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69449] = 2, - ACTIONS(10350), 12, + [65189] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172859,8 +167583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172878,11 +167602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -172903,8 +167627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69509] = 2, - ACTIONS(10156), 12, + [65249] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172917,8 +167641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172940,7 +167664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -172961,8 +167685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69569] = 2, - ACTIONS(10160), 12, + [65309] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -172975,8 +167699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -172998,7 +167722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173019,8 +167743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69629] = 2, - ACTIONS(10164), 12, + [65369] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173033,8 +167757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173056,7 +167780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173077,8 +167801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69689] = 2, - ACTIONS(10120), 12, + [65429] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173091,8 +167815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173114,7 +167838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173135,8 +167859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69749] = 2, - ACTIONS(10168), 12, + [65489] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173149,8 +167873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173172,7 +167896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173193,8 +167917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69809] = 2, - ACTIONS(10172), 12, + [65549] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173207,8 +167931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173230,7 +167954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173251,8 +167975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69869] = 2, - ACTIONS(10176), 12, + [65609] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173265,8 +167989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173288,7 +168012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173309,8 +168033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69929] = 2, - ACTIONS(10268), 12, + [65669] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173323,8 +168047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173342,11 +168066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173367,8 +168091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [69989] = 2, - ACTIONS(10184), 12, + [65729] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173381,8 +168105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173404,7 +168128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173425,8 +168149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70049] = 2, - ACTIONS(10188), 12, + [65789] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173439,8 +168163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173462,7 +168186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173483,8 +168207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70109] = 2, - ACTIONS(10192), 12, + [65849] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173497,8 +168221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173520,7 +168244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173541,8 +168265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70169] = 2, - ACTIONS(10196), 12, + [65909] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173555,8 +168279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173578,7 +168302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173599,8 +168323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70229] = 2, - ACTIONS(10200), 12, + [65969] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173613,8 +168337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173636,7 +168360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173657,8 +168381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70289] = 2, - ACTIONS(10204), 12, + [66029] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173671,8 +168395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173694,7 +168418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173715,8 +168439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70349] = 2, - ACTIONS(10208), 12, + [66089] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173729,8 +168453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173752,7 +168476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173773,8 +168497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70409] = 2, - ACTIONS(10212), 12, + [66149] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173787,8 +168511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173810,7 +168534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173831,8 +168555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70469] = 2, - ACTIONS(10216), 12, + [66209] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173845,8 +168569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173868,7 +168592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173889,8 +168613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70529] = 2, - ACTIONS(10220), 12, + [66269] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173903,8 +168627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173926,7 +168650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -173947,8 +168671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70589] = 2, - ACTIONS(10224), 12, + [66329] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -173961,8 +168685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -173984,7 +168708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174005,8 +168729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70649] = 2, - ACTIONS(10228), 12, + [66389] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174019,8 +168743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174042,7 +168766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174063,8 +168787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70709] = 2, - ACTIONS(10232), 12, + [66449] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174077,8 +168801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174100,7 +168824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174121,8 +168845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70769] = 2, - ACTIONS(10236), 12, + [66509] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174135,8 +168859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174158,10 +168882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, + anon_sym_ATendfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -174179,8 +168903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70829] = 2, - ACTIONS(10240), 12, + [66569] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174193,8 +168917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174216,7 +168940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174237,8 +168961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70889] = 2, - ACTIONS(10244), 12, + [66629] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174251,8 +168975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174274,7 +168998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174295,27 +169019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [70949] = 5, - ACTIONS(10685), 1, - aux_sym__text_token3, - ACTIONS(10682), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(1824), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + [66689] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174323,10 +169042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -174337,6 +169056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174356,8 +169076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [71015] = 2, - ACTIONS(10248), 12, + aux_sym__text_token3, + [66749] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174370,8 +169091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174393,7 +169114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174414,8 +169135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71075] = 2, - ACTIONS(10252), 12, + [66809] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174428,8 +169149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174451,7 +169172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174472,8 +169193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71135] = 2, - ACTIONS(10256), 12, + [66869] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174486,8 +169207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174509,7 +169230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174530,8 +169251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71195] = 2, - ACTIONS(10456), 12, + [66929] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174544,8 +169265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174567,11 +169288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -174588,8 +169309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71255] = 2, - ACTIONS(10260), 12, + [66989] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174602,8 +169323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174625,7 +169346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174646,8 +169367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71315] = 2, - ACTIONS(10264), 12, + [67049] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174660,8 +169381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174683,7 +169404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174704,8 +169425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71375] = 2, - ACTIONS(10268), 12, + [67109] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174718,8 +169439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174741,7 +169462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, + anon_sym_ATenderror, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174762,8 +169483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71435] = 2, - ACTIONS(10264), 12, + [67169] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174776,8 +169497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174795,11 +169516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174820,8 +169541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71495] = 2, - ACTIONS(10350), 12, + [67229] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174834,8 +169555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174853,11 +169574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174878,8 +169599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71555] = 2, - ACTIONS(10272), 12, + [67289] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174892,8 +169613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174911,11 +169632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -174936,8 +169657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71615] = 2, - ACTIONS(10276), 12, + [67349] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -174950,8 +169671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -174994,8 +169715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71675] = 2, - ACTIONS(10280), 12, + [67409] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175008,8 +169729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175052,8 +169773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71735] = 2, - ACTIONS(10284), 12, + [67469] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175066,8 +169787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175110,8 +169831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71795] = 2, - ACTIONS(10288), 12, + [67529] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175124,8 +169845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175168,8 +169889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71855] = 2, - ACTIONS(10292), 12, + [67589] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175182,8 +169903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175226,8 +169947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71915] = 2, - ACTIONS(10296), 12, + [67649] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175240,8 +169961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175284,8 +170005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [71975] = 2, - ACTIONS(10300), 12, + [67709] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175298,8 +170019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175342,8 +170063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72035] = 2, - ACTIONS(10304), 12, + [67769] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175356,8 +170077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175375,11 +170096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -175400,8 +170121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72095] = 2, - ACTIONS(10308), 12, + [67829] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175414,8 +170135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175458,8 +170179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72155] = 2, - ACTIONS(10312), 12, + [67889] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175472,8 +170193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175516,8 +170237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72215] = 2, - ACTIONS(10316), 12, + [67949] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175530,8 +170251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175574,8 +170295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72275] = 2, - ACTIONS(10320), 12, + [68009] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175588,8 +170309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175632,8 +170353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72335] = 2, - ACTIONS(10324), 12, + [68069] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175646,8 +170367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175690,8 +170411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72395] = 2, - ACTIONS(10330), 12, + [68129] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175704,8 +170425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175748,8 +170469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72455] = 2, - ACTIONS(10334), 12, + [68189] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175762,8 +170483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175806,8 +170527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72515] = 2, - ACTIONS(10338), 12, + [68249] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175820,8 +170541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175864,8 +170585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72575] = 2, - ACTIONS(10342), 12, + [68309] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175878,8 +170599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175922,8 +170643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72635] = 2, - ACTIONS(10346), 12, + [68369] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175936,8 +170657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -175980,8 +170701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72695] = 2, - ACTIONS(10432), 12, + [68429] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -175994,8 +170715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176038,8 +170759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72755] = 2, - ACTIONS(10354), 12, + [68489] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176052,8 +170773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176096,8 +170817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72815] = 2, - ACTIONS(10362), 12, + [68549] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176110,8 +170831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176154,8 +170875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72875] = 2, - ACTIONS(10366), 12, + [68609] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176168,8 +170889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176212,8 +170933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72935] = 2, - ACTIONS(10370), 12, + [68669] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176226,8 +170947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176270,8 +170991,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [72995] = 2, - ACTIONS(10374), 12, + [68729] = 5, + ACTIONS(11231), 1, + aux_sym__text_token3, + ACTIONS(11228), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1787), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10534), 41, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + [68795] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176284,8 +171066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176328,8 +171110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73055] = 2, - ACTIONS(10378), 12, + [68855] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176342,8 +171124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176386,8 +171168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73115] = 2, - ACTIONS(10382), 12, + [68915] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176400,8 +171182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176423,11 +171205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -176444,8 +171226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73175] = 2, - ACTIONS(10386), 12, + [68975] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176458,8 +171240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176502,8 +171284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73235] = 2, - ACTIONS(10390), 12, + [69035] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176516,8 +171298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176560,8 +171342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73295] = 2, - ACTIONS(10394), 12, + [69095] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176574,8 +171356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176618,8 +171400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73355] = 2, - ACTIONS(10398), 12, + [69155] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176632,8 +171414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176651,11 +171433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -176676,8 +171458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73415] = 2, - ACTIONS(10402), 12, + [69215] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176690,8 +171472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176734,8 +171516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73475] = 2, - ACTIONS(10406), 12, + [69275] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176748,8 +171530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176792,8 +171574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73535] = 2, - ACTIONS(10416), 12, + [69335] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176806,8 +171588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176850,8 +171632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73595] = 2, - ACTIONS(10420), 12, + [69395] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176864,8 +171646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176908,8 +171690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73655] = 2, - ACTIONS(10424), 12, + [69455] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176922,8 +171704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -176966,8 +171748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73715] = 2, - ACTIONS(10428), 12, + [69515] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -176980,8 +171762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177024,8 +171806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73775] = 2, - ACTIONS(10476), 12, + [69575] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177038,8 +171820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177061,11 +171843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -177082,8 +171864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73835] = 2, - ACTIONS(10436), 12, + [69635] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177096,8 +171878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177140,8 +171922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73895] = 2, - ACTIONS(10440), 12, + [69695] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177154,8 +171936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177198,8 +171980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [73955] = 2, - ACTIONS(10444), 12, + [69755] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177212,8 +171994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177256,8 +172038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74015] = 2, - ACTIONS(10448), 12, + [69815] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177270,8 +172052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177314,8 +172096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74075] = 2, - ACTIONS(10124), 12, + [69875] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177328,8 +172110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177372,8 +172154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74135] = 2, - ACTIONS(10452), 12, + [69935] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177386,8 +172168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177430,8 +172212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74195] = 2, - ACTIONS(10460), 12, + [69995] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177444,8 +172226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177488,8 +172270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74255] = 2, - ACTIONS(10472), 12, + [70055] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177502,8 +172284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177546,8 +172328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74315] = 2, - ACTIONS(10464), 12, + [70115] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177560,8 +172342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177604,8 +172386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74375] = 2, - ACTIONS(10468), 12, + [70175] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177618,8 +172400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177662,8 +172444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74435] = 2, - ACTIONS(10152), 12, + [70235] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177676,8 +172458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177699,8 +172481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -177720,8 +172502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74495] = 2, - ACTIONS(10252), 12, + [70295] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177734,8 +172516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177753,11 +172535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -177778,8 +172560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74555] = 2, - ACTIONS(10472), 12, + [70355] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177792,8 +172574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177815,8 +172597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -177836,8 +172618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74615] = 2, - ACTIONS(10156), 12, + [70415] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177850,8 +172632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177873,8 +172655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -177894,8 +172676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74675] = 2, - ACTIONS(10160), 12, + [70475] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177908,8 +172690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177931,8 +172713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -177952,8 +172734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74735] = 2, - ACTIONS(10164), 12, + [70535] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -177966,8 +172748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -177989,8 +172771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178010,8 +172792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74795] = 2, - ACTIONS(10120), 12, + [70595] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178024,8 +172806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178047,8 +172829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178068,8 +172850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74855] = 2, - ACTIONS(10168), 12, + [70655] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178082,8 +172864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178105,8 +172887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178126,8 +172908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74915] = 2, - ACTIONS(10172), 12, + [70715] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178140,8 +172922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178163,8 +172945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178184,8 +172966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [74975] = 2, - ACTIONS(10176), 12, + [70775] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178198,8 +172980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178221,8 +173003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178242,8 +173024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75035] = 2, - ACTIONS(10256), 12, + [70835] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178256,8 +173038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178275,11 +173057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -178300,8 +173082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75095] = 2, - ACTIONS(10184), 12, + [70895] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178314,8 +173096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178337,8 +173119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178358,8 +173140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75155] = 2, - ACTIONS(10188), 12, + [70955] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178372,8 +173154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178395,8 +173177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178416,8 +173198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75215] = 2, - ACTIONS(10192), 12, + [71015] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178430,8 +173212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178453,8 +173235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178474,8 +173256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75275] = 2, - ACTIONS(10196), 12, + [71075] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178488,8 +173270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178511,8 +173293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178532,8 +173314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75335] = 2, - ACTIONS(10200), 12, + [71135] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178546,8 +173328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178569,8 +173351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178590,8 +173372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75395] = 2, - ACTIONS(10204), 12, + [71195] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178604,8 +173386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178627,8 +173409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178648,8 +173430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75455] = 2, - ACTIONS(10208), 12, + [71255] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178662,8 +173444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178685,8 +173467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178706,8 +173488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75515] = 2, - ACTIONS(10212), 12, + [71315] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178720,8 +173502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178743,8 +173525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178764,8 +173546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75575] = 2, - ACTIONS(10216), 12, + [71375] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178778,8 +173560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178801,8 +173583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178822,8 +173604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75635] = 2, - ACTIONS(10220), 12, + [71435] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178836,8 +173618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178859,8 +173641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178880,8 +173662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75695] = 2, - ACTIONS(10224), 12, + [71495] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178894,8 +173676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178918,10 +173700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -178938,8 +173720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75755] = 2, - ACTIONS(10228), 12, + [71555] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -178952,8 +173734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -178975,8 +173757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -178996,8 +173778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75815] = 2, - ACTIONS(10232), 12, + [71615] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179010,8 +173792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179033,8 +173815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179054,8 +173836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75875] = 2, - ACTIONS(10236), 12, + [71675] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179068,8 +173850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179091,8 +173873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179112,8 +173894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75935] = 2, - ACTIONS(10240), 12, + [71735] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179126,8 +173908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179149,8 +173931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179170,8 +173952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [75995] = 2, - ACTIONS(10244), 12, + [71795] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179184,8 +173966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179207,8 +173989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179228,27 +174010,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76055] = 5, - ACTIONS(10691), 1, - aux_sym__text_token3, - ACTIONS(10688), 2, + [71855] = 2, + ACTIONS(10982), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATelse, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - STATE(1909), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9948), 9, + ACTIONS(10980), 43, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym__text_token3, + [71915] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, - ACTIONS(9946), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179257,9 +174092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -179270,6 +174105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, anon_sym_ATcanany, anon_sym_ATfeature, @@ -179289,8 +174125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - [76121] = 2, - ACTIONS(10248), 12, + aux_sym__text_token3, + [71975] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179303,8 +174140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179326,8 +174163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179347,8 +174184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76181] = 2, - ACTIONS(10252), 12, + [72035] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179361,8 +174198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179384,8 +174221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179405,8 +174242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76241] = 2, - ACTIONS(10256), 12, + [72095] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179419,8 +174256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179442,8 +174279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179463,8 +174300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76301] = 2, - ACTIONS(10460), 12, + [72155] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179477,8 +174314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179521,8 +174358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76361] = 2, - ACTIONS(10260), 12, + [72215] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179535,8 +174372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179554,12 +174391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179579,8 +174416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76421] = 2, - ACTIONS(10264), 12, + [72275] = 2, + ACTIONS(10690), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179593,8 +174430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10688), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179608,6 +174445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -179617,7 +174455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -179637,8 +174474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76481] = 2, - ACTIONS(10268), 12, + [72335] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179651,8 +174488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179695,8 +174532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76541] = 2, - ACTIONS(10350), 12, + [72395] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179709,8 +174546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179753,8 +174590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76601] = 2, - ACTIONS(10272), 12, + [72455] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179767,8 +174604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179811,8 +174648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76661] = 2, - ACTIONS(10276), 12, + [72515] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179825,8 +174662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179869,8 +174706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76721] = 2, - ACTIONS(10280), 12, + [72575] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179883,8 +174720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179927,8 +174764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76781] = 2, - ACTIONS(10284), 12, + [72635] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179941,8 +174778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -179985,8 +174822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76841] = 2, - ACTIONS(10288), 12, + [72695] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -179999,8 +174836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180043,8 +174880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76901] = 2, - ACTIONS(10292), 12, + [72755] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180057,8 +174894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180076,12 +174913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -180101,8 +174938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [76961] = 2, - ACTIONS(10296), 12, + [72815] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180115,8 +174952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180159,8 +174996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77021] = 2, - ACTIONS(10300), 12, + [72875] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180173,8 +175010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180217,8 +175054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77081] = 2, - ACTIONS(10304), 12, + [72935] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180231,8 +175068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180275,8 +175112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77141] = 2, - ACTIONS(10308), 12, + [72995] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180289,8 +175126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180333,8 +175170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77201] = 2, - ACTIONS(10312), 12, + [73055] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180347,8 +175184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180391,8 +175228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77261] = 2, - ACTIONS(10316), 12, + [73115] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180405,8 +175242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180449,8 +175286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77321] = 2, - ACTIONS(10320), 12, + [73175] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180463,8 +175300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180507,8 +175344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77381] = 2, - ACTIONS(10324), 12, + [73235] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180521,8 +175358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180565,8 +175402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77441] = 2, - ACTIONS(10330), 12, + [73295] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180579,8 +175416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180623,8 +175460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77501] = 2, - ACTIONS(10334), 12, + [73355] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180637,8 +175474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180681,8 +175518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77561] = 2, - ACTIONS(10338), 12, + [73415] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180695,8 +175532,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180739,8 +175576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77621] = 2, - ACTIONS(10342), 12, + [73475] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180753,8 +175590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180797,8 +175634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77681] = 2, - ACTIONS(10346), 12, + [73535] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180811,8 +175648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180855,8 +175692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77741] = 2, - ACTIONS(10432), 12, + [73595] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180869,8 +175706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180913,8 +175750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77801] = 2, - ACTIONS(10354), 12, + [73655] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180927,8 +175764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -180971,8 +175808,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77861] = 2, - ACTIONS(10362), 12, + [73715] = 5, + ACTIONS(11237), 1, + aux_sym__text_token3, + ACTIONS(11234), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(1870), 2, + sym__text, + aux_sym_php_only_repeat1, + ACTIONS(10536), 9, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + ACTIONS(10534), 41, + sym_comment, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + anon_sym_ATpushIf, + anon_sym_ATendPushIf, + anon_sym_ATprependOnce, + anon_sym_ATif, + anon_sym_ATisset, + anon_sym_ATempty, + anon_sym_ATauth, + anon_sym_ATguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATfeature, + aux_sym__custom_token1, + anon_sym_ATswitch, + aux_sym_loop_operator_token1, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATsetup, + anon_sym_ATtask, + anon_sym_ATstory, + anon_sym_ATbefore, + anon_sym_ATafter, + anon_sym_ATsuccess, + anon_sym_ATfinished, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + [73781] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -180985,8 +175883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181029,8 +175927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77921] = 2, - ACTIONS(10366), 12, + [73841] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181043,8 +175941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181087,8 +175985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [77981] = 2, - ACTIONS(10370), 12, + [73901] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181101,8 +175999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181120,12 +176018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, - anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -181145,8 +176043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78041] = 2, - ACTIONS(10374), 12, + [73961] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181159,8 +176057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181203,8 +176101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78101] = 2, - ACTIONS(10378), 12, + [74021] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181217,8 +176115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181261,8 +176159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78161] = 2, - ACTIONS(10382), 12, + [74081] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181275,8 +176173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181319,8 +176217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78221] = 2, - ACTIONS(10386), 12, + [74141] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181333,8 +176231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181377,8 +176275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78281] = 2, - ACTIONS(10390), 12, + [74201] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181391,8 +176289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181435,8 +176333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78341] = 2, - ACTIONS(10394), 12, + [74261] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181449,8 +176347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181493,8 +176391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78401] = 2, - ACTIONS(10398), 12, + [74321] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181507,8 +176405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181551,8 +176449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78461] = 2, - ACTIONS(10402), 12, + [74381] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181565,8 +176463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181609,8 +176507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78521] = 2, - ACTIONS(10406), 12, + [74441] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181623,8 +176521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181667,8 +176565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78581] = 2, - ACTIONS(10416), 12, + [74501] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181681,8 +176579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181725,8 +176623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78641] = 2, - ACTIONS(10420), 12, + [74561] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181739,8 +176637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181783,8 +176681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78701] = 2, - ACTIONS(10424), 12, + [74621] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181797,8 +176695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181841,8 +176739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78761] = 2, - ACTIONS(10428), 12, + [74681] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181855,8 +176753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181899,8 +176797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78821] = 2, - ACTIONS(10452), 12, + [74741] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181913,8 +176811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -181957,8 +176855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78881] = 2, - ACTIONS(10436), 12, + [74801] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -181971,8 +176869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182015,8 +176913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [78941] = 2, - ACTIONS(10440), 12, + [74861] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182029,8 +176927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182073,8 +176971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79001] = 2, - ACTIONS(10444), 12, + [74921] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182087,8 +176985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182131,8 +177029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79061] = 2, - ACTIONS(10448), 12, + [74981] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182145,8 +177043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 43, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182189,8 +177087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79121] = 2, - ACTIONS(10456), 12, + [75041] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182203,8 +177101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182227,6 +177125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182246,8 +177145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79180] = 2, - ACTIONS(10476), 12, + [75101] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -182260,8 +177159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182284,6 +177183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182303,21 +177203,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79239] = 2, - ACTIONS(10260), 11, + [75161] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182328,6 +177229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182339,6 +177241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182346,7 +177249,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -182359,32 +177261,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79297] = 2, - ACTIONS(10224), 11, + [75221] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182396,6 +177299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182415,32 +177319,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79355] = 2, - ACTIONS(10420), 11, + [75281] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182452,6 +177357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182471,21 +177377,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79413] = 2, - ACTIONS(10456), 11, + [75341] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182495,8 +177402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182508,6 +177415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182527,22 +177435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79471] = 2, - ACTIONS(10152), 11, + [75401] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182553,6 +177461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182564,6 +177473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182583,32 +177493,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79529] = 2, - ACTIONS(10416), 11, + [75461] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182620,6 +177531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182639,21 +177551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79587] = 2, - ACTIONS(10456), 11, + [75521] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182662,9 +177575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182676,6 +177589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182695,32 +177609,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79645] = 2, - ACTIONS(10406), 11, + [75581] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182732,6 +177647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182751,21 +177667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79703] = 2, - ACTIONS(10436), 11, + [75641] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182776,7 +177693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182788,6 +177705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182807,32 +177725,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79761] = 2, - ACTIONS(10402), 11, + [75701] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182844,6 +177763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182863,21 +177783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79819] = 2, - ACTIONS(10468), 11, + [75761] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182888,7 +177809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182900,6 +177821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182919,21 +177841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79877] = 2, - ACTIONS(10464), 11, + [75821] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -182944,7 +177867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -182956,6 +177879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -182975,21 +177899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79935] = 2, - ACTIONS(10472), 11, + [75881] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183000,7 +177925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183012,6 +177937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183031,21 +177957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [79993] = 2, - ACTIONS(10460), 11, + [75941] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183056,7 +177983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183068,6 +177995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183087,21 +178015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80051] = 2, - ACTIONS(10452), 11, + [76001] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183112,7 +178041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183124,6 +178053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183143,21 +178073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80109] = 2, - ACTIONS(10124), 11, + [76061] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183168,7 +178099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183180,6 +178111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183199,21 +178131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80167] = 2, - ACTIONS(10448), 11, + [76121] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183224,7 +178157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183236,6 +178169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183255,21 +178189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80225] = 2, - ACTIONS(10444), 11, + [76181] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183280,7 +178215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183292,6 +178227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183311,21 +178247,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80283] = 2, - ACTIONS(10440), 11, + [76241] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183336,7 +178273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183348,6 +178285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183367,21 +178305,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80341] = 2, - ACTIONS(10316), 11, + [76301] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183391,8 +178330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183404,6 +178343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183423,21 +178363,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80399] = 2, - ACTIONS(10428), 11, + [76361] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183448,7 +178389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183460,6 +178401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183479,21 +178421,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80457] = 2, - ACTIONS(10424), 11, + [76421] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183504,7 +178447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183516,6 +178459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183535,21 +178479,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80515] = 2, - ACTIONS(10420), 11, + [76481] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183560,7 +178505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183572,6 +178517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183591,21 +178537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80573] = 2, - ACTIONS(10416), 11, + [76541] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183616,7 +178563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183628,6 +178575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183647,21 +178595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80631] = 2, - ACTIONS(10406), 11, + [76601] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183672,7 +178621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183684,6 +178633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183703,21 +178653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80689] = 2, - ACTIONS(10402), 11, + [76661] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183728,7 +178679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183740,6 +178691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183759,21 +178711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80747] = 2, - ACTIONS(10398), 11, + [76721] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183784,7 +178737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183796,6 +178749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183815,21 +178769,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80805] = 2, - ACTIONS(10394), 11, + [76781] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183840,7 +178795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183852,6 +178807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183871,21 +178827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80863] = 2, - ACTIONS(10390), 11, + [76841] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183896,7 +178853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183908,6 +178865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183927,21 +178885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80921] = 2, - ACTIONS(10386), 11, + [76901] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -183952,7 +178911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -183964,6 +178923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -183983,21 +178943,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [80979] = 2, - ACTIONS(10382), 11, + [76961] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184008,7 +178969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184020,6 +178981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATcannot, + anon_sym_ATendcannot, anon_sym_ATcanany, anon_sym_ATfeature, aux_sym__custom_token1, @@ -184039,21 +179001,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81037] = 2, - ACTIONS(10378), 11, + [77021] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184064,7 +179027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184077,6 +179040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -184095,21 +179059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81095] = 2, - ACTIONS(10374), 11, + [77081] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184120,13 +179085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -184151,21 +179117,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81153] = 2, - ACTIONS(10370), 11, + [77141] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184176,13 +179143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, @@ -184207,21 +179175,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81211] = 2, - ACTIONS(10366), 11, + [77201] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184232,7 +179201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184245,6 +179214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -184263,21 +179233,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81269] = 2, - ACTIONS(10362), 11, + [77261] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184288,7 +179259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184301,6 +179272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -184319,21 +179291,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81327] = 2, - ACTIONS(10354), 11, + [77321] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184344,7 +179317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184357,6 +179330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, @@ -184375,21 +179349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81385] = 2, - ACTIONS(10456), 11, + [77381] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 43, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184400,6 +179375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184412,11 +179388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATerror, anon_sym_ATcannot, anon_sym_ATcanany, + anon_sym_ATendcanany, anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -184431,21 +179407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81443] = 2, - ACTIONS(10432), 11, + [77441] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184456,7 +179433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184487,21 +179464,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81501] = 2, - ACTIONS(10346), 11, + [77500] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, + anon_sym_ATelse, anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184512,7 +179490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184543,8 +179521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81559] = 2, - ACTIONS(10342), 11, + [77559] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184556,8 +179534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184568,7 +179546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184587,6 +179564,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -184599,8 +179577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81617] = 2, - ACTIONS(10338), 11, + [77617] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184612,8 +179590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184624,7 +179602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184640,6 +179617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -184655,8 +179633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81675] = 2, - ACTIONS(10334), 11, + [77675] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184668,19 +179646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184711,8 +179689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81733] = 2, - ACTIONS(10330), 11, + [77733] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184724,19 +179702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184767,8 +179745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81791] = 2, - ACTIONS(10324), 11, + [77791] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184780,19 +179758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184823,8 +179801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81849] = 2, - ACTIONS(10320), 11, + [77849] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184836,19 +179814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184879,8 +179857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81907] = 2, - ACTIONS(10316), 11, + [77907] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184892,8 +179870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184901,10 +179879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184935,8 +179913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [81965] = 2, - ACTIONS(10312), 11, + [77965] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -184948,8 +179926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -184959,8 +179937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -184991,8 +179969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82023] = 2, - ACTIONS(10308), 11, + [78023] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185004,8 +179982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185047,8 +180025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82081] = 2, - ACTIONS(10304), 11, + [78081] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185060,19 +180038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -185103,8 +180081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82139] = 2, - ACTIONS(10300), 11, + [78139] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185116,8 +180094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185159,8 +180137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82197] = 2, - ACTIONS(10296), 11, + [78197] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185172,8 +180150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185215,8 +180193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82255] = 2, - ACTIONS(10292), 11, + [78255] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185228,8 +180206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185271,8 +180249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82313] = 2, - ACTIONS(10288), 11, + [78313] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185284,8 +180262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185327,8 +180305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82371] = 2, - ACTIONS(10284), 11, + [78371] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185340,8 +180318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185383,8 +180361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82429] = 2, - ACTIONS(10280), 11, + [78429] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185396,8 +180374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185439,8 +180417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82487] = 2, - ACTIONS(10276), 11, + [78487] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185452,8 +180430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185495,8 +180473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82545] = 2, - ACTIONS(10272), 11, + [78545] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185508,8 +180486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185551,8 +180529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82603] = 2, - ACTIONS(10350), 11, + [78603] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185564,8 +180542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185607,8 +180585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82661] = 2, - ACTIONS(10268), 11, + [78661] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185620,8 +180598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185663,8 +180641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82719] = 2, - ACTIONS(10264), 11, + [78719] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185676,8 +180654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185719,8 +180697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82777] = 2, - ACTIONS(10260), 11, + [78777] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185732,8 +180710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185744,7 +180722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -185761,6 +180738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -185775,8 +180753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82835] = 2, - ACTIONS(10256), 11, + [78835] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185788,8 +180766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185831,8 +180809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82893] = 2, - ACTIONS(10252), 11, + [78893] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185844,8 +180822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185887,8 +180865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [82951] = 2, - ACTIONS(10248), 11, + [78951] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185900,8 +180878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -185943,8 +180921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83009] = 2, - ACTIONS(10398), 11, + [79009] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -185956,19 +180934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -185999,8 +180977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83067] = 2, - ACTIONS(10244), 11, + [79067] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186012,8 +180990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186055,8 +181033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83125] = 2, - ACTIONS(10240), 11, + [79125] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186068,8 +181046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186111,8 +181089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83183] = 2, - ACTIONS(10236), 11, + [79183] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186124,8 +181102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186167,8 +181145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83241] = 2, - ACTIONS(10232), 11, + [79241] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186180,8 +181158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186223,8 +181201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83299] = 2, - ACTIONS(10228), 11, + [79299] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186236,8 +181214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186279,8 +181257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83357] = 2, - ACTIONS(10224), 11, + [79357] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186292,8 +181270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186335,8 +181313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83415] = 2, - ACTIONS(10220), 11, + [79415] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186348,8 +181326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186391,8 +181369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83473] = 2, - ACTIONS(10476), 11, + [79473] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186404,8 +181382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186415,8 +181393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -186447,8 +181425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83531] = 2, - ACTIONS(10216), 11, + [79531] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186460,8 +181438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186503,8 +181481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83589] = 2, - ACTIONS(10212), 11, + [79589] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186516,8 +181494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186559,8 +181537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83647] = 2, - ACTIONS(10208), 11, + [79647] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186572,8 +181550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186615,8 +181593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83705] = 2, - ACTIONS(10204), 11, + [79705] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186628,8 +181606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186671,8 +181649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83763] = 2, - ACTIONS(10200), 11, + [79763] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186684,8 +181662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186727,8 +181705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83821] = 2, - ACTIONS(10476), 11, + [79821] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186740,8 +181718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186752,6 +181730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -186768,7 +181747,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -186783,8 +181761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83879] = 2, - ACTIONS(10196), 11, + [79879] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186796,8 +181774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186839,8 +181817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83937] = 2, - ACTIONS(10192), 11, + [79937] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186852,8 +181830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186895,8 +181873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [83995] = 2, - ACTIONS(10188), 11, + [79995] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186908,8 +181886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -186951,8 +181929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84053] = 2, - ACTIONS(10184), 11, + [80053] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -186964,8 +181942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187007,8 +181985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84111] = 2, - ACTIONS(10176), 11, + [80111] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187020,8 +181998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187063,8 +182041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84169] = 2, - ACTIONS(10172), 11, + [80169] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187076,8 +182054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187119,8 +182097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84227] = 2, - ACTIONS(10168), 11, + [80227] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187132,8 +182110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187175,8 +182153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84285] = 2, - ACTIONS(10120), 11, + [80285] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187188,8 +182166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187231,8 +182209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84343] = 2, - ACTIONS(10164), 11, + [80343] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187244,8 +182222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187287,8 +182265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84401] = 2, - ACTIONS(10160), 11, + [80401] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187300,8 +182278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187343,8 +182321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84459] = 2, - ACTIONS(10156), 11, + [80459] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187356,8 +182334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187399,8 +182377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84517] = 2, - ACTIONS(10152), 11, + [80517] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187412,8 +182390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187455,8 +182433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84575] = 2, - ACTIONS(10468), 11, + [80575] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187468,8 +182446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187479,8 +182457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187511,8 +182489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84633] = 2, - ACTIONS(10464), 11, + [80633] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187524,8 +182502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187535,8 +182513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187567,8 +182545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84691] = 2, - ACTIONS(10472), 11, + [80691] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187580,8 +182558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187591,8 +182569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187623,8 +182601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84749] = 2, - ACTIONS(10460), 11, + [80749] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187636,8 +182614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187647,8 +182625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187679,8 +182657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84807] = 2, - ACTIONS(10452), 11, + [80807] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187692,8 +182670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187703,8 +182681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187735,8 +182713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84865] = 2, - ACTIONS(10124), 11, + [80865] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187748,8 +182726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187759,8 +182737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187791,8 +182769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84923] = 2, - ACTIONS(10448), 11, + [80923] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187804,8 +182782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187815,8 +182793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187847,8 +182825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [84981] = 2, - ACTIONS(10444), 11, + [80981] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187860,18 +182838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -187903,8 +182881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85039] = 2, - ACTIONS(10440), 11, + [81039] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187916,8 +182894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187927,8 +182905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -187959,8 +182937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85097] = 2, - ACTIONS(10436), 11, + [81097] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -187972,8 +182950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -187983,8 +182961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188015,8 +182993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85155] = 2, - ACTIONS(10428), 11, + [81155] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188028,8 +183006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188039,8 +183017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188071,8 +183049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85213] = 2, - ACTIONS(10424), 11, + [81213] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188084,8 +183062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188095,7 +183073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188113,6 +183090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -188127,8 +183105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85271] = 2, - ACTIONS(10420), 11, + [81271] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188140,8 +183118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188151,8 +183129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188183,8 +183161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85329] = 2, - ACTIONS(10416), 11, + [81329] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188196,8 +183174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188207,8 +183185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188239,8 +183217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85387] = 2, - ACTIONS(10406), 11, + [81387] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188252,8 +183230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188263,7 +183242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188295,8 +183273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85445] = 2, - ACTIONS(10402), 11, + [81445] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188308,8 +183286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188319,8 +183297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188351,8 +183329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85503] = 2, - ACTIONS(10398), 11, + [81503] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188364,8 +183342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188375,8 +183353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188407,8 +183385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85561] = 2, - ACTIONS(10394), 11, + [81561] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188420,8 +183398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188431,8 +183409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188463,8 +183441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85619] = 2, - ACTIONS(10390), 11, + [81619] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188476,8 +183454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188487,8 +183465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188519,8 +183497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85677] = 2, - ACTIONS(10386), 11, + [81677] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188532,8 +183510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188543,8 +183521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188575,8 +183553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85735] = 2, - ACTIONS(10382), 11, + [81735] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188588,8 +183566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188599,8 +183577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188631,8 +183609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85793] = 2, - ACTIONS(10378), 11, + [81793] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188644,8 +183622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188655,8 +183633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188687,8 +183665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85851] = 2, - ACTIONS(10374), 11, + [81851] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188700,18 +183678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188743,8 +183721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85909] = 2, - ACTIONS(10370), 11, + [81909] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188756,8 +183734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188767,8 +183745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188799,8 +183777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [85967] = 2, - ACTIONS(10366), 11, + [81967] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188812,8 +183790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188823,8 +183801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188855,8 +183833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86025] = 2, - ACTIONS(10362), 11, + [82025] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188868,18 +183846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -188911,8 +183889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86083] = 2, - ACTIONS(10354), 11, + [82083] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188924,8 +183902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188935,8 +183913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -188967,8 +183945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86141] = 2, - ACTIONS(10432), 11, + [82141] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -188980,8 +183958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -188991,8 +183969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189023,8 +184001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86199] = 2, - ACTIONS(10346), 11, + [82199] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189036,8 +184014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189047,8 +184025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189079,8 +184057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86257] = 2, - ACTIONS(10456), 11, + [82257] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189092,8 +184070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189104,6 +184082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189121,7 +184100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -189135,8 +184113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86315] = 2, - ACTIONS(10342), 11, + [82315] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189148,8 +184126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189159,8 +184137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189191,8 +184169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86373] = 2, - ACTIONS(10338), 11, + [82373] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189204,8 +184182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189247,8 +184225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86431] = 2, - ACTIONS(10334), 11, + [82431] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189260,8 +184238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189271,8 +184249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189303,8 +184281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86489] = 2, - ACTIONS(10330), 11, + [82489] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189316,8 +184294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189327,8 +184305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189359,8 +184337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86547] = 2, - ACTIONS(10324), 11, + [82547] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189372,8 +184350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189383,8 +184361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189415,8 +184393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86605] = 2, - ACTIONS(10320), 11, + [82605] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189428,8 +184406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189439,8 +184417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189471,8 +184449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86663] = 2, - ACTIONS(10284), 11, + [82663] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189484,8 +184462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189495,8 +184473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189527,8 +184505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86721] = 2, - ACTIONS(10312), 11, + [82721] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189540,8 +184518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189551,8 +184529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189583,8 +184561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86779] = 2, - ACTIONS(10308), 11, + [82779] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189596,8 +184574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189607,8 +184585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189639,8 +184617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86837] = 2, - ACTIONS(10304), 11, + [82837] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189652,18 +184630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -189695,8 +184673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86895] = 2, - ACTIONS(10300), 11, + [82895] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189708,8 +184686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189719,8 +184697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -189751,8 +184729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [86953] = 2, - ACTIONS(10296), 11, + [82953] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189764,8 +184742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189807,8 +184785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87011] = 2, - ACTIONS(10292), 11, + [83011] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189820,8 +184798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189863,8 +184841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87069] = 2, - ACTIONS(10288), 11, + [83069] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189876,8 +184854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -189919,64 +184897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87127] = 2, - ACTIONS(10184), 11, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATendPushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [87185] = 2, - ACTIONS(10280), 11, + [83127] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -189988,8 +184910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190031,8 +184953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87243] = 2, - ACTIONS(10276), 11, + [83185] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190044,8 +184966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190087,8 +185009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87301] = 2, - ACTIONS(10272), 11, + [83243] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190100,8 +185022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190143,8 +185065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87359] = 2, - ACTIONS(10350), 11, + [83301] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190156,8 +185078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190199,8 +185121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87417] = 2, - ACTIONS(10268), 11, + [83359] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190212,8 +185134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190255,8 +185177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87475] = 2, - ACTIONS(10264), 11, + [83417] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190268,8 +185190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190311,8 +185233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87533] = 2, - ACTIONS(10260), 11, + [83475] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190324,8 +185246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190367,8 +185289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87591] = 2, - ACTIONS(10256), 11, + [83533] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190380,8 +185302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190391,7 +185313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -190410,6 +185331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -190423,8 +185345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87649] = 2, - ACTIONS(10252), 11, + [83591] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190436,8 +185358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190479,8 +185401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87707] = 2, - ACTIONS(10248), 11, + [83649] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190492,8 +185414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190535,8 +185457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87765] = 2, - ACTIONS(10394), 11, + [83707] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190548,64 +185470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATendfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - anon_sym_ATpushIf, - anon_sym_ATprependOnce, - anon_sym_ATif, - anon_sym_ATisset, - anon_sym_ATempty, - anon_sym_ATauth, - anon_sym_ATguest, - anon_sym_ATproduction, - anon_sym_ATenv, - anon_sym_AThasSection, - anon_sym_ATsectionMissing, - anon_sym_ATerror, - anon_sym_ATcannot, - anon_sym_ATcanany, - anon_sym_ATfeature, - aux_sym__custom_token1, - anon_sym_ATswitch, - aux_sym_loop_operator_token1, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATsetup, - anon_sym_ATtask, - anon_sym_ATstory, - anon_sym_ATbefore, - anon_sym_ATafter, - anon_sym_ATsuccess, - anon_sym_ATfinished, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym__text_token3, - [87823] = 2, - ACTIONS(10244), 11, - anon_sym_LBRACE_LBRACE, - aux_sym__inline_directive_token1, - anon_sym_ATsection, - anon_sym_ATpush, - anon_sym_ATprepend, - anon_sym_ATunless, - anon_sym_ATcan, - aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190647,8 +185513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87881] = 2, - ACTIONS(10240), 11, + [83765] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190660,8 +185526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190703,8 +185569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87939] = 2, - ACTIONS(10236), 11, + [83823] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190716,8 +185582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190759,8 +185625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [87997] = 2, - ACTIONS(10232), 11, + [83881] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190772,8 +185638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190815,8 +185681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88055] = 2, - ACTIONS(10228), 11, + [83939] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190828,8 +185694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190871,8 +185737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88113] = 2, - ACTIONS(10224), 11, + [83997] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190884,8 +185750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190927,8 +185793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88171] = 2, - ACTIONS(10220), 11, + [84055] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190940,8 +185806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -190983,8 +185849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88229] = 2, - ACTIONS(10216), 11, + [84113] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -190996,8 +185862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191039,8 +185905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88287] = 2, - ACTIONS(10212), 11, + [84171] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191052,8 +185918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191095,8 +185961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88345] = 2, - ACTIONS(10208), 11, + [84229] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191108,8 +185974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191151,8 +186017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88403] = 2, - ACTIONS(10204), 11, + [84287] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191164,8 +186030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191175,7 +186041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -191207,8 +186073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88461] = 2, - ACTIONS(10200), 11, + [84345] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191220,8 +186086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191263,8 +186129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88519] = 2, - ACTIONS(10196), 11, + [84403] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191276,8 +186142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191319,8 +186185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88577] = 2, - ACTIONS(10192), 11, + [84461] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191332,8 +186198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191375,8 +186241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88635] = 2, - ACTIONS(10188), 11, + [84519] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191388,8 +186254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191431,8 +186297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88693] = 2, - ACTIONS(10476), 11, + [84577] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191444,8 +186310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191455,6 +186321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -191473,7 +186340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -191487,8 +186353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88751] = 2, - ACTIONS(10184), 11, + [84635] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191500,8 +186366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191543,8 +186409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88809] = 2, - ACTIONS(10176), 11, + [84693] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191556,8 +186422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191599,8 +186465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88867] = 2, - ACTIONS(10172), 11, + [84751] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191612,8 +186478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191655,8 +186521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88925] = 2, - ACTIONS(10168), 11, + [84809] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191668,8 +186534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191711,8 +186577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [88983] = 2, - ACTIONS(10120), 11, + [84867] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191724,8 +186590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191767,8 +186633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89041] = 2, - ACTIONS(10164), 11, + [84925] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191780,8 +186646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191823,8 +186689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89099] = 2, - ACTIONS(10160), 11, + [84983] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191836,8 +186702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191879,8 +186745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89157] = 2, - ACTIONS(10156), 11, + [85041] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191892,8 +186758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191935,8 +186801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89215] = 2, - ACTIONS(10152), 11, + [85099] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -191948,8 +186814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -191991,8 +186857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89273] = 2, - ACTIONS(10468), 11, + [85157] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192004,18 +186870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192047,8 +186913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89331] = 2, - ACTIONS(10464), 11, + [85215] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192060,8 +186926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192071,7 +186937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192103,8 +186969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89389] = 2, - ACTIONS(10472), 11, + [85273] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192116,8 +186982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192127,7 +186993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192159,8 +187025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89447] = 2, - ACTIONS(10460), 11, + [85331] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192172,8 +187038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192183,7 +187049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192215,8 +187081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89505] = 2, - ACTIONS(10452), 11, + [85389] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192228,8 +187094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192239,7 +187105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192271,8 +187137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89563] = 2, - ACTIONS(10124), 11, + [85447] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192284,18 +187150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192327,8 +187193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89621] = 2, - ACTIONS(10448), 11, + [85505] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192340,8 +187206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192351,7 +187217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192383,8 +187249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89679] = 2, - ACTIONS(10444), 11, + [85563] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192396,8 +187262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192407,7 +187273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192439,8 +187305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89737] = 2, - ACTIONS(10440), 11, + [85621] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192452,8 +187318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192463,7 +187329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192495,8 +187361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89795] = 2, - ACTIONS(10436), 11, + [85679] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192508,8 +187374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192519,7 +187385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192551,8 +187417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89853] = 2, - ACTIONS(10428), 11, + [85737] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192564,8 +187430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192575,7 +187441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192607,8 +187473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89911] = 2, - ACTIONS(10424), 11, + [85795] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192620,8 +187486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192631,7 +187497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192663,8 +187529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [89969] = 2, - ACTIONS(10420), 11, + [85853] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192676,8 +187542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192687,7 +187553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192719,8 +187585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90027] = 2, - ACTIONS(10416), 11, + [85911] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192732,8 +187598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192743,7 +187609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192775,8 +187641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90085] = 2, - ACTIONS(10406), 11, + [85969] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192788,8 +187654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192799,7 +187665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192818,6 +187683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -192831,8 +187697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90143] = 2, - ACTIONS(10402), 11, + [86027] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192844,18 +187710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192887,8 +187753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90201] = 2, - ACTIONS(10398), 11, + [86085] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192900,8 +187766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192911,7 +187777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192943,8 +187809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90259] = 2, - ACTIONS(10394), 11, + [86143] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -192956,8 +187822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -192967,7 +187833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -192999,8 +187865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90317] = 2, - ACTIONS(10390), 11, + [86201] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193012,8 +187878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193023,7 +187889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193055,8 +187921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90375] = 2, - ACTIONS(10386), 11, + [86259] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193068,8 +187934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193079,7 +187945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193111,8 +187977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90433] = 2, - ACTIONS(10382), 11, + [86317] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193124,18 +187990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193167,8 +188033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90491] = 2, - ACTIONS(10378), 11, + [86375] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193180,8 +188046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193191,7 +188057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193223,8 +188089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90549] = 2, - ACTIONS(10374), 11, + [86433] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193236,8 +188102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193247,7 +188113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193279,8 +188145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90607] = 2, - ACTIONS(10370), 11, + [86491] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193292,8 +188158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193303,7 +188169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193335,8 +188201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90665] = 2, - ACTIONS(10366), 11, + [86549] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193348,8 +188214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193359,7 +188225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193391,8 +188257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90723] = 2, - ACTIONS(10362), 11, + [86607] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193404,8 +188270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193415,7 +188281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193447,8 +188313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90781] = 2, - ACTIONS(10354), 11, + [86665] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193460,8 +188326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193471,7 +188337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193503,8 +188369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90839] = 2, - ACTIONS(10432), 11, + [86723] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193516,8 +188382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193527,7 +188393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193559,8 +188425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90897] = 2, - ACTIONS(10346), 11, + [86781] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193572,18 +188438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193615,8 +188481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [90955] = 2, - ACTIONS(10342), 11, + [86839] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193628,18 +188494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193671,8 +188537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91013] = 2, - ACTIONS(10338), 11, + [86897] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193684,8 +188550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193695,7 +188561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193727,8 +188593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91071] = 2, - ACTIONS(10334), 11, + [86955] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193740,8 +188606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193751,7 +188617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193783,8 +188649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91129] = 2, - ACTIONS(10456), 11, + [87013] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193796,13 +188662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -193826,7 +188693,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -193839,8 +188705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91187] = 2, - ACTIONS(10330), 11, + [87071] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193852,8 +188718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193863,7 +188729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193895,8 +188761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91245] = 2, - ACTIONS(10324), 11, + [87129] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193908,8 +188774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193919,7 +188785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -193951,8 +188817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91303] = 2, - ACTIONS(10320), 11, + [87187] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -193964,8 +188830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -193975,7 +188841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194007,8 +188873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91361] = 2, - ACTIONS(10316), 11, + [87245] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194020,8 +188886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194031,7 +188897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194063,8 +188929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91419] = 2, - ACTIONS(10312), 11, + [87303] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194076,8 +188942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194087,7 +188953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194119,8 +188985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91477] = 2, - ACTIONS(10152), 11, + [87361] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194132,18 +188998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194175,8 +189041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91535] = 2, - ACTIONS(10308), 11, + [87419] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194188,8 +189054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194199,7 +189065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194231,8 +189097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91593] = 2, - ACTIONS(10390), 11, + [87477] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194244,18 +189110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194287,8 +189153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91651] = 2, - ACTIONS(10300), 11, + [87535] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194300,8 +189166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194311,7 +189177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194343,8 +189209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91709] = 2, - ACTIONS(10296), 11, + [87593] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194356,8 +189222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194367,7 +189233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194399,8 +189265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91767] = 2, - ACTIONS(10292), 11, + [87651] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194412,8 +189278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194423,7 +189289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194455,8 +189321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91825] = 2, - ACTIONS(10288), 11, + [87709] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194468,8 +189334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194479,7 +189345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194511,8 +189377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91883] = 2, - ACTIONS(10284), 11, + [87767] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194524,8 +189390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194535,7 +189401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194567,8 +189433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91941] = 2, - ACTIONS(10280), 11, + [87825] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194580,18 +189446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194623,8 +189489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [91999] = 2, - ACTIONS(10276), 11, + [87883] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194636,8 +189502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194647,7 +189513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194679,8 +189545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92057] = 2, - ACTIONS(10272), 11, + [87941] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194692,8 +189558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194735,8 +189601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92115] = 2, - ACTIONS(10350), 11, + [87999] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194748,8 +189614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194791,8 +189657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92173] = 2, - ACTIONS(10156), 11, + [88057] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194804,18 +189670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194847,8 +189713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92231] = 2, - ACTIONS(10268), 11, + [88115] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194860,8 +189726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -194903,8 +189769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92289] = 2, - ACTIONS(10160), 11, + [88173] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194916,18 +189782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -194959,8 +189825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92347] = 2, - ACTIONS(10264), 11, + [88231] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -194972,8 +189838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195015,8 +189881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92405] = 2, - ACTIONS(10260), 11, + [88289] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195028,8 +189894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195039,7 +189905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -195059,6 +189924,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -195071,8 +189937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92463] = 2, - ACTIONS(10256), 11, + [88347] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195084,8 +189950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195127,8 +189993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92521] = 2, - ACTIONS(10252), 11, + [88405] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195140,8 +190006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195183,8 +190049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92579] = 2, - ACTIONS(10248), 11, + [88463] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195196,8 +190062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195239,8 +190105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92637] = 2, - ACTIONS(10164), 11, + [88521] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195252,18 +190118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -195295,8 +190161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92695] = 2, - ACTIONS(10244), 11, + [88579] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195308,8 +190174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195351,8 +190217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92753] = 2, - ACTIONS(10240), 11, + [88637] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195364,8 +190230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195407,8 +190273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92811] = 2, - ACTIONS(10236), 11, + [88695] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195420,8 +190286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195463,8 +190329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92869] = 2, - ACTIONS(10232), 11, + [88753] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195476,8 +190342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195519,8 +190385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92927] = 2, - ACTIONS(10228), 11, + [88811] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195532,8 +190398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195575,8 +190441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [92985] = 2, - ACTIONS(10224), 11, + [88869] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195588,8 +190454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195631,8 +190497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93043] = 2, - ACTIONS(10220), 11, + [88927] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195644,8 +190510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195687,8 +190553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93101] = 2, - ACTIONS(10120), 11, + [88985] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195700,18 +190566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -195743,8 +190609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93159] = 2, - ACTIONS(10168), 11, + [89043] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195756,18 +190622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -195799,8 +190665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93217] = 2, - ACTIONS(10216), 11, + [89101] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195812,8 +190678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195855,8 +190721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93275] = 2, - ACTIONS(10212), 11, + [89159] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195868,8 +190734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -195911,8 +190777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93333] = 2, - ACTIONS(10172), 11, + [89217] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195924,18 +190790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -195967,8 +190833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93391] = 2, - ACTIONS(10208), 11, + [89275] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -195980,8 +190846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196023,8 +190889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93449] = 2, - ACTIONS(10204), 11, + [89333] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196036,8 +190902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196079,8 +190945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93507] = 2, - ACTIONS(10200), 11, + [89391] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196092,8 +190958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196135,8 +191001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93565] = 2, - ACTIONS(10476), 11, + [89449] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196148,8 +191014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196159,6 +191025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196178,7 +191045,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -196191,8 +191057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93623] = 2, - ACTIONS(10196), 11, + [89507] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196204,8 +191070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196247,8 +191113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93681] = 2, - ACTIONS(10192), 11, + [89565] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196260,8 +191126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196303,8 +191169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93739] = 2, - ACTIONS(10188), 11, + [89623] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196316,8 +191182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196359,8 +191225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93797] = 2, - ACTIONS(10164), 11, + [89681] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196372,8 +191238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196415,8 +191281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93855] = 2, - ACTIONS(10176), 11, + [89739] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196428,8 +191294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196471,8 +191337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93913] = 2, - ACTIONS(10172), 11, + [89797] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196484,18 +191350,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196527,8 +191393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [93971] = 2, - ACTIONS(10168), 11, + [89855] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196540,8 +191406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196583,8 +191449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94029] = 2, - ACTIONS(10120), 11, + [89913] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196596,8 +191462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196639,8 +191505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94087] = 2, - ACTIONS(10124), 11, + [89971] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196652,8 +191518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196662,8 +191528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196695,8 +191561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94145] = 2, - ACTIONS(10160), 11, + [90029] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196708,8 +191574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196751,8 +191617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94203] = 2, - ACTIONS(10152), 11, + [90087] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196764,8 +191630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196775,6 +191641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196792,7 +191659,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -196807,8 +191673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94261] = 2, - ACTIONS(10156), 11, + [90145] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196820,18 +191686,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196863,8 +191729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94319] = 2, - ACTIONS(10176), 11, + [90203] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196876,18 +191742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196919,8 +191785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94377] = 2, - ACTIONS(10156), 11, + [90261] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196932,8 +191798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196943,6 +191809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -196960,7 +191827,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -196975,8 +191841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94435] = 2, - ACTIONS(10160), 11, + [90319] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -196988,8 +191854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -196999,6 +191865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197016,7 +191883,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197031,8 +191897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94493] = 2, - ACTIONS(10164), 11, + [90377] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197044,8 +191910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197055,6 +191921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197072,7 +191939,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197087,8 +191953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94551] = 2, - ACTIONS(10120), 11, + [90435] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197100,13 +191966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -197128,7 +191995,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197143,8 +192009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94609] = 2, - ACTIONS(10168), 11, + [90493] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197156,8 +192022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197167,6 +192033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197184,7 +192051,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197199,8 +192065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94667] = 2, - ACTIONS(10172), 11, + [90551] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197212,8 +192078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197223,6 +192089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197240,7 +192107,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197255,8 +192121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94725] = 2, - ACTIONS(10176), 11, + [90609] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197268,8 +192134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197279,6 +192145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197296,7 +192163,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197311,8 +192177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94783] = 2, - ACTIONS(10152), 11, + [90667] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197324,8 +192190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197367,8 +192233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94841] = 2, - ACTIONS(10184), 11, + [90725] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197380,8 +192246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197408,9 +192274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -197423,8 +192289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94899] = 2, - ACTIONS(10188), 11, + [90783] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197436,8 +192302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197447,6 +192313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197464,7 +192331,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197479,8 +192345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [94957] = 2, - ACTIONS(10192), 11, + [90841] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197492,8 +192358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197503,6 +192369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197520,7 +192387,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197535,8 +192401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95015] = 2, - ACTIONS(10196), 11, + [90899] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197548,8 +192414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197559,6 +192425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197576,7 +192443,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197591,8 +192457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95073] = 2, - ACTIONS(10200), 11, + [90957] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197604,13 +192470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -197632,7 +192499,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197647,8 +192513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95131] = 2, - ACTIONS(10204), 11, + [91015] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197660,8 +192526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197671,6 +192537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197688,7 +192555,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197703,8 +192569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95189] = 2, - ACTIONS(10208), 11, + [91073] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197716,13 +192582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -197744,7 +192611,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197759,8 +192625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95247] = 2, - ACTIONS(10212), 11, + [91131] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197772,8 +192638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197783,6 +192649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197800,7 +192667,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197815,8 +192681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95305] = 2, - ACTIONS(10216), 11, + [91189] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197828,8 +192694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197839,6 +192705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197856,7 +192723,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197871,8 +192737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95363] = 2, - ACTIONS(10220), 11, + [91247] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197884,8 +192750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197895,6 +192761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197912,7 +192779,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197927,8 +192793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95421] = 2, - ACTIONS(10224), 11, + [91305] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197940,8 +192806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -197951,6 +192817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -197968,7 +192835,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -197983,8 +192849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95479] = 2, - ACTIONS(10228), 11, + [91363] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -197996,8 +192862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198039,8 +192905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95537] = 2, - ACTIONS(10232), 11, + [91421] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198052,8 +192918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198063,6 +192929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -198080,7 +192947,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -198095,8 +192961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95595] = 2, - ACTIONS(10236), 11, + [91479] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198108,8 +192974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198119,6 +192985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -198136,7 +193003,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -198151,8 +193017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95653] = 2, - ACTIONS(10240), 11, + [91537] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198164,8 +193030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198207,8 +193073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95711] = 2, - ACTIONS(10244), 11, + [91595] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198220,8 +193086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198263,8 +193129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95769] = 2, - ACTIONS(10468), 11, + [91653] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198276,8 +193142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198286,7 +193152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -198305,6 +193170,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -198319,8 +193185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95827] = 2, - ACTIONS(10248), 11, + [91711] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198332,8 +193198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198375,8 +193241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95885] = 2, - ACTIONS(10252), 11, + [91769] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198388,8 +193254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198431,8 +193297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [95943] = 2, - ACTIONS(10256), 11, + [91827] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198444,8 +193310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198487,8 +193353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96001] = 2, - ACTIONS(10456), 11, + [91885] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198500,8 +193366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198528,10 +193394,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -198543,8 +193409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96059] = 2, - ACTIONS(10260), 11, + [91943] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198556,8 +193422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198567,6 +193433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -198584,7 +193451,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -198599,8 +193465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96117] = 2, - ACTIONS(10264), 11, + [92001] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198612,8 +193478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198655,8 +193521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96175] = 2, - ACTIONS(10268), 11, + [92059] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198668,8 +193534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198711,8 +193577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96233] = 2, - ACTIONS(10350), 11, + [92117] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198724,8 +193590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198767,8 +193633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96291] = 2, - ACTIONS(10272), 11, + [92175] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198780,8 +193646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198823,8 +193689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96349] = 2, - ACTIONS(10276), 11, + [92233] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198836,8 +193702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198879,8 +193745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96407] = 2, - ACTIONS(10280), 11, + [92291] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198892,8 +193758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198935,8 +193801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96465] = 2, - ACTIONS(10284), 11, + [92349] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -198948,8 +193814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -198991,8 +193857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96523] = 2, - ACTIONS(10288), 11, + [92407] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199004,8 +193870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199047,8 +193913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96581] = 2, - ACTIONS(10292), 11, + [92465] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199060,8 +193926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199103,8 +193969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96639] = 2, - ACTIONS(10296), 11, + [92523] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199116,8 +193982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199159,8 +194025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96697] = 2, - ACTIONS(10300), 11, + [92581] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199172,8 +194038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199215,8 +194081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96755] = 2, - ACTIONS(10304), 11, + [92639] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199228,8 +194094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199271,8 +194137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96813] = 2, - ACTIONS(10308), 11, + [92697] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199284,8 +194150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199327,8 +194193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96871] = 2, - ACTIONS(10312), 11, + [92755] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199340,8 +194206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199383,8 +194249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96929] = 2, - ACTIONS(10316), 11, + [92813] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199396,8 +194262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199439,8 +194305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [96987] = 2, - ACTIONS(10320), 11, + [92871] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199452,8 +194318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199463,6 +194329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -199480,7 +194347,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -199495,8 +194361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97045] = 2, - ACTIONS(10324), 11, + [92929] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199508,8 +194374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199551,8 +194417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97103] = 2, - ACTIONS(10330), 11, + [92987] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199564,8 +194430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199607,8 +194473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97161] = 2, - ACTIONS(10334), 11, + [93045] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199620,8 +194486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199648,10 +194514,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -199663,8 +194529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97219] = 2, - ACTIONS(10338), 11, + [93103] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199676,8 +194542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199719,8 +194585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97277] = 2, - ACTIONS(10342), 11, + [93161] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199732,8 +194598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199775,8 +194641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97335] = 2, - ACTIONS(10346), 11, + [93219] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199788,8 +194654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199831,8 +194697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97393] = 2, - ACTIONS(10432), 11, + [93277] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199844,8 +194710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199887,8 +194753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97451] = 2, - ACTIONS(10354), 11, + [93335] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199900,8 +194766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199943,8 +194809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97509] = 2, - ACTIONS(10362), 11, + [93393] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -199956,8 +194822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -199999,8 +194865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97567] = 2, - ACTIONS(10366), 11, + [93451] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200012,8 +194878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200055,8 +194921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97625] = 2, - ACTIONS(10370), 11, + [93509] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200068,8 +194934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200111,8 +194977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97683] = 2, - ACTIONS(10374), 11, + [93567] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200124,8 +194990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200167,8 +195033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97741] = 2, - ACTIONS(10378), 11, + [93625] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200180,8 +195046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200223,8 +195089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97799] = 2, - ACTIONS(10382), 11, + [93683] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200236,8 +195102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200279,8 +195145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97857] = 2, - ACTIONS(10386), 11, + [93741] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200292,8 +195158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200335,8 +195201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97915] = 2, - ACTIONS(10390), 11, + [93799] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200348,8 +195214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200391,8 +195257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [97973] = 2, - ACTIONS(10394), 11, + [93857] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200404,8 +195270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200447,8 +195313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98031] = 2, - ACTIONS(10398), 11, + [93915] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200460,8 +195326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200503,8 +195369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98089] = 2, - ACTIONS(10402), 11, + [93973] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200516,8 +195382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200559,8 +195425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98147] = 2, - ACTIONS(10406), 11, + [94031] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200572,8 +195438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200615,8 +195481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98205] = 2, - ACTIONS(10416), 11, + [94089] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200628,8 +195494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200671,8 +195537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98263] = 2, - ACTIONS(10420), 11, + [94147] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200684,8 +195550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200727,8 +195593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98321] = 2, - ACTIONS(10424), 11, + [94205] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200740,8 +195606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200783,8 +195649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98379] = 2, - ACTIONS(10428), 11, + [94263] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200796,8 +195662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200839,8 +195705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98437] = 2, - ACTIONS(10476), 11, + [94321] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200852,8 +195718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200880,10 +195746,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -200895,8 +195761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98495] = 2, - ACTIONS(10436), 11, + [94379] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200908,8 +195774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -200951,8 +195817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98553] = 2, - ACTIONS(10440), 11, + [94437] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -200964,8 +195830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201007,8 +195873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98611] = 2, - ACTIONS(10444), 11, + [94495] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201020,8 +195886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201063,8 +195929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98669] = 2, - ACTIONS(10448), 11, + [94553] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201076,8 +195942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201119,8 +195985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98727] = 2, - ACTIONS(10124), 11, + [94611] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201132,8 +195998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201175,8 +196041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98785] = 2, - ACTIONS(10452), 11, + [94669] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201188,8 +196054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201231,8 +196097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98843] = 2, - ACTIONS(10460), 11, + [94727] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201244,8 +196110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201287,8 +196153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98901] = 2, - ACTIONS(10472), 11, + [94785] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201300,8 +196166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201343,8 +196209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [98959] = 2, - ACTIONS(10464), 11, + [94843] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201356,8 +196222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201399,8 +196265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99017] = 2, - ACTIONS(10468), 11, + [94901] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201412,8 +196278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201455,8 +196321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99075] = 2, - ACTIONS(10152), 11, + [94959] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201468,8 +196334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201496,8 +196362,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201511,8 +196377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99133] = 2, - ACTIONS(10464), 11, + [95017] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201524,8 +196390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201534,7 +196400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -201553,6 +196418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -201567,8 +196433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99191] = 2, - ACTIONS(10472), 11, + [95075] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201580,8 +196446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201590,7 +196456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -201609,6 +196474,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -201623,8 +196489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99249] = 2, - ACTIONS(10156), 11, + [95133] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201636,8 +196502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201664,8 +196530,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201679,8 +196545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99307] = 2, - ACTIONS(10160), 11, + [95191] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201692,8 +196558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201720,8 +196586,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201735,8 +196601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99365] = 2, - ACTIONS(10164), 11, + [95249] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201748,8 +196614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201776,8 +196642,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201791,8 +196657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99423] = 2, - ACTIONS(10120), 11, + [95307] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201804,8 +196670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201832,8 +196698,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201847,8 +196713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99481] = 2, - ACTIONS(10168), 11, + [95365] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201860,8 +196726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201888,8 +196754,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201903,8 +196769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99539] = 2, - ACTIONS(10172), 11, + [95423] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201916,8 +196782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -201944,8 +196810,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -201959,8 +196825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99597] = 2, - ACTIONS(10176), 11, + [95481] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -201972,8 +196838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202001,9 +196867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -202015,8 +196881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99655] = 2, - ACTIONS(10460), 11, + [95539] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202028,8 +196894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202038,7 +196904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -202057,6 +196922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -202071,8 +196937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99713] = 2, - ACTIONS(10184), 11, + [95597] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202084,8 +196950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202112,8 +196978,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202127,8 +196993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99771] = 2, - ACTIONS(10188), 11, + [95655] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202140,8 +197006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202168,8 +197034,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202183,8 +197049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99829] = 2, - ACTIONS(10192), 11, + [95713] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202196,8 +197062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202224,8 +197090,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202239,8 +197105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99887] = 2, - ACTIONS(10196), 11, + [95771] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202252,8 +197118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202280,8 +197146,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202295,8 +197161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [99945] = 2, - ACTIONS(10200), 11, + [95829] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202308,8 +197174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202336,8 +197202,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202351,8 +197217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100003] = 2, - ACTIONS(10204), 11, + [95887] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202364,8 +197230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202392,8 +197258,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202407,8 +197273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100061] = 2, - ACTIONS(10208), 11, + [95945] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202420,8 +197286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202448,8 +197314,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202463,8 +197329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100119] = 2, - ACTIONS(10212), 11, + [96003] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202476,8 +197342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202504,8 +197370,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202519,8 +197385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100177] = 2, - ACTIONS(10216), 11, + [96061] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202532,8 +197398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202560,8 +197426,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202575,8 +197441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100235] = 2, - ACTIONS(10220), 11, + [96119] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202588,8 +197454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202631,8 +197497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100293] = 2, - ACTIONS(10224), 11, + [96177] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202644,8 +197510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202655,6 +197521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -202673,7 +197540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202687,8 +197553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100351] = 2, - ACTIONS(10228), 11, + [96235] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202700,8 +197566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202711,6 +197577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -202729,7 +197596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -202743,8 +197609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100409] = 2, - ACTIONS(10232), 11, + [96293] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202756,8 +197622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202799,8 +197665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100467] = 2, - ACTIONS(10236), 11, + [96351] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202812,8 +197678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202855,8 +197721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100525] = 2, - ACTIONS(10240), 11, + [96409] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202868,8 +197734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202911,8 +197777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100583] = 2, - ACTIONS(10244), 11, + [96467] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202924,8 +197790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202967,8 +197833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100641] = 2, - ACTIONS(10452), 11, + [96525] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -202980,8 +197846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -202990,7 +197856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -203010,6 +197875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -203023,8 +197889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100699] = 2, - ACTIONS(10248), 11, + [96583] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203036,8 +197902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203079,8 +197945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100757] = 2, - ACTIONS(10252), 11, + [96641] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203092,8 +197958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203135,8 +198001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100815] = 2, - ACTIONS(10256), 11, + [96699] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203148,8 +198014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203159,6 +198025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -203177,7 +198044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -203191,8 +198057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100873] = 2, - ACTIONS(10456), 11, + [96757] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203204,8 +198070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203233,11 +198099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -203247,8 +198113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100931] = 2, - ACTIONS(10260), 11, + [96815] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203260,8 +198126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203303,8 +198169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [100989] = 2, - ACTIONS(10264), 11, + [96873] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203316,8 +198182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203359,8 +198225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101047] = 2, - ACTIONS(10268), 11, + [96931] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203372,8 +198238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203415,8 +198281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101105] = 2, - ACTIONS(10350), 11, + [96989] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203428,8 +198294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203471,8 +198337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101163] = 2, - ACTIONS(10272), 11, + [97047] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203484,8 +198350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203527,8 +198393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101221] = 2, - ACTIONS(10276), 11, + [97105] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203540,8 +198406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203583,8 +198449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101279] = 2, - ACTIONS(10280), 11, + [97163] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203596,8 +198462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203639,8 +198505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101337] = 2, - ACTIONS(10284), 11, + [97221] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203652,8 +198518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203695,8 +198561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101395] = 2, - ACTIONS(10288), 11, + [97279] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203708,8 +198574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203751,8 +198617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101453] = 2, - ACTIONS(10292), 11, + [97337] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203764,8 +198630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203807,8 +198673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101511] = 2, - ACTIONS(10296), 11, + [97395] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203820,8 +198686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203863,8 +198729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101569] = 2, - ACTIONS(10300), 11, + [97453] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203876,8 +198742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203919,8 +198785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101627] = 2, - ACTIONS(10304), 11, + [97511] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203932,8 +198798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -203975,8 +198841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101685] = 2, - ACTIONS(10308), 11, + [97569] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -203988,8 +198854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204031,8 +198897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101743] = 2, - ACTIONS(10312), 11, + [97627] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204044,13 +198910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -204073,7 +198940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -204087,8 +198953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101801] = 2, - ACTIONS(10316), 11, + [97685] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204100,8 +198966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204143,8 +199009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101859] = 2, - ACTIONS(10320), 11, + [97743] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204156,8 +199022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204199,8 +199065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101917] = 2, - ACTIONS(10324), 11, + [97801] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204212,8 +199078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204241,11 +199107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -204255,8 +199121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [101975] = 2, - ACTIONS(10330), 11, + [97859] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204268,8 +199134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204311,8 +199177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102033] = 2, - ACTIONS(10334), 11, + [97917] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204324,8 +199190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204367,8 +199233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102091] = 2, - ACTIONS(10338), 11, + [97975] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204380,8 +199246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204423,8 +199289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102149] = 2, - ACTIONS(10342), 11, + [98033] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204436,8 +199302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204479,8 +199345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102207] = 2, - ACTIONS(10346), 11, + [98091] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204492,8 +199358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204535,8 +199401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102265] = 2, - ACTIONS(10432), 11, + [98149] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204548,8 +199414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204591,8 +199457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102323] = 2, - ACTIONS(10354), 11, + [98207] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204604,8 +199470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204647,8 +199513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102381] = 2, - ACTIONS(10362), 11, + [98265] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204660,8 +199526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204703,8 +199569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102439] = 2, - ACTIONS(10366), 11, + [98323] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204716,8 +199582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204759,8 +199625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102497] = 2, - ACTIONS(10370), 11, + [98381] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204772,8 +199638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204815,8 +199681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102555] = 2, - ACTIONS(10374), 11, + [98439] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204828,8 +199694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204871,8 +199737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102613] = 2, - ACTIONS(10378), 11, + [98497] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204884,8 +199750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204927,8 +199793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102671] = 2, - ACTIONS(10382), 11, + [98555] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204940,8 +199806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -204983,8 +199849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102729] = 2, - ACTIONS(10386), 11, + [98613] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -204996,8 +199862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205039,8 +199905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102787] = 2, - ACTIONS(10390), 11, + [98671] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205052,8 +199918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205095,8 +199961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102845] = 2, - ACTIONS(10394), 11, + [98729] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205108,8 +199974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205151,8 +200017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102903] = 2, - ACTIONS(10398), 11, + [98787] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205164,8 +200030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205207,8 +200073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [102961] = 2, - ACTIONS(10402), 11, + [98845] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205220,8 +200086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205263,8 +200129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103019] = 2, - ACTIONS(10406), 11, + [98903] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205276,8 +200142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205319,8 +200185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103077] = 2, - ACTIONS(10416), 11, + [98961] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205332,8 +200198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205375,8 +200241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103135] = 2, - ACTIONS(10420), 11, + [99019] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205388,8 +200254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205431,8 +200297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103193] = 2, - ACTIONS(10424), 11, + [99077] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205444,8 +200310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205487,8 +200353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103251] = 2, - ACTIONS(10428), 11, + [99135] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205500,8 +200366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205543,8 +200409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103309] = 2, - ACTIONS(10476), 11, + [99193] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205556,8 +200422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205585,11 +200451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -205599,8 +200465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103367] = 2, - ACTIONS(10436), 11, + [99251] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205612,8 +200478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205655,8 +200521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103425] = 2, - ACTIONS(10440), 11, + [99309] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205668,8 +200534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205711,8 +200577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103483] = 2, - ACTIONS(10444), 11, + [99367] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205724,8 +200590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205767,8 +200633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103541] = 2, - ACTIONS(10448), 11, + [99425] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205780,8 +200646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205823,8 +200689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103599] = 2, - ACTIONS(10124), 11, + [99483] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205836,8 +200702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205879,8 +200745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103657] = 2, - ACTIONS(10452), 11, + [99541] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205892,8 +200758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205935,8 +200801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103715] = 2, - ACTIONS(10460), 11, + [99599] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -205948,8 +200814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -205991,8 +200857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103773] = 2, - ACTIONS(10472), 11, + [99657] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206004,8 +200870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206047,8 +200913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103831] = 2, - ACTIONS(10464), 11, + [99715] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206060,8 +200926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206103,8 +200969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103889] = 2, - ACTIONS(10468), 11, + [99773] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206116,8 +200982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206159,8 +201025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [103947] = 2, - ACTIONS(10152), 11, + [99831] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206172,8 +201038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206201,8 +201067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206215,8 +201081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104005] = 2, - ACTIONS(10386), 11, + [99889] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206228,14 +201094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -206258,6 +201123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -206271,8 +201137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104063] = 2, - ACTIONS(10436), 11, + [99947] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206284,8 +201150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206294,7 +201160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -206314,6 +201179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -206327,8 +201193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104121] = 2, - ACTIONS(10156), 11, + [100005] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206340,8 +201206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206369,8 +201235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206383,8 +201249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104179] = 2, - ACTIONS(10160), 11, + [100063] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206396,8 +201262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206425,8 +201291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206439,8 +201305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104237] = 2, - ACTIONS(10164), 11, + [100121] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206452,8 +201318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206481,8 +201347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206495,8 +201361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104295] = 2, - ACTIONS(10120), 11, + [100179] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206508,8 +201374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206537,8 +201403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206551,8 +201417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104353] = 2, - ACTIONS(10168), 11, + [100237] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206564,8 +201430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206594,10 +201460,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -206607,8 +201473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104411] = 2, - ACTIONS(10172), 11, + [100295] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206620,8 +201486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206649,8 +201515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206663,8 +201529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104469] = 2, - ACTIONS(10176), 11, + [100353] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206676,8 +201542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206705,8 +201571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206719,8 +201585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104527] = 2, - ACTIONS(10448), 11, + [100411] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206732,8 +201598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206742,7 +201608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -206762,6 +201627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATsetup, @@ -206775,8 +201641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104585] = 2, - ACTIONS(10184), 11, + [100469] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206788,8 +201654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206817,8 +201683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206831,8 +201697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104643] = 2, - ACTIONS(10188), 11, + [100527] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206844,8 +201710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206873,8 +201739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206887,8 +201753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104701] = 2, - ACTIONS(10192), 11, + [100585] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206900,8 +201766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206929,8 +201795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206943,8 +201809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104759] = 2, - ACTIONS(10196), 11, + [100643] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -206956,8 +201822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -206985,8 +201851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -206999,8 +201865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104817] = 2, - ACTIONS(10200), 11, + [100701] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207012,8 +201878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207041,8 +201907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207055,8 +201921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104875] = 2, - ACTIONS(10204), 11, + [100759] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207068,8 +201934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207097,8 +201963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207111,8 +201977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104933] = 2, - ACTIONS(10208), 11, + [100817] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207124,8 +201990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207153,8 +202019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207167,8 +202033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [104991] = 2, - ACTIONS(10212), 11, + [100875] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207180,8 +202046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207223,8 +202089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105049] = 2, - ACTIONS(10216), 11, + [100933] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207236,8 +202102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207247,6 +202113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -207266,7 +202133,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207279,8 +202145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105107] = 2, - ACTIONS(10220), 11, + [100991] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207292,13 +202158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -207322,7 +202189,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207335,8 +202201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105165] = 2, - ACTIONS(10224), 11, + [101049] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207348,8 +202214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207391,8 +202257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105223] = 2, - ACTIONS(10228), 11, + [101107] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207404,8 +202270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207447,8 +202313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105281] = 2, - ACTIONS(10232), 11, + [101165] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207460,8 +202326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207503,8 +202369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105339] = 2, - ACTIONS(10236), 11, + [101223] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207516,8 +202382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207559,8 +202425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105397] = 2, - ACTIONS(10240), 11, + [101281] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207572,8 +202438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207615,8 +202481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105455] = 2, - ACTIONS(10244), 11, + [101339] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207628,8 +202494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207671,8 +202537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105513] = 2, - ACTIONS(10444), 11, + [101397] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207684,8 +202550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207694,7 +202560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -207715,6 +202580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207727,8 +202593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105571] = 2, - ACTIONS(10248), 11, + [101455] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207740,8 +202606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207751,6 +202617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -207770,7 +202637,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -207783,8 +202649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105629] = 2, - ACTIONS(10252), 11, + [101513] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207796,8 +202662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207839,8 +202705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105687] = 2, - ACTIONS(10256), 11, + [101571] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207852,8 +202718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207895,8 +202761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105745] = 2, - ACTIONS(10456), 11, + [101629] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207908,8 +202774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -207938,11 +202804,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -207951,8 +202817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105803] = 2, - ACTIONS(10382), 11, + [101687] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -207964,14 +202830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -207995,6 +202860,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -208007,8 +202873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105861] = 2, - ACTIONS(10264), 11, + [101745] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208020,8 +202886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208063,8 +202929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105919] = 2, - ACTIONS(10268), 11, + [101803] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208076,8 +202942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208119,8 +202985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [105977] = 2, - ACTIONS(10350), 11, + [101861] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208132,8 +202998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208175,8 +203041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106035] = 2, - ACTIONS(10272), 11, + [101919] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208188,8 +203054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208231,8 +203097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106093] = 2, - ACTIONS(10276), 11, + [101977] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208244,8 +203110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208287,8 +203153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106151] = 2, - ACTIONS(10280), 11, + [102035] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208300,8 +203166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208343,8 +203209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106209] = 2, - ACTIONS(10284), 11, + [102093] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208356,8 +203222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208399,8 +203265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106267] = 2, - ACTIONS(10288), 11, + [102151] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208412,8 +203278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208455,8 +203321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106325] = 2, - ACTIONS(10292), 11, + [102209] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208468,8 +203334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208511,8 +203377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106383] = 2, - ACTIONS(10296), 11, + [102267] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208524,8 +203390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208567,8 +203433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106441] = 2, - ACTIONS(10300), 11, + [102325] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208580,8 +203446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208623,8 +203489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106499] = 2, - ACTIONS(10304), 11, + [102383] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208636,8 +203502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208647,6 +203513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -208666,7 +203533,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -208679,8 +203545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106557] = 2, - ACTIONS(10308), 11, + [102441] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208692,8 +203558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208735,8 +203601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106615] = 2, - ACTIONS(10312), 11, + [102499] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208748,8 +203614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208791,8 +203657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106673] = 2, - ACTIONS(10316), 11, + [102557] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208804,8 +203670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208834,11 +203700,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -208847,8 +203713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106731] = 2, - ACTIONS(10320), 11, + [102615] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208860,8 +203726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208903,8 +203769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106789] = 2, - ACTIONS(10324), 11, + [102673] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208916,8 +203782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -208959,8 +203825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106847] = 2, - ACTIONS(10330), 11, + [102731] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -208972,8 +203838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209015,8 +203881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106905] = 2, - ACTIONS(10334), 11, + [102789] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209028,8 +203894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209071,8 +203937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [106963] = 2, - ACTIONS(10338), 11, + [102847] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209084,8 +203950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209127,8 +203993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107021] = 2, - ACTIONS(10342), 11, + [102905] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209140,8 +204006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209183,8 +204049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107079] = 2, - ACTIONS(10346), 11, + [102963] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209196,8 +204062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209239,8 +204105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107137] = 2, - ACTIONS(10432), 11, + [103021] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209252,8 +204118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209295,8 +204161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107195] = 2, - ACTIONS(10354), 11, + [103079] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209308,8 +204174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209351,8 +204217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107253] = 2, - ACTIONS(10362), 11, + [103137] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209364,8 +204230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209407,8 +204273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107311] = 2, - ACTIONS(10366), 11, + [103195] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209420,8 +204286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209463,8 +204329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107369] = 2, - ACTIONS(10370), 11, + [103253] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209476,8 +204342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209519,8 +204385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107427] = 2, - ACTIONS(10374), 11, + [103311] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209532,8 +204398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209575,8 +204441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107485] = 2, - ACTIONS(10378), 11, + [103369] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209588,8 +204454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209631,8 +204497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107543] = 2, - ACTIONS(10382), 11, + [103427] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209644,8 +204510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209687,8 +204553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107601] = 2, - ACTIONS(10386), 11, + [103485] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209700,8 +204566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209743,8 +204609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107659] = 2, - ACTIONS(10390), 11, + [103543] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209756,8 +204622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209799,8 +204665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107717] = 2, - ACTIONS(10394), 11, + [103601] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209812,8 +204678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209855,8 +204721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107775] = 2, - ACTIONS(10398), 11, + [103659] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209868,8 +204734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209911,8 +204777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107833] = 2, - ACTIONS(10402), 11, + [103717] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209924,8 +204790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -209967,8 +204833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107891] = 2, - ACTIONS(10406), 11, + [103775] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -209980,8 +204846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210023,8 +204889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [107949] = 2, - ACTIONS(10416), 11, + [103833] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210036,8 +204902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210079,8 +204945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108007] = 2, - ACTIONS(10420), 11, + [103891] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210092,8 +204958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210135,8 +205001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108065] = 2, - ACTIONS(10424), 11, + [103949] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210148,8 +205014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210191,8 +205057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108123] = 2, - ACTIONS(10428), 11, + [104007] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210204,8 +205070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210247,8 +205113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108181] = 2, - ACTIONS(10476), 11, + [104065] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210260,8 +205126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210290,11 +205156,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -210303,8 +205169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108239] = 2, - ACTIONS(10436), 11, + [104123] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210316,8 +205182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210359,8 +205225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108297] = 2, - ACTIONS(10440), 11, + [104181] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210372,8 +205238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210415,8 +205281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108355] = 2, - ACTIONS(10444), 11, + [104239] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210428,8 +205294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210471,8 +205337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108413] = 2, - ACTIONS(10448), 11, + [104297] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210484,8 +205350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210527,8 +205393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108471] = 2, - ACTIONS(10124), 11, + [104355] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210540,8 +205406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210583,8 +205449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108529] = 2, - ACTIONS(10452), 11, + [104413] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210596,8 +205462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210639,8 +205505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108587] = 2, - ACTIONS(10460), 11, + [104471] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210652,8 +205518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210695,8 +205561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108645] = 2, - ACTIONS(10472), 11, + [104529] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210708,8 +205574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210751,8 +205617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108703] = 2, - ACTIONS(10464), 11, + [104587] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210764,8 +205630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210807,8 +205673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108761] = 2, - ACTIONS(10468), 11, + [104645] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210820,8 +205686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210863,8 +205729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108819] = 2, - ACTIONS(10152), 11, + [104703] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210876,8 +205742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210906,8 +205772,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -210919,8 +205785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108877] = 2, - ACTIONS(10440), 11, + [104761] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210932,8 +205798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210942,7 +205808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -210963,6 +205828,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -210975,8 +205841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108935] = 2, - ACTIONS(10398), 11, + [104819] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -210988,8 +205854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -210998,7 +205864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -211019,6 +205884,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -211031,8 +205897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [108993] = 2, - ACTIONS(10156), 11, + [104877] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211044,8 +205910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211074,8 +205940,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211087,8 +205953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109051] = 2, - ACTIONS(10160), 11, + [104935] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211100,8 +205966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211130,8 +205996,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211143,8 +206009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109109] = 2, - ACTIONS(10164), 11, + [104993] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211156,8 +206022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211187,10 +206053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -211199,8 +206065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109167] = 2, - ACTIONS(10120), 11, + [105051] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211212,13 +206078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -211243,7 +206110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211255,8 +206121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109225] = 2, - ACTIONS(10168), 11, + [105109] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211268,8 +206134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211298,8 +206164,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211311,8 +206177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109283] = 2, - ACTIONS(10172), 11, + [105167] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211324,8 +206190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211354,8 +206220,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211367,8 +206233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109341] = 2, - ACTIONS(10176), 11, + [105225] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211380,8 +206246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211410,8 +206276,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211423,8 +206289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109399] = 2, - ACTIONS(10428), 11, + [105283] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211436,8 +206302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211446,7 +206312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -211467,6 +206332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, @@ -211479,8 +206345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109457] = 2, - ACTIONS(10184), 11, + [105341] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211492,8 +206358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211522,8 +206388,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211535,8 +206401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109515] = 2, - ACTIONS(10188), 11, + [105399] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211548,8 +206414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211578,8 +206444,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211591,8 +206457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109573] = 2, - ACTIONS(10192), 11, + [105457] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211604,8 +206470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211634,8 +206500,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211647,8 +206513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109631] = 2, - ACTIONS(10196), 11, + [105515] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211660,8 +206526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211690,8 +206556,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211703,8 +206569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109689] = 2, - ACTIONS(10200), 11, + [105573] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211716,8 +206582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211746,8 +206612,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211759,8 +206625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109747] = 2, - ACTIONS(10204), 11, + [105631] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211772,8 +206638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211815,8 +206681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109805] = 2, - ACTIONS(10208), 11, + [105689] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211828,8 +206694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211839,6 +206705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -211859,7 +206726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211871,8 +206737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109863] = 2, - ACTIONS(10212), 11, + [105747] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211884,8 +206750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211895,6 +206761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -211915,7 +206782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -211927,8 +206793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109921] = 2, - ACTIONS(10216), 11, + [105805] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211940,8 +206806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -211983,8 +206849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [109979] = 2, - ACTIONS(10220), 11, + [105863] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -211996,8 +206862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212039,8 +206905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110037] = 2, - ACTIONS(10224), 11, + [105921] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212052,8 +206918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212095,8 +206961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110095] = 2, - ACTIONS(10228), 11, + [105979] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212108,8 +206974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212151,8 +207017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110153] = 2, - ACTIONS(10232), 11, + [106037] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212164,8 +207030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212207,8 +207073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110211] = 2, - ACTIONS(10236), 11, + [106095] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212220,8 +207086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212263,8 +207129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110269] = 2, - ACTIONS(10240), 11, + [106153] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212276,8 +207142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212319,8 +207185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110327] = 2, - ACTIONS(10244), 11, + [106211] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212332,8 +207198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212343,6 +207209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -212363,7 +207230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -212375,8 +207241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110385] = 2, - ACTIONS(10424), 11, + [106269] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212388,8 +207254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212398,7 +207264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -212420,6 +207285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -212431,8 +207297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110443] = 2, - ACTIONS(10248), 11, + [106327] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212444,8 +207310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212487,8 +207353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110501] = 2, - ACTIONS(10252), 11, + [106385] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212500,8 +207366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212543,8 +207409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110559] = 2, - ACTIONS(10256), 11, + [106443] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212556,8 +207422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212599,8 +207465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110617] = 2, - ACTIONS(10456), 11, + [106501] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212612,8 +207478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212643,6 +207509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -212651,12 +207518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110675] = 2, - ACTIONS(10260), 11, + [106559] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212668,8 +207534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212711,8 +207577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110733] = 2, - ACTIONS(10264), 11, + [106617] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212724,8 +207590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212767,8 +207633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110791] = 2, - ACTIONS(10268), 11, + [106675] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212780,8 +207646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212823,8 +207689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110849] = 2, - ACTIONS(10350), 11, + [106733] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212836,8 +207702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212879,8 +207745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110907] = 2, - ACTIONS(10272), 11, + [106791] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212892,8 +207758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212935,8 +207801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [110965] = 2, - ACTIONS(10276), 11, + [106849] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -212948,8 +207814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -212991,8 +207857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111023] = 2, - ACTIONS(10280), 11, + [106907] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213004,8 +207870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213047,8 +207913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111081] = 2, - ACTIONS(10284), 11, + [106965] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213060,8 +207926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213103,8 +207969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111139] = 2, - ACTIONS(10288), 11, + [107023] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213116,8 +207982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213159,8 +208025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111197] = 2, - ACTIONS(10292), 11, + [107081] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213172,8 +208038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213215,8 +208081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111255] = 2, - ACTIONS(10296), 11, + [107139] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213228,8 +208094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213239,6 +208105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -213259,7 +208126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -213271,8 +208137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111313] = 2, - ACTIONS(10300), 11, + [107197] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213284,8 +208150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213327,8 +208193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111371] = 2, - ACTIONS(10304), 11, + [107255] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213340,8 +208206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213383,8 +208249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111429] = 2, - ACTIONS(10308), 11, + [107313] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213396,8 +208262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213427,7 +208293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -213436,11 +208301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111487] = 2, - ACTIONS(10312), 11, + [107371] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213452,8 +208318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213495,8 +208361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111545] = 2, - ACTIONS(10316), 11, + [107429] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213508,8 +208374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213551,8 +208417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111603] = 2, - ACTIONS(10320), 11, + [107487] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213564,8 +208430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213607,8 +208473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111661] = 2, - ACTIONS(10324), 11, + [107545] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213620,8 +208486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213663,8 +208529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111719] = 2, - ACTIONS(10330), 11, + [107603] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213676,8 +208542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213719,8 +208585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111777] = 2, - ACTIONS(10334), 11, + [107661] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213732,8 +208598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213775,8 +208641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111835] = 2, - ACTIONS(10338), 11, + [107719] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213788,8 +208654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213831,8 +208697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111893] = 2, - ACTIONS(10342), 11, + [107777] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213844,8 +208710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213887,8 +208753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [111951] = 2, - ACTIONS(10346), 11, + [107835] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213900,8 +208766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213943,8 +208809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112009] = 2, - ACTIONS(10432), 11, + [107893] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -213956,8 +208822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -213999,8 +208865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112067] = 2, - ACTIONS(10354), 11, + [107951] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214012,8 +208878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214055,8 +208921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112125] = 2, - ACTIONS(10362), 11, + [108009] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214068,8 +208934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214111,8 +208977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112183] = 2, - ACTIONS(10366), 11, + [108067] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214124,8 +208990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214167,8 +209033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112241] = 2, - ACTIONS(10370), 11, + [108125] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214180,8 +209046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214223,8 +209089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112299] = 2, - ACTIONS(10374), 11, + [108183] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214236,8 +209102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214279,8 +209145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112357] = 2, - ACTIONS(10378), 11, + [108241] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214292,8 +209158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214335,8 +209201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112415] = 2, - ACTIONS(10382), 11, + [108299] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214348,8 +209214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214391,8 +209257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112473] = 2, - ACTIONS(10386), 11, + [108357] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214404,8 +209270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214447,8 +209313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112531] = 2, - ACTIONS(10390), 11, + [108415] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214460,8 +209326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214503,8 +209369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112589] = 2, - ACTIONS(10394), 11, + [108473] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214516,8 +209382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214559,8 +209425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112647] = 2, - ACTIONS(10398), 11, + [108531] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214572,8 +209438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214615,8 +209481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112705] = 2, - ACTIONS(10402), 11, + [108589] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214628,8 +209494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214671,8 +209537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112763] = 2, - ACTIONS(10406), 11, + [108647] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214684,8 +209550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214727,8 +209593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112821] = 2, - ACTIONS(10416), 11, + [108705] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214740,8 +209606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214783,8 +209649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112879] = 2, - ACTIONS(10420), 11, + [108763] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214796,8 +209662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214839,8 +209705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112937] = 2, - ACTIONS(10424), 11, + [108821] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214852,8 +209718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214895,8 +209761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [112995] = 2, - ACTIONS(10428), 11, + [108879] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214908,8 +209774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214951,8 +209817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113053] = 2, - ACTIONS(10476), 11, + [108937] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -214964,8 +209830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -214995,6 +209861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -215003,12 +209870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113111] = 2, - ACTIONS(10436), 11, + [108995] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215020,8 +209886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215063,8 +209929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113169] = 2, - ACTIONS(10440), 11, + [109053] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215076,8 +209942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215119,8 +209985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113227] = 2, - ACTIONS(10444), 11, + [109111] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215132,8 +209998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215175,8 +210041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113285] = 2, - ACTIONS(10448), 11, + [109169] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215188,8 +210054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215231,8 +210097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113343] = 2, - ACTIONS(10124), 11, + [109227] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215244,8 +210110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215287,8 +210153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113401] = 2, - ACTIONS(10452), 11, + [109285] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215300,8 +210166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215343,8 +210209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113459] = 2, - ACTIONS(10460), 11, + [109343] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215356,8 +210222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215399,8 +210265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113517] = 2, - ACTIONS(10472), 11, + [109401] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215412,8 +210278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215455,8 +210321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113575] = 2, - ACTIONS(10464), 11, + [109459] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215468,8 +210334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215511,8 +210377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113633] = 2, - ACTIONS(10468), 11, + [109517] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215524,8 +210390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215567,8 +210433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113691] = 2, - ACTIONS(10152), 11, + [109575] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215580,8 +210446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215611,9 +210477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215623,8 +210489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113749] = 2, - ACTIONS(10420), 11, + [109633] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215636,8 +210502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215646,7 +210512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -215668,6 +210533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -215679,8 +210545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113807] = 2, - ACTIONS(10416), 11, + [109691] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215692,8 +210558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215702,7 +210568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -215724,6 +210589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -215735,8 +210601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113865] = 2, - ACTIONS(10156), 11, + [109749] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215748,8 +210614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215781,18 +210647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113923] = 2, - ACTIONS(10160), 11, + [109807] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215804,8 +210670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215835,9 +210701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215847,8 +210713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [113981] = 2, - ACTIONS(10164), 11, + [109865] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215860,8 +210726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215891,9 +210757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215903,8 +210769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114039] = 2, - ACTIONS(10120), 11, + [109923] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215916,8 +210782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -215947,9 +210813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -215959,8 +210825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114097] = 2, - ACTIONS(10168), 11, + [109981] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -215972,8 +210838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216003,9 +210869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216015,8 +210881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114155] = 2, - ACTIONS(10172), 11, + [110039] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216028,8 +210894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216059,9 +210925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216071,8 +210937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114213] = 2, - ACTIONS(10176), 11, + [110097] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216084,8 +210950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216115,9 +210981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216127,8 +210993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114271] = 2, - ACTIONS(10406), 11, + [110155] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216140,8 +211006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216150,7 +211016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -216172,6 +211037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, @@ -216183,8 +211049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114329] = 2, - ACTIONS(10184), 11, + [110213] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216196,8 +211062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216227,9 +211093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216239,8 +211105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114387] = 2, - ACTIONS(10188), 11, + [110271] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216252,8 +211118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216283,9 +211149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216295,8 +211161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114445] = 2, - ACTIONS(10192), 11, + [110329] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216308,8 +211174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216339,9 +211205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216351,8 +211217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114503] = 2, - ACTIONS(10196), 11, + [110387] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216364,8 +211230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216407,8 +211273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114561] = 2, - ACTIONS(10200), 11, + [110445] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216420,8 +211286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216431,6 +211297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -216453,7 +211320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216463,8 +211329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114619] = 2, - ACTIONS(10204), 11, + [110503] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216476,8 +211342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216487,6 +211353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -216509,7 +211376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216519,8 +211385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114677] = 2, - ACTIONS(10208), 11, + [110561] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216532,8 +211398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216575,8 +211441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114735] = 2, - ACTIONS(10212), 11, + [110619] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216588,8 +211454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216631,8 +211497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114793] = 2, - ACTIONS(10216), 11, + [110677] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216644,8 +211510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216687,8 +211553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114851] = 2, - ACTIONS(10220), 11, + [110735] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216700,8 +211566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216743,8 +211609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114909] = 2, - ACTIONS(10224), 11, + [110793] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216756,8 +211622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216799,8 +211665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [114967] = 2, - ACTIONS(10228), 11, + [110851] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216812,8 +211678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216855,8 +211721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115025] = 2, - ACTIONS(10232), 11, + [110909] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216868,8 +211734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216911,8 +211777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115083] = 2, - ACTIONS(10236), 11, + [110967] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216924,8 +211790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -216935,6 +211801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -216957,7 +211824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -216967,8 +211833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115141] = 2, - ACTIONS(10240), 11, + [111025] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -216980,8 +211846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217023,8 +211889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115199] = 2, - ACTIONS(10244), 11, + [111083] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217036,8 +211902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217079,8 +211945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115257] = 2, - ACTIONS(10402), 11, + [111141] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217092,8 +211958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217102,7 +211968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -217126,6 +211991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -217135,8 +212001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115315] = 2, - ACTIONS(10248), 11, + [111199] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217148,8 +212014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217191,8 +212057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115373] = 2, - ACTIONS(10252), 11, + [111257] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217204,8 +212070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217247,8 +212113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115431] = 2, - ACTIONS(10256), 11, + [111315] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217260,8 +212126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217303,8 +212169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115489] = 2, - ACTIONS(10456), 11, + [111373] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217316,8 +212182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217349,6 +212215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -217356,11 +212223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115547] = 2, - ACTIONS(10260), 11, + [111431] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217372,8 +212238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217415,8 +212281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115605] = 2, - ACTIONS(10264), 11, + [111489] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217428,8 +212294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217471,8 +212337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115663] = 2, - ACTIONS(10268), 11, + [111547] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217484,8 +212350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217527,8 +212393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115721] = 2, - ACTIONS(10350), 11, + [111605] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217540,8 +212406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217583,8 +212449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115779] = 2, - ACTIONS(10272), 11, + [111663] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217596,8 +212462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217639,8 +212505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115837] = 2, - ACTIONS(10276), 11, + [111721] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217652,8 +212518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217695,8 +212561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115895] = 2, - ACTIONS(10280), 11, + [111779] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217708,8 +212574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217751,8 +212617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [115953] = 2, - ACTIONS(10284), 11, + [111837] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217764,8 +212630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217807,8 +212673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116011] = 2, - ACTIONS(10288), 11, + [111895] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217820,8 +212686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217831,6 +212697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -217853,7 +212720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -217863,8 +212729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116069] = 2, - ACTIONS(10292), 11, + [111953] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217876,8 +212742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217919,8 +212785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116127] = 2, - ACTIONS(10296), 11, + [112011] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217932,8 +212798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -217975,8 +212841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116185] = 2, - ACTIONS(10300), 11, + [112069] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -217988,8 +212854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218021,7 +212887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, - anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -218029,10 +212894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116243] = 2, - ACTIONS(10304), 11, + [112127] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218044,8 +212910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218087,8 +212953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116301] = 2, - ACTIONS(10308), 11, + [112185] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218100,8 +212966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218143,8 +213009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116359] = 2, - ACTIONS(10312), 11, + [112243] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218156,8 +213022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218199,8 +213065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116417] = 2, - ACTIONS(10316), 11, + [112301] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218212,8 +213078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218255,8 +213121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116475] = 2, - ACTIONS(10320), 11, + [112359] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218268,8 +213134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218311,8 +213177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116533] = 2, - ACTIONS(10324), 11, + [112417] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218324,8 +213190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218367,8 +213233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116591] = 2, - ACTIONS(10330), 11, + [112475] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218380,8 +213246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218423,8 +213289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116649] = 2, - ACTIONS(10334), 11, + [112533] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218436,8 +213302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218479,8 +213345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116707] = 2, - ACTIONS(10338), 11, + [112591] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218492,8 +213358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218535,8 +213401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116765] = 2, - ACTIONS(10342), 11, + [112649] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218548,8 +213414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218591,8 +213457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116823] = 2, - ACTIONS(10346), 11, + [112707] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218604,8 +213470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218647,8 +213513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116881] = 2, - ACTIONS(10432), 11, + [112765] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218660,8 +213526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218703,8 +213569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116939] = 2, - ACTIONS(10354), 11, + [112823] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218716,8 +213582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218759,8 +213625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [116997] = 2, - ACTIONS(10362), 11, + [112881] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218772,8 +213638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218815,8 +213681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117055] = 2, - ACTIONS(10366), 11, + [112939] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218828,8 +213694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218871,8 +213737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117113] = 2, - ACTIONS(10370), 11, + [112997] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218884,8 +213750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218927,8 +213793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117171] = 2, - ACTIONS(10374), 11, + [113055] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218940,8 +213806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -218983,8 +213849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117229] = 2, - ACTIONS(10378), 11, + [113113] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -218996,8 +213862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219039,8 +213905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117287] = 2, - ACTIONS(10382), 11, + [113171] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219052,8 +213918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219095,8 +213961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117345] = 2, - ACTIONS(10386), 11, + [113229] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219108,8 +213974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219151,8 +214017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117403] = 2, - ACTIONS(10390), 11, + [113287] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219164,8 +214030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219207,8 +214073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117461] = 2, - ACTIONS(10394), 11, + [113345] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219220,8 +214086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219263,8 +214129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117519] = 2, - ACTIONS(10398), 11, + [113403] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219276,8 +214142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219319,8 +214185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117577] = 2, - ACTIONS(10402), 11, + [113461] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219332,8 +214198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219375,8 +214241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117635] = 2, - ACTIONS(10406), 11, + [113519] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219388,8 +214254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219431,8 +214297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117693] = 2, - ACTIONS(10416), 11, + [113577] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219444,8 +214310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219487,8 +214353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117751] = 2, - ACTIONS(10420), 11, + [113635] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219500,8 +214366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219543,8 +214409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117809] = 2, - ACTIONS(10424), 11, + [113693] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219556,8 +214422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219599,8 +214465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117867] = 2, - ACTIONS(10428), 11, + [113751] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219612,8 +214478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219655,8 +214521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117925] = 2, - ACTIONS(10476), 11, + [113809] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219668,8 +214534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219701,6 +214567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -219708,11 +214575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [117983] = 2, - ACTIONS(10436), 11, + [113867] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219724,8 +214590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219767,8 +214633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118041] = 2, - ACTIONS(10440), 11, + [113925] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219780,8 +214646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219823,8 +214689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118099] = 2, - ACTIONS(10444), 11, + [113983] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219836,8 +214702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219879,8 +214745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118157] = 2, - ACTIONS(10448), 11, + [114041] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219892,8 +214758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219935,8 +214801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118215] = 2, - ACTIONS(10124), 11, + [114099] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -219948,8 +214814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -219991,8 +214857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118273] = 2, - ACTIONS(10452), 11, + [114157] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220004,8 +214870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220047,8 +214913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118331] = 2, - ACTIONS(10460), 11, + [114215] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220060,8 +214926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220103,8 +214969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118389] = 2, - ACTIONS(10472), 11, + [114273] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220116,8 +214982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220159,8 +215025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118447] = 2, - ACTIONS(10464), 11, + [114331] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220172,8 +215038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220215,8 +215081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118505] = 2, - ACTIONS(10468), 11, + [114389] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220228,8 +215094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220271,8 +215137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118563] = 2, - ACTIONS(10152), 11, + [114447] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220284,8 +215150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220317,8 +215183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220327,8 +215193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118621] = 2, - ACTIONS(10374), 11, + [114505] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220340,8 +215206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220350,7 +215216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -220381,10 +215246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118679] = 2, - ACTIONS(10394), 11, + [114563] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220396,8 +215262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220406,7 +215272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -220430,6 +215295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -220439,8 +215305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118737] = 2, - ACTIONS(10156), 11, + [114621] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220452,8 +215318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220485,8 +215351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220495,8 +215361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118795] = 2, - ACTIONS(10160), 11, + [114679] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220508,8 +215374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220541,8 +215407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220551,8 +215417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118853] = 2, - ACTIONS(10164), 11, + [114737] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220564,8 +215430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220597,8 +215463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220607,8 +215473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118911] = 2, - ACTIONS(10120), 11, + [114795] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220620,8 +215486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220653,8 +215519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220663,8 +215529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [118969] = 2, - ACTIONS(10168), 11, + [114853] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220676,8 +215542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220709,8 +215575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220719,8 +215585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119027] = 2, - ACTIONS(10172), 11, + [114911] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220732,8 +215598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220765,8 +215631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220775,8 +215641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119085] = 2, - ACTIONS(10176), 11, + [114969] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220788,8 +215654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220821,8 +215687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220831,8 +215697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119143] = 2, - ACTIONS(10390), 11, + [115027] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220844,8 +215710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220854,7 +215720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -220878,6 +215743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, anon_sym_ATbefore, anon_sym_ATafter, @@ -220887,8 +215753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119201] = 2, - ACTIONS(10184), 11, + [115085] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220900,8 +215766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220933,8 +215799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATsetup, anon_sym_ATtask, + anon_sym_ATendtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -220943,8 +215809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119259] = 2, - ACTIONS(10188), 11, + [115143] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -220956,8 +215822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -220999,8 +215865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119317] = 2, - ACTIONS(10192), 11, + [115201] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221012,8 +215878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221023,6 +215889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -221046,7 +215913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -221055,8 +215921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119375] = 2, - ACTIONS(10196), 11, + [115259] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221068,8 +215934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221079,6 +215945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -221102,7 +215969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -221111,8 +215977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119433] = 2, - ACTIONS(10200), 11, + [115317] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221124,8 +215990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221167,8 +216033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119491] = 2, - ACTIONS(10204), 11, + [115375] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221180,8 +216046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221223,8 +216089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119549] = 2, - ACTIONS(10208), 11, + [115433] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221236,8 +216102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221279,8 +216145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119607] = 2, - ACTIONS(10212), 11, + [115491] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221292,8 +216158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221335,8 +216201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119665] = 2, - ACTIONS(10216), 11, + [115549] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221348,8 +216214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221391,8 +216257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119723] = 2, - ACTIONS(10220), 11, + [115607] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221404,8 +216270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221447,8 +216313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119781] = 2, - ACTIONS(10224), 11, + [115665] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221460,8 +216326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221503,8 +216369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119839] = 2, - ACTIONS(10228), 11, + [115723] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221516,8 +216382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221527,6 +216393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -221550,7 +216417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -221559,8 +216425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119897] = 2, - ACTIONS(10232), 11, + [115781] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221572,8 +216438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221615,8 +216481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [119955] = 2, - ACTIONS(10236), 11, + [115839] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221628,8 +216494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221671,8 +216537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120013] = 2, - ACTIONS(10240), 11, + [115897] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221684,8 +216550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221727,8 +216593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120071] = 2, - ACTIONS(10244), 11, + [115955] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221740,8 +216606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221783,8 +216649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120129] = 2, - ACTIONS(10386), 11, + [116013] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221796,8 +216662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221806,7 +216672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -221831,6 +216696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -221839,8 +216705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120187] = 2, - ACTIONS(10248), 11, + [116071] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221852,8 +216718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221895,8 +216761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120245] = 2, - ACTIONS(10252), 11, + [116129] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221908,8 +216774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -221951,8 +216817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120303] = 2, - ACTIONS(10256), 11, + [116187] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -221964,8 +216830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222007,8 +216873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120361] = 2, - ACTIONS(10456), 11, + [116245] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222020,8 +216886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222054,6 +216920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -222061,10 +216928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [120419] = 2, - ACTIONS(10260), 11, + [116303] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222076,8 +216942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222119,8 +216985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120477] = 2, - ACTIONS(10264), 11, + [116361] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222132,8 +216998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222175,8 +217041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120535] = 2, - ACTIONS(10268), 11, + [116419] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222188,8 +217054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222231,8 +217097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120593] = 2, - ACTIONS(10350), 11, + [116477] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222244,8 +217110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222287,8 +217153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120651] = 2, - ACTIONS(10272), 11, + [116535] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222300,8 +217166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222343,8 +217209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120709] = 2, - ACTIONS(10276), 11, + [116593] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222356,8 +217222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222399,8 +217265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120767] = 2, - ACTIONS(10280), 11, + [116651] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222412,8 +217278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222423,6 +217289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -222446,7 +217313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -222455,8 +217321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120825] = 2, - ACTIONS(10284), 11, + [116709] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222468,8 +217334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222511,8 +217377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120883] = 2, - ACTIONS(10288), 11, + [116767] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222524,8 +217390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222567,8 +217433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [120941] = 2, - ACTIONS(10292), 11, + [116825] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222580,8 +217446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222614,7 +217480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -222622,9 +217487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [120999] = 2, - ACTIONS(10296), 11, + [116883] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222636,8 +217502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222679,8 +217545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121057] = 2, - ACTIONS(10300), 11, + [116941] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222692,8 +217558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222735,8 +217601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121115] = 2, - ACTIONS(10304), 11, + [116999] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222748,8 +217614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222791,8 +217657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121173] = 2, - ACTIONS(10308), 11, + [117057] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222804,8 +217670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222847,8 +217713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121231] = 2, - ACTIONS(10312), 11, + [117115] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222860,8 +217726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222903,8 +217769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121289] = 2, - ACTIONS(10316), 11, + [117173] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222916,8 +217782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -222959,8 +217825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121347] = 2, - ACTIONS(10320), 11, + [117231] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -222972,8 +217838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223015,8 +217881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121405] = 2, - ACTIONS(10324), 11, + [117289] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223028,8 +217894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223071,8 +217937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121463] = 2, - ACTIONS(10330), 11, + [117347] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223084,8 +217950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223127,8 +217993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121521] = 2, - ACTIONS(10334), 11, + [117405] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223140,8 +218006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223183,8 +218049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121579] = 2, - ACTIONS(10338), 11, + [117463] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223196,8 +218062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223239,8 +218105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121637] = 2, - ACTIONS(10342), 11, + [117521] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223252,8 +218118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223295,8 +218161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121695] = 2, - ACTIONS(10346), 11, + [117579] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223308,8 +218174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223351,8 +218217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121753] = 2, - ACTIONS(10432), 11, + [117637] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223364,8 +218230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223407,8 +218273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121811] = 2, - ACTIONS(10354), 11, + [117695] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223420,8 +218286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223463,8 +218329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121869] = 2, - ACTIONS(10362), 11, + [117753] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223476,8 +218342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223519,8 +218385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121927] = 2, - ACTIONS(10366), 11, + [117811] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223532,8 +218398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223575,8 +218441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [121985] = 2, - ACTIONS(10370), 11, + [117869] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223588,8 +218454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223631,8 +218497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122043] = 2, - ACTIONS(10374), 11, + [117927] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223644,8 +218510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223687,8 +218553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122101] = 2, - ACTIONS(10378), 11, + [117985] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223700,8 +218566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223743,8 +218609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122159] = 2, - ACTIONS(10382), 11, + [118043] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223756,8 +218622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223799,8 +218665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122217] = 2, - ACTIONS(10386), 11, + [118101] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223812,8 +218678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223855,8 +218721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122275] = 2, - ACTIONS(10390), 11, + [118159] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223868,8 +218734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223911,8 +218777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122333] = 2, - ACTIONS(10394), 11, + [118217] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223924,8 +218790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -223967,8 +218833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122391] = 2, - ACTIONS(10398), 11, + [118275] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -223980,8 +218846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224023,8 +218889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122449] = 2, - ACTIONS(10402), 11, + [118333] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224036,8 +218902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224079,8 +218945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122507] = 2, - ACTIONS(10406), 11, + [118391] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224092,8 +218958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224135,8 +219001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122565] = 2, - ACTIONS(10416), 11, + [118449] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224148,8 +219014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224191,8 +219057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122623] = 2, - ACTIONS(10420), 11, + [118507] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224204,8 +219070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224247,8 +219113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122681] = 2, - ACTIONS(10424), 11, + [118565] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224260,8 +219126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224303,8 +219169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122739] = 2, - ACTIONS(10428), 11, + [118623] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224316,8 +219182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224359,8 +219225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122797] = 2, - ACTIONS(10476), 11, + [118681] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224372,8 +219238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224406,6 +219272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -224413,10 +219280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [122855] = 2, - ACTIONS(10436), 11, + [118739] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224428,8 +219294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224471,8 +219337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122913] = 2, - ACTIONS(10440), 11, + [118797] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224484,8 +219350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224527,8 +219393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [122971] = 2, - ACTIONS(10444), 11, + [118855] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224540,8 +219406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224583,8 +219449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123029] = 2, - ACTIONS(10448), 11, + [118913] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224596,8 +219462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224639,8 +219505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123087] = 2, - ACTIONS(10124), 11, + [118971] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224652,8 +219518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224695,8 +219561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123145] = 2, - ACTIONS(10452), 11, + [119029] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224708,8 +219574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224751,8 +219617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123203] = 2, - ACTIONS(10460), 11, + [119087] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224764,8 +219630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224807,8 +219673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123261] = 2, - ACTIONS(10472), 11, + [119145] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224820,8 +219686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224863,8 +219729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123319] = 2, - ACTIONS(10464), 11, + [119203] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224876,8 +219742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224919,8 +219785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123377] = 2, - ACTIONS(10468), 11, + [119261] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224932,8 +219798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -224966,7 +219832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, - anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -224974,9 +219839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [123435] = 2, - ACTIONS(10152), 11, + [119319] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -224988,8 +219854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225022,17 +219888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123493] = 2, - ACTIONS(10382), 11, + [119377] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225044,8 +219910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225054,7 +219920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -225079,6 +219944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -225087,8 +219953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123551] = 2, - ACTIONS(10378), 11, + [119435] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225100,8 +219966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225110,7 +219976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -225135,6 +220000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, @@ -225143,8 +220009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123609] = 2, - ACTIONS(10156), 11, + [119493] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225156,8 +220022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225190,17 +220056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123667] = 2, - ACTIONS(10160), 11, + [119551] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225212,8 +220078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225246,17 +220112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123725] = 2, - ACTIONS(10164), 11, + [119609] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225268,8 +220134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225302,17 +220168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123783] = 2, - ACTIONS(10120), 11, + [119667] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225324,8 +220190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225358,17 +220224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123841] = 2, - ACTIONS(10168), 11, + [119725] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225380,8 +220246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225414,17 +220280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123899] = 2, - ACTIONS(10172), 11, + [119783] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225436,8 +220302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225470,17 +220336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [123957] = 2, - ACTIONS(10176), 11, + [119841] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225492,8 +220358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225526,17 +220392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsetup, anon_sym_ATtask, anon_sym_ATstory, + anon_sym_ATendstory, anon_sym_ATbefore, anon_sym_ATafter, anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124015] = 2, - ACTIONS(10346), 11, + [119899] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225548,8 +220414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225558,7 +220424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -225588,11 +220453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124073] = 2, - ACTIONS(10184), 11, + [119957] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225604,8 +220470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225614,6 +220480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -225643,12 +220510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124131] = 2, - ACTIONS(10188), 11, + [120015] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225660,8 +220526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225671,6 +220537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -225699,12 +220566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124189] = 2, - ACTIONS(10192), 11, + [120073] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225716,8 +220582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225759,8 +220625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124247] = 2, - ACTIONS(10196), 11, + [120131] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225772,8 +220638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225815,8 +220681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124305] = 2, - ACTIONS(10200), 11, + [120189] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225828,8 +220694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225871,8 +220737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124363] = 2, - ACTIONS(10204), 11, + [120247] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225884,8 +220750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225927,8 +220793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124421] = 2, - ACTIONS(10208), 11, + [120305] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225940,8 +220806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -225983,8 +220849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124479] = 2, - ACTIONS(10212), 11, + [120363] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -225996,8 +220862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226039,8 +220905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124537] = 2, - ACTIONS(10216), 11, + [120421] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226052,8 +220918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226095,8 +220961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124595] = 2, - ACTIONS(10220), 11, + [120479] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226108,13 +220974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -226147,12 +221014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124653] = 2, - ACTIONS(10224), 11, + [120537] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226164,8 +221030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226207,8 +221073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124711] = 2, - ACTIONS(10228), 11, + [120595] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226220,8 +221086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226263,8 +221129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124769] = 2, - ACTIONS(10232), 11, + [120653] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226276,8 +221142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226319,8 +221185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124827] = 2, - ACTIONS(10236), 11, + [120711] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226332,8 +221198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226375,8 +221241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124885] = 2, - ACTIONS(10240), 11, + [120769] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226388,8 +221254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226431,8 +221297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [124943] = 2, - ACTIONS(10244), 11, + [120827] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226444,8 +221310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226487,8 +221353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125001] = 2, - ACTIONS(10370), 11, + [120885] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226500,8 +221366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226510,7 +221376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -226540,11 +221405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125059] = 2, - ACTIONS(10248), 11, + [120943] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226556,8 +221422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226599,8 +221465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125117] = 2, - ACTIONS(10252), 11, + [121001] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226612,8 +221478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226655,8 +221521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125175] = 2, - ACTIONS(10256), 11, + [121059] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226668,8 +221534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226711,8 +221577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125233] = 2, - ACTIONS(10456), 11, + [121117] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226724,15 +221590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -226764,11 +221629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125291] = 2, - ACTIONS(10260), 11, + [121175] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226780,8 +221646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226823,8 +221689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125349] = 2, - ACTIONS(10264), 11, + [121233] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226836,8 +221702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226879,8 +221745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125407] = 2, - ACTIONS(10268), 11, + [121291] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226892,8 +221758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226935,8 +221801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125465] = 2, - ACTIONS(10350), 11, + [121349] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -226948,8 +221814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -226991,8 +221857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125523] = 2, - ACTIONS(10272), 11, + [121407] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227004,8 +221870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227015,6 +221881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -227043,12 +221910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125581] = 2, - ACTIONS(10276), 11, + [121465] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227060,8 +221926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227103,8 +221969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125639] = 2, - ACTIONS(10280), 11, + [121523] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227116,8 +221982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227159,8 +222025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125697] = 2, - ACTIONS(10284), 11, + [121581] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227172,14 +222038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -227211,12 +222078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125755] = 2, - ACTIONS(10288), 11, + [121639] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227228,8 +222094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227271,8 +222137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125813] = 2, - ACTIONS(10292), 11, + [121697] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227284,8 +222150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227327,8 +222193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125871] = 2, - ACTIONS(10296), 11, + [121755] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227340,8 +222206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227383,8 +222249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125929] = 2, - ACTIONS(10300), 11, + [121813] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227396,8 +222262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227439,8 +222305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [125987] = 2, - ACTIONS(10304), 11, + [121871] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227452,8 +222318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227495,8 +222361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126045] = 2, - ACTIONS(10308), 11, + [121929] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227508,8 +222374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227551,8 +222417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126103] = 2, - ACTIONS(10312), 11, + [121987] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227564,8 +222430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227607,8 +222473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126161] = 2, - ACTIONS(10316), 11, + [122045] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227620,8 +222486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227663,8 +222529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126219] = 2, - ACTIONS(10320), 11, + [122103] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227676,8 +222542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227719,8 +222585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126277] = 2, - ACTIONS(10324), 11, + [122161] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227732,8 +222598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227775,8 +222641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126335] = 2, - ACTIONS(10330), 11, + [122219] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227788,8 +222654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227831,8 +222697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126393] = 2, - ACTIONS(10334), 11, + [122277] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227844,8 +222710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227887,8 +222753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126451] = 2, - ACTIONS(10338), 11, + [122335] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227900,8 +222766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227943,8 +222809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126509] = 2, - ACTIONS(10342), 11, + [122393] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -227956,8 +222822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -227999,8 +222865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126567] = 2, - ACTIONS(10346), 11, + [122451] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228012,8 +222878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228055,8 +222921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126625] = 2, - ACTIONS(10432), 11, + [122509] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228068,8 +222934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228111,8 +222977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126683] = 2, - ACTIONS(10354), 11, + [122567] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228124,8 +222990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228167,8 +223033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126741] = 2, - ACTIONS(10362), 11, + [122625] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228180,8 +223046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228223,8 +223089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126799] = 2, - ACTIONS(10366), 11, + [122683] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228236,8 +223102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228279,8 +223145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126857] = 2, - ACTIONS(10370), 11, + [122741] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228292,8 +223158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228335,8 +223201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126915] = 2, - ACTIONS(10374), 11, + [122799] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228348,8 +223214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228391,8 +223257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [126973] = 2, - ACTIONS(10378), 11, + [122857] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228404,8 +223270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228447,8 +223313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127031] = 2, - ACTIONS(10382), 11, + [122915] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228460,8 +223326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228503,8 +223369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127089] = 2, - ACTIONS(10386), 11, + [122973] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228516,8 +223382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228559,8 +223425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127147] = 2, - ACTIONS(10390), 11, + [123031] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228572,8 +223438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228615,8 +223481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127205] = 2, - ACTIONS(10394), 11, + [123089] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228628,8 +223494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228671,8 +223537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127263] = 2, - ACTIONS(10398), 11, + [123147] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228684,8 +223550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228727,8 +223593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127321] = 2, - ACTIONS(10402), 11, + [123205] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228740,8 +223606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228783,8 +223649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127379] = 2, - ACTIONS(10406), 11, + [123263] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228796,8 +223662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228839,8 +223705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127437] = 2, - ACTIONS(10416), 11, + [123321] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228852,8 +223718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228895,8 +223761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127495] = 2, - ACTIONS(10420), 11, + [123379] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228908,8 +223774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -228951,8 +223817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127553] = 2, - ACTIONS(10424), 11, + [123437] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -228964,8 +223830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229007,8 +223873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127611] = 2, - ACTIONS(10428), 11, + [123495] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229020,8 +223886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229063,8 +223929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127669] = 2, - ACTIONS(10476), 11, + [123553] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229076,15 +223942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -229116,11 +223981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127727] = 2, - ACTIONS(10436), 11, + [123611] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229132,8 +223998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229175,8 +224041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127785] = 2, - ACTIONS(10440), 11, + [123669] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229188,8 +224054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229231,8 +224097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127843] = 2, - ACTIONS(10444), 11, + [123727] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229244,8 +224110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229287,8 +224153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127901] = 2, - ACTIONS(10448), 11, + [123785] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229300,8 +224166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229343,8 +224209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [127959] = 2, - ACTIONS(10124), 11, + [123843] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229356,8 +224222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229399,8 +224265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128017] = 2, - ACTIONS(10452), 11, + [123901] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229412,8 +224278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229455,8 +224321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128075] = 2, - ACTIONS(10460), 11, + [123959] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229468,8 +224334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229511,8 +224377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128133] = 2, - ACTIONS(10472), 11, + [124017] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229524,14 +224390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -229563,12 +224430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128191] = 2, - ACTIONS(10464), 11, + [124075] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229580,8 +224446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229623,8 +224489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128249] = 2, - ACTIONS(10468), 11, + [124133] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229636,8 +224502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229679,8 +224545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128307] = 2, - ACTIONS(10152), 11, + [124191] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229692,8 +224558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229731,12 +224597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128365] = 2, - ACTIONS(10366), 11, + [124249] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229748,8 +224614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229758,7 +224624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -229788,11 +224653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128423] = 2, - ACTIONS(10362), 11, + [124307] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229804,8 +224670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229814,7 +224680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -229844,11 +224709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128481] = 2, - ACTIONS(10156), 11, + [124365] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229860,8 +224726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229899,12 +224765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128539] = 2, - ACTIONS(10160), 11, + [124423] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229916,8 +224782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -229955,12 +224821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128597] = 2, - ACTIONS(10164), 11, + [124481] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -229972,8 +224838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230011,12 +224877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128655] = 2, - ACTIONS(10120), 11, + [124539] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230028,8 +224894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230067,12 +224933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128713] = 2, - ACTIONS(10168), 11, + [124597] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230084,8 +224950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230123,12 +224989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsuccess, anon_sym_ATfinished, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128771] = 2, - ACTIONS(10172), 11, + [124655] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230140,8 +225006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230183,8 +225049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128829] = 2, - ACTIONS(10176), 11, + [124713] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230196,8 +225062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230206,6 +225072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -230236,11 +225103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128887] = 2, - ACTIONS(10354), 11, + [124771] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230252,8 +225118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230295,8 +225161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [128945] = 2, - ACTIONS(10184), 11, + [124829] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230308,8 +225174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230351,8 +225217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129003] = 2, - ACTIONS(10188), 11, + [124887] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230364,8 +225230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230407,8 +225273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129061] = 2, - ACTIONS(10192), 11, + [124945] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230420,8 +225286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230463,8 +225329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129119] = 2, - ACTIONS(10196), 11, + [125003] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230476,8 +225342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230519,8 +225385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129177] = 2, - ACTIONS(10200), 11, + [125061] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230532,8 +225398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230575,8 +225441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129235] = 2, - ACTIONS(10204), 11, + [125119] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230588,8 +225454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230631,8 +225497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129293] = 2, - ACTIONS(10208), 11, + [125177] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230644,8 +225510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230687,8 +225553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129351] = 2, - ACTIONS(10212), 11, + [125235] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230700,8 +225566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230710,6 +225576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -230740,11 +225607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129409] = 2, - ACTIONS(10216), 11, + [125293] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230756,8 +225622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230799,8 +225665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129467] = 2, - ACTIONS(10220), 11, + [125351] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230812,8 +225678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230855,8 +225721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129525] = 2, - ACTIONS(10224), 11, + [125409] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230868,8 +225734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230911,8 +225777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129583] = 2, - ACTIONS(10228), 11, + [125467] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230924,8 +225790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -230967,8 +225833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129641] = 2, - ACTIONS(10232), 11, + [125525] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -230980,8 +225846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231023,8 +225889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129699] = 2, - ACTIONS(10236), 11, + [125583] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231036,8 +225902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231079,8 +225945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129757] = 2, - ACTIONS(10240), 11, + [125641] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231092,8 +225958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231135,8 +226001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129815] = 2, - ACTIONS(10244), 11, + [125699] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231148,8 +226014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231191,8 +226057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129873] = 2, - ACTIONS(10432), 11, + [125757] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231204,8 +226070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231214,7 +226080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -231245,10 +226110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129931] = 2, - ACTIONS(10248), 11, + [125815] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231260,8 +226126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231303,8 +226169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [129989] = 2, - ACTIONS(10252), 11, + [125873] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231316,8 +226182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231359,8 +226225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130047] = 2, - ACTIONS(10256), 11, + [125931] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231372,8 +226238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231415,8 +226281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130105] = 2, - ACTIONS(10456), 11, + [125989] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231428,8 +226294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231437,7 +226303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -231469,10 +226334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130163] = 2, - ACTIONS(10260), 11, + [126047] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231484,8 +226350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231527,8 +226393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130221] = 2, - ACTIONS(10264), 11, + [126105] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231540,8 +226406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231583,8 +226449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130279] = 2, - ACTIONS(10268), 11, + [126163] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231596,8 +226462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231606,6 +226472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -231636,11 +226503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130337] = 2, - ACTIONS(10350), 11, + [126221] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231652,8 +226518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231695,8 +226561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130395] = 2, - ACTIONS(10272), 11, + [126279] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231708,8 +226574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231751,8 +226617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130453] = 2, - ACTIONS(10276), 11, + [126337] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231764,8 +226630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231773,6 +226639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -231804,11 +226671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130511] = 2, - ACTIONS(10280), 11, + [126395] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231820,8 +226686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231863,8 +226729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130569] = 2, - ACTIONS(10284), 11, + [126453] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231876,8 +226742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231919,8 +226785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130627] = 2, - ACTIONS(10288), 11, + [126511] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231932,8 +226798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -231975,8 +226841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130685] = 2, - ACTIONS(10292), 11, + [126569] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -231988,8 +226854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232031,8 +226897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130743] = 2, - ACTIONS(10296), 11, + [126627] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232044,8 +226910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232087,8 +226953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130801] = 2, - ACTIONS(10300), 11, + [126685] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232100,8 +226966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232143,8 +227009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130859] = 2, - ACTIONS(10304), 11, + [126743] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232156,8 +227022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232199,8 +227065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130917] = 2, - ACTIONS(10308), 11, + [126801] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232212,8 +227078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232255,8 +227121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [130975] = 2, - ACTIONS(10312), 11, + [126859] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232268,8 +227134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232311,8 +227177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131033] = 2, - ACTIONS(10316), 11, + [126917] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232324,8 +227190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232367,8 +227233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131091] = 2, - ACTIONS(10320), 11, + [126975] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232380,8 +227246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232423,8 +227289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131149] = 2, - ACTIONS(10324), 11, + [127033] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232436,8 +227302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232479,8 +227345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131207] = 2, - ACTIONS(10330), 11, + [127091] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232492,8 +227358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232535,8 +227401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131265] = 2, - ACTIONS(10334), 11, + [127149] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232548,8 +227414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232591,8 +227457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131323] = 2, - ACTIONS(10338), 11, + [127207] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232604,8 +227470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232647,8 +227513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131381] = 2, - ACTIONS(10342), 11, + [127265] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232660,8 +227526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232703,8 +227569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131439] = 2, - ACTIONS(10346), 11, + [127323] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232716,8 +227582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232759,8 +227625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131497] = 2, - ACTIONS(10432), 11, + [127381] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232772,8 +227638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232815,8 +227681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131555] = 2, - ACTIONS(10354), 11, + [127439] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232828,8 +227694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232871,8 +227737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131613] = 2, - ACTIONS(10362), 11, + [127497] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232884,8 +227750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232927,8 +227793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131671] = 2, - ACTIONS(10366), 11, + [127555] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232940,8 +227806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -232983,8 +227849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131729] = 2, - ACTIONS(10370), 11, + [127613] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -232996,8 +227862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233039,8 +227905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131787] = 2, - ACTIONS(10374), 11, + [127671] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233052,8 +227918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233095,8 +227961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131845] = 2, - ACTIONS(10378), 11, + [127729] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233108,8 +227974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233151,8 +228017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131903] = 2, - ACTIONS(10382), 11, + [127787] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233164,8 +228030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233207,8 +228073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [131961] = 2, - ACTIONS(10386), 11, + [127845] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233220,8 +228086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233263,8 +228129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132019] = 2, - ACTIONS(10390), 11, + [127903] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233276,8 +228142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233319,8 +228185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132077] = 2, - ACTIONS(10394), 11, + [127961] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233332,8 +228198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233375,8 +228241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132135] = 2, - ACTIONS(10398), 11, + [128019] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233388,8 +228254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233431,8 +228297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132193] = 2, - ACTIONS(10402), 11, + [128077] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233444,8 +228310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233487,8 +228353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132251] = 2, - ACTIONS(10406), 11, + [128135] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233500,8 +228366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233543,8 +228409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132309] = 2, - ACTIONS(10416), 11, + [128193] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233556,8 +228422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233599,8 +228465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132367] = 2, - ACTIONS(10420), 11, + [128251] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233612,8 +228478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233655,8 +228521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132425] = 2, - ACTIONS(10424), 11, + [128309] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233668,8 +228534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233711,8 +228577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132483] = 2, - ACTIONS(10428), 11, + [128367] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233724,8 +228590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233767,8 +228633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132541] = 2, - ACTIONS(10476), 11, + [128425] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233780,8 +228646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233789,7 +228655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -233821,10 +228686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132599] = 2, - ACTIONS(10436), 11, + [128483] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233836,8 +228702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233879,8 +228745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132657] = 2, - ACTIONS(10440), 11, + [128541] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233892,8 +228758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233935,8 +228801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132715] = 2, - ACTIONS(10444), 11, + [128599] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -233948,8 +228814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -233991,8 +228857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132773] = 2, - ACTIONS(10448), 11, + [128657] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234004,8 +228870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234047,8 +228913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132831] = 2, - ACTIONS(10124), 11, + [128715] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234060,8 +228926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234103,8 +228969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132889] = 2, - ACTIONS(10452), 11, + [128773] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234116,8 +228982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234125,6 +228991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -234156,11 +229023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [132947] = 2, - ACTIONS(10460), 11, + [128831] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234172,8 +229038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234215,8 +229081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [133005] = 2, - ACTIONS(10472), 11, + [128889] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234228,8 +229094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234271,8 +229137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [133063] = 2, - ACTIONS(10464), 11, + [128947] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234284,8 +229150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234327,8 +229193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [133121] = 2, - ACTIONS(10468), 11, + [129005] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234340,8 +229206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234383,8 +229249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [133179] = 2, - ACTIONS(10152), 11, + [129063] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234396,8 +229262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234436,11 +229302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [133237] = 2, - ACTIONS(10312), 11, + [129121] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234452,8 +229318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234462,7 +229328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234493,10 +229358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [133295] = 2, - ACTIONS(10342), 11, + [129179] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234508,8 +229374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234518,7 +229384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234549,10 +229414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym__text_token3, - [133353] = 2, - ACTIONS(10156), 11, + [129237] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234564,8 +229430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234604,11 +229470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [133411] = 2, - ACTIONS(10160), 11, + [129295] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234620,8 +229486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234660,11 +229526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [133469] = 2, - ACTIONS(10164), 11, + [129353] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234676,8 +229542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234716,11 +229582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfinished, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [133527] = 2, - ACTIONS(10120), 11, + [129411] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234732,8 +229598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234775,8 +229641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [133585] = 2, - ACTIONS(10168), 11, + [129469] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234788,8 +229654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234798,6 +229664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234829,10 +229696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [133643] = 2, - ACTIONS(10172), 11, + [129527] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234844,8 +229710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234854,6 +229720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234885,10 +229752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [133701] = 2, - ACTIONS(10176), 11, + [129585] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234900,8 +229766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234943,8 +229809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [133759] = 2, - ACTIONS(10338), 11, + [129643] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -234956,8 +229822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -234966,7 +229832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -234998,9 +229863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [133817] = 2, - ACTIONS(10184), 11, + [129701] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235012,8 +229878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235055,8 +229921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [133875] = 2, - ACTIONS(10188), 11, + [129759] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235068,8 +229934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235111,8 +229977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [133933] = 2, - ACTIONS(10192), 11, + [129817] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235124,8 +229990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235167,8 +230033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [133991] = 2, - ACTIONS(10196), 11, + [129875] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235180,8 +230046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235223,8 +230089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134049] = 2, - ACTIONS(10200), 11, + [129933] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235236,8 +230102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235279,8 +230145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134107] = 2, - ACTIONS(10204), 11, + [129991] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235292,8 +230158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235302,6 +230168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -235333,10 +230200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [134165] = 2, - ACTIONS(10208), 11, + [130049] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235348,8 +230214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235391,8 +230257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134223] = 2, - ACTIONS(10212), 11, + [130107] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235404,8 +230270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235447,8 +230313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134281] = 2, - ACTIONS(10216), 11, + [130165] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235460,8 +230326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235503,8 +230369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134339] = 2, - ACTIONS(10220), 11, + [130223] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235516,8 +230382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235559,8 +230425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134397] = 2, - ACTIONS(10224), 11, + [130281] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235572,8 +230438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235615,8 +230481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134455] = 2, - ACTIONS(10228), 11, + [130339] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235628,8 +230494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235671,8 +230537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134513] = 2, - ACTIONS(10232), 11, + [130397] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235684,8 +230550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235727,8 +230593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134571] = 2, - ACTIONS(10236), 11, + [130455] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235740,8 +230606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235783,8 +230649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134629] = 2, - ACTIONS(10240), 11, + [130513] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235796,8 +230662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235839,8 +230705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134687] = 2, - ACTIONS(10244), 11, + [130571] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235852,8 +230718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235895,8 +230761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134745] = 2, - ACTIONS(10334), 11, + [130629] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235908,8 +230774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -235918,7 +230784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -235950,9 +230815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [134803] = 2, - ACTIONS(10248), 11, + [130687] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -235964,8 +230830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236007,8 +230873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134861] = 2, - ACTIONS(10252), 11, + [130745] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236020,8 +230886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236063,8 +230929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134919] = 2, - ACTIONS(10256), 11, + [130803] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236076,8 +230942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236119,8 +230985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [134977] = 2, - ACTIONS(10330), 11, + [130861] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236132,8 +230998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236142,7 +231008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -236174,9 +231039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [135035] = 2, - ACTIONS(10260), 11, + [130919] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236188,13 +231054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -236229,10 +231096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [135093] = 2, - ACTIONS(10264), 11, + [130977] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236244,8 +231110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236287,8 +231153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135151] = 2, - ACTIONS(10268), 11, + [131035] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236300,8 +231166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236343,8 +231209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135209] = 2, - ACTIONS(10350), 11, + [131093] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236356,8 +231222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236366,6 +231232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -236397,10 +231264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [135267] = 2, - ACTIONS(10272), 11, + [131151] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236412,8 +231278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236455,8 +231321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135325] = 2, - ACTIONS(10276), 11, + [131209] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236468,8 +231334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236511,8 +231377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135383] = 2, - ACTIONS(10280), 11, + [131267] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236524,8 +231390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236567,8 +231433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135441] = 2, - ACTIONS(10284), 11, + [131325] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236580,8 +231446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236623,8 +231489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135499] = 2, - ACTIONS(10288), 11, + [131383] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236636,8 +231502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236679,8 +231545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135557] = 2, - ACTIONS(10292), 11, + [131441] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236692,8 +231558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236735,8 +231601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135615] = 2, - ACTIONS(10296), 11, + [131499] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236748,8 +231614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236791,8 +231657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135673] = 2, - ACTIONS(10300), 11, + [131557] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236804,8 +231670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236847,8 +231713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135731] = 2, - ACTIONS(10304), 11, + [131615] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236860,8 +231726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236903,8 +231769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135789] = 2, - ACTIONS(10308), 11, + [131673] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236916,8 +231782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -236959,8 +231825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135847] = 2, - ACTIONS(10312), 11, + [131731] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -236972,8 +231838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237015,8 +231881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135905] = 2, - ACTIONS(10316), 11, + [131789] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237028,8 +231894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237071,8 +231937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [135963] = 2, - ACTIONS(10320), 11, + [131847] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237084,8 +231950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237127,8 +231993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136021] = 2, - ACTIONS(10324), 11, + [131905] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237140,8 +232006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237183,8 +232049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136079] = 2, - ACTIONS(10330), 11, + [131963] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237196,8 +232062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237239,8 +232105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136137] = 2, - ACTIONS(10334), 11, + [132021] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237252,8 +232118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237295,8 +232161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136195] = 2, - ACTIONS(10338), 11, + [132079] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237308,8 +232174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237351,8 +232217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136253] = 2, - ACTIONS(10342), 11, + [132137] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237364,8 +232230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237407,8 +232273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136311] = 2, - ACTIONS(10346), 11, + [132195] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237420,8 +232286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237463,8 +232329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136369] = 2, - ACTIONS(10432), 11, + [132253] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237476,8 +232342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237519,8 +232385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136427] = 2, - ACTIONS(10354), 11, + [132311] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237532,8 +232398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237575,8 +232441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136485] = 2, - ACTIONS(10362), 11, + [132369] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237588,8 +232454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237631,8 +232497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136543] = 2, - ACTIONS(10366), 11, + [132427] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237644,8 +232510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237687,8 +232553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136601] = 2, - ACTIONS(10370), 11, + [132485] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237700,8 +232566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237743,8 +232609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136659] = 2, - ACTIONS(10374), 11, + [132543] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237756,8 +232622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237799,8 +232665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136717] = 2, - ACTIONS(10378), 11, + [132601] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237812,8 +232678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237855,8 +232721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136775] = 2, - ACTIONS(10382), 11, + [132659] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237868,8 +232734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237911,8 +232777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136833] = 2, - ACTIONS(10386), 11, + [132717] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237924,8 +232790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -237967,8 +232833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136891] = 2, - ACTIONS(10390), 11, + [132775] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -237980,8 +232846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238023,8 +232889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [136949] = 2, - ACTIONS(10394), 11, + [132833] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238036,8 +232902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238079,8 +232945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137007] = 2, - ACTIONS(10398), 11, + [132891] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238092,8 +232958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238135,8 +233001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137065] = 2, - ACTIONS(10402), 11, + [132949] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238148,8 +233014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238191,8 +233057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137123] = 2, - ACTIONS(10406), 11, + [133007] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238204,8 +233070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238247,8 +233113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137181] = 2, - ACTIONS(10416), 11, + [133065] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238260,8 +233126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238303,8 +233169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137239] = 2, - ACTIONS(10420), 11, + [133123] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238316,8 +233182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238359,8 +233225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137297] = 2, - ACTIONS(10424), 11, + [133181] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238372,8 +233238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238415,8 +233281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137355] = 2, - ACTIONS(10428), 11, + [133239] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238428,8 +233294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238471,8 +233337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137413] = 2, - ACTIONS(10324), 11, + [133297] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238484,8 +233350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238494,7 +233360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -238526,9 +233391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [137471] = 2, - ACTIONS(10436), 11, + [133355] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238540,8 +233406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238583,8 +233449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137529] = 2, - ACTIONS(10440), 11, + [133413] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238596,8 +233462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238639,8 +233505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137587] = 2, - ACTIONS(10444), 11, + [133471] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238652,8 +233518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238695,8 +233561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137645] = 2, - ACTIONS(10448), 11, + [133529] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238708,8 +233574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238718,6 +233584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -238749,10 +233616,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym__text_token3, - [137703] = 2, - ACTIONS(10124), 11, + [133587] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238764,8 +233630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238807,8 +233673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137761] = 2, - ACTIONS(10452), 11, + [133645] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238820,8 +233686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238863,8 +233729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137819] = 2, - ACTIONS(10460), 11, + [133703] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238876,8 +233742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238919,8 +233785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137877] = 2, - ACTIONS(10472), 11, + [133761] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238932,8 +233798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -238975,8 +233841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137935] = 2, - ACTIONS(10464), 11, + [133819] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -238988,8 +233854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239031,8 +233897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [137993] = 2, - ACTIONS(10468), 11, + [133877] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239044,8 +233910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239087,8 +233953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATvolt, anon_sym_ATendvolt, aux_sym__text_token3, - [138051] = 2, - ACTIONS(10152), 11, + [133935] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239100,14 +233966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -239142,9 +234007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [138109] = 2, - ACTIONS(10320), 11, + [133993] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239156,8 +234022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239166,7 +234032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239198,9 +234063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [138167] = 2, - ACTIONS(10316), 11, + [134051] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239212,8 +234078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239222,7 +234088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239254,9 +234119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [138225] = 2, - ACTIONS(10156), 11, + [134109] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239268,14 +234134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -239310,9 +234175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym__text_token3, - [138283] = 2, - ACTIONS(10160), 11, + [134167] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239324,8 +234190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239367,8 +234233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138341] = 2, - ACTIONS(10164), 11, + [134225] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239380,17 +234246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239423,8 +234289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138399] = 2, - ACTIONS(10120), 11, + [134283] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239436,17 +234302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239479,8 +234345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138457] = 2, - ACTIONS(10168), 11, + [134341] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239492,8 +234358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239535,8 +234401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138515] = 2, - ACTIONS(10172), 11, + [134399] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239548,8 +234414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239591,8 +234457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138573] = 2, - ACTIONS(10176), 11, + [134457] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239604,8 +234470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239647,8 +234513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138631] = 2, - ACTIONS(10284), 11, + [134515] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239660,17 +234526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239703,8 +234569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138689] = 2, - ACTIONS(10184), 11, + [134573] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239716,8 +234582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239759,8 +234625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138747] = 2, - ACTIONS(10188), 11, + [134631] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239772,8 +234638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239815,8 +234681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138805] = 2, - ACTIONS(10192), 11, + [134689] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239828,8 +234694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239871,8 +234737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138863] = 2, - ACTIONS(10196), 11, + [134747] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239884,17 +234750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -239927,8 +234793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138921] = 2, - ACTIONS(10200), 11, + [134805] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239940,8 +234806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -239983,8 +234849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [138979] = 2, - ACTIONS(10204), 11, + [134863] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -239996,8 +234862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240039,8 +234905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139037] = 2, - ACTIONS(10208), 11, + [134921] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240052,8 +234918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240095,8 +234961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139095] = 2, - ACTIONS(10212), 11, + [134979] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240108,8 +234974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240151,8 +235017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139153] = 2, - ACTIONS(10216), 11, + [135037] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240164,8 +235030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240207,8 +235073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139211] = 2, - ACTIONS(10220), 11, + [135095] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240220,8 +235086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240263,8 +235129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139269] = 2, - ACTIONS(10334), 11, + [135153] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240276,14 +235142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -240319,8 +235185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139327] = 2, - ACTIONS(10228), 11, + [135211] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240332,8 +235198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240375,8 +235241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139385] = 2, - ACTIONS(10232), 11, + [135269] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240388,8 +235254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240431,8 +235297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139443] = 2, - ACTIONS(10236), 11, + [135327] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240444,8 +235310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240487,8 +235353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139501] = 2, - ACTIONS(10240), 11, + [135385] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240500,8 +235366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240543,8 +235409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139559] = 2, - ACTIONS(10244), 11, + [135443] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240556,8 +235422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240599,8 +235465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139617] = 2, - ACTIONS(10184), 11, + [135501] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240612,14 +235478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -240655,8 +235521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139675] = 2, - ACTIONS(10248), 11, + [135559] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240668,8 +235534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240711,8 +235577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139733] = 2, - ACTIONS(10252), 11, + [135617] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240724,8 +235590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240767,8 +235633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139791] = 2, - ACTIONS(10256), 11, + [135675] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240780,17 +235646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240823,8 +235689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139849] = 2, - ACTIONS(10308), 11, + [135733] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240836,17 +235702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240879,8 +235745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139907] = 2, - ACTIONS(10260), 11, + [135791] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240892,8 +235758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -240935,8 +235801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [139965] = 2, - ACTIONS(10264), 11, + [135849] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -240948,17 +235814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -240991,8 +235857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140023] = 2, - ACTIONS(10268), 11, + [135907] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241004,8 +235870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241047,8 +235913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140081] = 2, - ACTIONS(10350), 11, + [135965] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241060,8 +235926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241103,8 +235969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140139] = 2, - ACTIONS(10272), 11, + [136023] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241116,8 +235982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241159,8 +236025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140197] = 2, - ACTIONS(10276), 11, + [136081] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241172,8 +236038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241215,8 +236081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140255] = 2, - ACTIONS(10280), 11, + [136139] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241228,8 +236094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241271,8 +236137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140313] = 2, - ACTIONS(10284), 11, + [136197] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241284,8 +236150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241327,8 +236193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140371] = 2, - ACTIONS(10288), 11, + [136255] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241340,8 +236206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241383,8 +236249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140429] = 2, - ACTIONS(10292), 11, + [136313] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241396,8 +236262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241439,8 +236305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140487] = 2, - ACTIONS(10296), 11, + [136371] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241452,8 +236318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241495,8 +236361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140545] = 2, - ACTIONS(10300), 11, + [136429] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241508,8 +236374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241551,8 +236417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140603] = 2, - ACTIONS(10304), 11, + [136487] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241564,8 +236430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241607,8 +236473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140661] = 2, - ACTIONS(10308), 11, + [136545] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241620,8 +236486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241663,8 +236529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140719] = 2, - ACTIONS(10312), 11, + [136603] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241676,8 +236542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241719,8 +236585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140777] = 2, - ACTIONS(10316), 11, + [136661] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241732,8 +236598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241775,8 +236641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140835] = 2, - ACTIONS(10320), 11, + [136719] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241788,8 +236654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241831,8 +236697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140893] = 2, - ACTIONS(10324), 11, + [136777] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241844,8 +236710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241887,8 +236753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [140951] = 2, - ACTIONS(10330), 11, + [136835] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241900,8 +236766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241943,8 +236809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141009] = 2, - ACTIONS(10334), 11, + [136893] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -241956,8 +236822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -241999,8 +236865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141067] = 2, - ACTIONS(10338), 11, + [136951] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242012,8 +236878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242055,8 +236921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141125] = 2, - ACTIONS(10342), 11, + [137009] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242068,8 +236934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242111,8 +236977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141183] = 2, - ACTIONS(10346), 11, + [137067] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242124,8 +236990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242167,8 +237033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141241] = 2, - ACTIONS(10432), 11, + [137125] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242180,8 +237046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242223,8 +237089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141299] = 2, - ACTIONS(10354), 11, + [137183] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242236,8 +237102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242279,8 +237145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141357] = 2, - ACTIONS(10362), 11, + [137241] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242292,8 +237158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242335,8 +237201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141415] = 2, - ACTIONS(10366), 11, + [137299] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242348,8 +237214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242391,8 +237257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141473] = 2, - ACTIONS(10370), 11, + [137357] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242404,8 +237270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242447,8 +237313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141531] = 2, - ACTIONS(10374), 11, + [137415] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242460,8 +237326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242503,8 +237369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141589] = 2, - ACTIONS(10378), 11, + [137473] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242516,8 +237382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242559,8 +237425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141647] = 2, - ACTIONS(10382), 11, + [137531] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242572,8 +237438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242615,8 +237481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141705] = 2, - ACTIONS(10386), 11, + [137589] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242628,8 +237494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242671,8 +237537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141763] = 2, - ACTIONS(10390), 11, + [137647] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242684,8 +237550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242727,8 +237593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141821] = 2, - ACTIONS(10394), 11, + [137705] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242740,8 +237606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242783,8 +237649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141879] = 2, - ACTIONS(10398), 11, + [137763] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242796,8 +237662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242839,8 +237705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141937] = 2, - ACTIONS(10402), 11, + [137821] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242852,8 +237718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242895,8 +237761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [141995] = 2, - ACTIONS(10406), 11, + [137879] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242908,8 +237774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -242951,8 +237817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142053] = 2, - ACTIONS(10416), 11, + [137937] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -242964,8 +237830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243007,8 +237873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142111] = 2, - ACTIONS(10420), 11, + [137995] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243020,8 +237886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243063,8 +237929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142169] = 2, - ACTIONS(10424), 11, + [138053] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243076,8 +237942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243119,8 +237985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142227] = 2, - ACTIONS(10428), 11, + [138111] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243132,8 +237998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243175,8 +238041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142285] = 2, - ACTIONS(10304), 11, + [138169] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243188,17 +238054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243231,8 +238097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142343] = 2, - ACTIONS(10436), 11, + [138227] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243244,8 +238110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243287,8 +238153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142401] = 2, - ACTIONS(10440), 11, + [138285] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243300,17 +238166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243343,8 +238209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142459] = 2, - ACTIONS(10444), 11, + [138343] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243356,8 +238222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243399,8 +238265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142517] = 2, - ACTIONS(10448), 11, + [138401] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243412,8 +238278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243455,8 +238321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142575] = 2, - ACTIONS(10124), 11, + [138459] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243468,8 +238334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243511,8 +238377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142633] = 2, - ACTIONS(10452), 11, + [138517] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243524,8 +238390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243567,8 +238433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142691] = 2, - ACTIONS(10460), 11, + [138575] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243580,8 +238446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243623,8 +238489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142749] = 2, - ACTIONS(10472), 11, + [138633] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243636,8 +238502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243679,8 +238545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142807] = 2, - ACTIONS(10464), 11, + [138691] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243692,8 +238558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243735,8 +238601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142865] = 2, - ACTIONS(10468), 11, + [138749] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243748,8 +238614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243791,8 +238657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142923] = 2, - ACTIONS(10152), 11, + [138807] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243804,13 +238670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -243831,7 +238698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -243847,8 +238713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [142981] = 2, - ACTIONS(10300), 11, + [138865] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243860,17 +238726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243903,8 +238769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143039] = 2, - ACTIONS(10296), 11, + [138923] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243916,8 +238782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243926,7 +238792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243944,6 +238809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -243959,8 +238825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143097] = 2, - ACTIONS(10156), 11, + [138981] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -243972,8 +238838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -243982,6 +238848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -243999,7 +238866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -244015,8 +238881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143155] = 2, - ACTIONS(10160), 11, + [139039] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244028,8 +238894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244038,6 +238904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -244055,7 +238922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -244071,8 +238937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143213] = 2, - ACTIONS(10164), 11, + [139097] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244084,8 +238950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244127,8 +238993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143271] = 2, - ACTIONS(10120), 11, + [139155] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244140,8 +239006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244183,8 +239049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143329] = 2, - ACTIONS(10168), 11, + [139213] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244196,8 +239062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244239,8 +239105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143387] = 2, - ACTIONS(10172), 11, + [139271] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244252,8 +239118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244295,8 +239161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143445] = 2, - ACTIONS(10176), 11, + [139329] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244308,8 +239174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244351,8 +239217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143503] = 2, - ACTIONS(10188), 11, + [139387] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244364,14 +239230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -244392,6 +239257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -244407,8 +239273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143561] = 2, - ACTIONS(10184), 11, + [139445] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244420,13 +239286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -244447,7 +239314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -244463,8 +239329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143619] = 2, - ACTIONS(10188), 11, + [139503] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244476,8 +239342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244486,6 +239352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -244503,7 +239370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -244519,8 +239385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143677] = 2, - ACTIONS(10192), 11, + [139561] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244532,8 +239398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244575,8 +239441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143735] = 2, - ACTIONS(10196), 11, + [139619] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244588,8 +239454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244631,8 +239497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143793] = 2, - ACTIONS(10200), 11, + [139677] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244644,8 +239510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244687,8 +239553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143851] = 2, - ACTIONS(10204), 11, + [139735] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244700,8 +239566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244743,8 +239609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143909] = 2, - ACTIONS(10208), 11, + [139793] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244756,8 +239622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244799,8 +239665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [143967] = 2, - ACTIONS(10212), 11, + [139851] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244812,8 +239678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244855,8 +239721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144025] = 2, - ACTIONS(10216), 11, + [139909] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244868,8 +239734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244911,8 +239777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144083] = 2, - ACTIONS(10220), 11, + [139967] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244924,8 +239790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -244967,8 +239833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144141] = 2, - ACTIONS(10224), 11, + [140025] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -244980,8 +239846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245023,8 +239889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144199] = 2, - ACTIONS(10228), 11, + [140083] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245036,8 +239902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245079,8 +239945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144257] = 2, - ACTIONS(10232), 11, + [140141] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245092,8 +239958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245135,8 +240001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144315] = 2, - ACTIONS(10236), 11, + [140199] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245148,8 +240014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245191,8 +240057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144373] = 2, - ACTIONS(10240), 11, + [140257] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245204,8 +240070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245247,8 +240113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144431] = 2, - ACTIONS(10244), 11, + [140315] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245260,8 +240126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245303,8 +240169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144489] = 2, - ACTIONS(10292), 11, + [140373] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245316,8 +240182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245326,7 +240192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -245344,6 +240209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -245359,8 +240225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144547] = 2, - ACTIONS(10248), 11, + [140431] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245372,8 +240238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245382,6 +240248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -245399,7 +240266,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -245415,8 +240281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144605] = 2, - ACTIONS(10252), 11, + [140489] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245428,8 +240294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245471,8 +240337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144663] = 2, - ACTIONS(10256), 11, + [140547] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245484,8 +240350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245527,8 +240393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144721] = 2, - ACTIONS(10288), 11, + [140605] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245540,8 +240406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245583,8 +240449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144779] = 2, - ACTIONS(10260), 11, + [140663] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245596,8 +240462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245639,8 +240505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144837] = 2, - ACTIONS(10264), 11, + [140721] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245652,8 +240518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245695,8 +240561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144895] = 2, - ACTIONS(10268), 11, + [140779] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245708,8 +240574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245751,8 +240617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [144953] = 2, - ACTIONS(10350), 11, + [140837] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245764,8 +240630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245807,8 +240673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145011] = 2, - ACTIONS(10272), 11, + [140895] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245820,8 +240686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245863,8 +240729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145069] = 2, - ACTIONS(10276), 11, + [140953] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245876,8 +240742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245919,8 +240785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145127] = 2, - ACTIONS(10280), 11, + [141011] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245932,8 +240798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -245975,8 +240841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145185] = 2, - ACTIONS(10284), 11, + [141069] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -245988,8 +240854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246031,8 +240897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145243] = 2, - ACTIONS(10288), 11, + [141127] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246044,8 +240910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246087,8 +240953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145301] = 2, - ACTIONS(10292), 11, + [141185] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246100,8 +240966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246143,8 +241009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145359] = 2, - ACTIONS(10296), 11, + [141243] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246156,8 +241022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246199,8 +241065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145417] = 2, - ACTIONS(10300), 11, + [141301] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246212,8 +241078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246255,8 +241121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145475] = 2, - ACTIONS(10304), 11, + [141359] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246268,8 +241134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246311,8 +241177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145533] = 2, - ACTIONS(10308), 11, + [141417] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246324,8 +241190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246367,8 +241233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145591] = 2, - ACTIONS(10312), 11, + [141475] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246380,8 +241246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246423,8 +241289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145649] = 2, - ACTIONS(10316), 11, + [141533] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246436,8 +241302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246479,8 +241345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145707] = 2, - ACTIONS(10320), 11, + [141591] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246492,8 +241358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246535,8 +241401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145765] = 2, - ACTIONS(10324), 11, + [141649] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246548,8 +241414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246591,8 +241457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145823] = 2, - ACTIONS(10330), 11, + [141707] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246604,8 +241470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246647,8 +241513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145881] = 2, - ACTIONS(10334), 11, + [141765] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246660,8 +241526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246703,8 +241569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145939] = 2, - ACTIONS(10338), 11, + [141823] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246716,8 +241582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246759,8 +241625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [145997] = 2, - ACTIONS(10342), 11, + [141881] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246772,8 +241638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246815,8 +241681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146055] = 2, - ACTIONS(10346), 11, + [141939] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246828,8 +241694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246871,8 +241737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146113] = 2, - ACTIONS(10432), 11, + [141997] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246884,8 +241750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246927,8 +241793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146171] = 2, - ACTIONS(10354), 11, + [142055] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246940,8 +241806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -246983,8 +241849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146229] = 2, - ACTIONS(10362), 11, + [142113] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -246996,8 +241862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247039,8 +241905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146287] = 2, - ACTIONS(10366), 11, + [142171] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247052,8 +241918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247095,8 +241961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146345] = 2, - ACTIONS(10370), 11, + [142229] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247108,8 +241974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247151,8 +242017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146403] = 2, - ACTIONS(10374), 11, + [142287] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247164,8 +242030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247207,8 +242073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146461] = 2, - ACTIONS(10378), 11, + [142345] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247220,8 +242086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247263,8 +242129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146519] = 2, - ACTIONS(10382), 11, + [142403] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247276,8 +242142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247319,8 +242185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146577] = 2, - ACTIONS(10386), 11, + [142461] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247332,8 +242198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247375,8 +242241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146635] = 2, - ACTIONS(10390), 11, + [142519] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247388,8 +242254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247431,8 +242297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146693] = 2, - ACTIONS(10394), 11, + [142577] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247444,8 +242310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247487,8 +242353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146751] = 2, - ACTIONS(10398), 11, + [142635] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247500,8 +242366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247543,8 +242409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146809] = 2, - ACTIONS(10402), 11, + [142693] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247556,8 +242422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247599,8 +242465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146867] = 2, - ACTIONS(10406), 11, + [142751] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247612,8 +242478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247655,8 +242521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146925] = 2, - ACTIONS(10416), 11, + [142809] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247668,8 +242534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247711,8 +242577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [146983] = 2, - ACTIONS(10420), 11, + [142867] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247724,8 +242590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247767,8 +242633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147041] = 2, - ACTIONS(10424), 11, + [142925] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247780,8 +242646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247823,8 +242689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147099] = 2, - ACTIONS(10428), 11, + [142983] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247836,8 +242702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247879,8 +242745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147157] = 2, - ACTIONS(10248), 11, + [143041] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247892,8 +242758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247935,8 +242801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147215] = 2, - ACTIONS(10436), 11, + [143099] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -247948,8 +242814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -247991,8 +242857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147273] = 2, - ACTIONS(10440), 11, + [143157] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248004,8 +242870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248047,8 +242913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147331] = 2, - ACTIONS(10444), 11, + [143215] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248060,8 +242926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248103,8 +242969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147389] = 2, - ACTIONS(10448), 11, + [143273] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248116,8 +242982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248159,8 +243025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147447] = 2, - ACTIONS(10124), 11, + [143331] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248172,8 +243038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248215,8 +243081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147505] = 2, - ACTIONS(10452), 11, + [143389] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248228,8 +243094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248271,8 +243137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147563] = 2, - ACTIONS(10460), 11, + [143447] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248284,8 +243150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248327,8 +243193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147621] = 2, - ACTIONS(10472), 11, + [143505] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248340,8 +243206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248383,8 +243249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147679] = 2, - ACTIONS(10464), 11, + [143563] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248396,8 +243262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248439,8 +243305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147737] = 2, - ACTIONS(10468), 11, + [143621] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248452,8 +243318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248495,8 +243361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147795] = 2, - ACTIONS(10152), 12, + [143679] = 2, + ACTIONS(10770), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248509,8 +243375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248551,8 +243417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147853] = 2, - ACTIONS(10280), 11, + [143737] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248564,8 +243430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248607,8 +243473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147911] = 2, - ACTIONS(10276), 11, + [143795] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248620,8 +243486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248663,8 +243529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [147969] = 2, - ACTIONS(10156), 12, + [143853] = 2, + ACTIONS(10766), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248677,8 +243543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248719,8 +243585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148027] = 2, - ACTIONS(10160), 12, + [143911] = 2, + ACTIONS(10762), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248733,8 +243599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248775,8 +243641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148085] = 2, - ACTIONS(10164), 12, + [143969] = 2, + ACTIONS(10678), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248789,8 +243655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248831,8 +243697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148143] = 2, - ACTIONS(10120), 12, + [144027] = 2, + ACTIONS(10774), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248845,8 +243711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248887,8 +243753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148201] = 2, - ACTIONS(10168), 12, + [144085] = 2, + ACTIONS(10674), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248901,8 +243767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248943,8 +243809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148259] = 2, - ACTIONS(10172), 12, + [144143] = 2, + ACTIONS(10746), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -248957,8 +243823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -248999,8 +243865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148317] = 2, - ACTIONS(10176), 12, + [144201] = 2, + ACTIONS(10682), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249013,8 +243879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249055,8 +243921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148375] = 2, - ACTIONS(10272), 11, + [144259] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249068,8 +243934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249111,8 +243977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148433] = 2, - ACTIONS(10184), 12, + [144317] = 2, + ACTIONS(10686), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249125,8 +243991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249167,8 +244033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148491] = 2, - ACTIONS(10188), 12, + [144375] = 2, + ACTIONS(10698), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249181,8 +244047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249223,8 +244089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148549] = 2, - ACTIONS(10192), 12, + [144433] = 2, + ACTIONS(10702), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249237,8 +244103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249279,8 +244145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148607] = 2, - ACTIONS(10196), 12, + [144491] = 2, + ACTIONS(10706), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249293,8 +244159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249335,8 +244201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148665] = 2, - ACTIONS(10200), 12, + [144549] = 2, + ACTIONS(10718), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249349,8 +244215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249391,8 +244257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148723] = 2, - ACTIONS(10204), 12, + [144607] = 2, + ACTIONS(10726), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249405,8 +244271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249447,8 +244313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148781] = 2, - ACTIONS(10208), 12, + [144665] = 2, + ACTIONS(10750), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249461,8 +244327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249503,8 +244369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148839] = 2, - ACTIONS(10212), 12, + [144723] = 2, + ACTIONS(10694), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249517,8 +244383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249559,8 +244425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148897] = 2, - ACTIONS(10216), 12, + [144781] = 2, + ACTIONS(10710), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249573,8 +244439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249615,8 +244481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [148955] = 2, - ACTIONS(10220), 12, + [144839] = 2, + ACTIONS(10714), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249629,8 +244495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249671,8 +244537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149013] = 2, - ACTIONS(10224), 12, + [144897] = 2, + ACTIONS(10722), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249685,8 +244551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249727,8 +244593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149071] = 2, - ACTIONS(10228), 12, + [144955] = 2, + ACTIONS(10730), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249741,8 +244607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249783,8 +244649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149129] = 2, - ACTIONS(10232), 12, + [145013] = 2, + ACTIONS(10734), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249797,8 +244663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249839,8 +244705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149187] = 2, - ACTIONS(10236), 12, + [145071] = 2, + ACTIONS(10738), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249853,8 +244719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249895,8 +244761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149245] = 2, - ACTIONS(10240), 12, + [145129] = 2, + ACTIONS(10742), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249909,8 +244775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249951,8 +244817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149303] = 2, - ACTIONS(10244), 12, + [145187] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -249961,12 +244827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -249975,6 +244840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -249992,7 +244858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -250007,8 +244873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149361] = 2, - ACTIONS(10350), 11, + [145245] = 2, + ACTIONS(10754), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250017,11 +244883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250030,7 +244897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -250048,7 +244914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -250063,8 +244929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149419] = 2, - ACTIONS(10248), 12, + [145303] = 2, + ACTIONS(10758), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250077,8 +244943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250119,8 +244985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149477] = 2, - ACTIONS(10252), 12, + [145361] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250129,17 +244995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -250160,7 +245026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -250175,8 +245041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149535] = 2, - ACTIONS(10256), 12, + [145419] = 2, + ACTIONS(10778), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250189,8 +245055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250231,8 +245097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149593] = 2, - ACTIONS(10248), 11, + [145477] = 2, + ACTIONS(10782), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250241,17 +245107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -250272,7 +245138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -250287,8 +245153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149651] = 2, - ACTIONS(10260), 12, + [145535] = 2, + ACTIONS(10786), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250301,8 +245167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250343,8 +245209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149709] = 2, - ACTIONS(10264), 12, + [145593] = 2, + ACTIONS(10790), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250357,8 +245223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250399,8 +245265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149767] = 2, - ACTIONS(10268), 12, + [145651] = 2, + ACTIONS(10794), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250413,8 +245279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250455,8 +245321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149825] = 2, - ACTIONS(10350), 12, + [145709] = 2, + ACTIONS(10798), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250469,8 +245335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250511,8 +245377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149883] = 2, - ACTIONS(10272), 12, + [145767] = 2, + ACTIONS(10802), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250525,8 +245391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250567,8 +245433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149941] = 2, - ACTIONS(10276), 12, + [145825] = 2, + ACTIONS(10806), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250581,8 +245447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250623,8 +245489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [149999] = 2, - ACTIONS(10280), 12, + [145883] = 2, + ACTIONS(10810), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250637,8 +245503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250679,8 +245545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150057] = 2, - ACTIONS(10284), 12, + [145941] = 2, + ACTIONS(10814), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250693,8 +245559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250735,8 +245601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150115] = 2, - ACTIONS(10288), 12, + [145999] = 2, + ACTIONS(10818), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250749,8 +245615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250791,8 +245657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150173] = 2, - ACTIONS(10292), 12, + [146057] = 2, + ACTIONS(10822), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250805,8 +245671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250847,8 +245713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150231] = 2, - ACTIONS(10296), 12, + [146115] = 2, + ACTIONS(10826), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250861,8 +245727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250903,8 +245769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150289] = 2, - ACTIONS(10300), 12, + [146173] = 2, + ACTIONS(10830), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250917,8 +245783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -250959,8 +245825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150347] = 2, - ACTIONS(10304), 12, + [146231] = 2, + ACTIONS(10834), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -250973,8 +245839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251015,8 +245881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150405] = 2, - ACTIONS(10308), 12, + [146289] = 2, + ACTIONS(10838), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251029,8 +245895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251071,8 +245937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150463] = 2, - ACTIONS(10312), 12, + [146347] = 2, + ACTIONS(10844), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251085,8 +245951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251127,8 +245993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150521] = 2, - ACTIONS(10316), 12, + [146405] = 2, + ACTIONS(10848), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251141,8 +246007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251183,8 +246049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150579] = 2, - ACTIONS(10320), 12, + [146463] = 2, + ACTIONS(10852), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251197,8 +246063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251239,8 +246105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150637] = 2, - ACTIONS(10324), 12, + [146521] = 2, + ACTIONS(10856), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251253,8 +246119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251295,8 +246161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150695] = 2, - ACTIONS(10330), 12, + [146579] = 2, + ACTIONS(10860), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251309,8 +246175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251351,8 +246217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150753] = 2, - ACTIONS(10334), 12, + [146637] = 2, + ACTIONS(11008), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251365,8 +246231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251407,8 +246273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150811] = 2, - ACTIONS(10338), 12, + [146695] = 2, + ACTIONS(10864), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251421,8 +246287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251463,8 +246329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150869] = 2, - ACTIONS(10342), 12, + [146753] = 2, + ACTIONS(10868), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251477,8 +246343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251519,8 +246385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150927] = 2, - ACTIONS(10346), 12, + [146811] = 2, + ACTIONS(10872), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251533,8 +246399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251575,8 +246441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [150985] = 2, - ACTIONS(10432), 12, + [146869] = 2, + ACTIONS(10876), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251589,8 +246455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251631,8 +246497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151043] = 2, - ACTIONS(10354), 12, + [146927] = 2, + ACTIONS(10880), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251645,8 +246511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251687,8 +246553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151101] = 2, - ACTIONS(10362), 12, + [146985] = 2, + ACTIONS(10884), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251701,8 +246567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251743,8 +246609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151159] = 2, - ACTIONS(10366), 12, + [147043] = 2, + ACTIONS(10888), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251757,8 +246623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251799,8 +246665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151217] = 2, - ACTIONS(10370), 12, + [147101] = 2, + ACTIONS(10892), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251813,8 +246679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251855,8 +246721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151275] = 2, - ACTIONS(10374), 12, + [147159] = 2, + ACTIONS(10896), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251869,8 +246735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251911,8 +246777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151333] = 2, - ACTIONS(10378), 12, + [147217] = 2, + ACTIONS(10900), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251925,8 +246791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -251967,8 +246833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151391] = 2, - ACTIONS(10382), 12, + [147275] = 2, + ACTIONS(10904), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -251981,8 +246847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252023,8 +246889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151449] = 2, - ACTIONS(10386), 12, + [147333] = 2, + ACTIONS(10908), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252037,8 +246903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252079,8 +246945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151507] = 2, - ACTIONS(10390), 12, + [147391] = 2, + ACTIONS(10912), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252093,8 +246959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252135,8 +247001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151565] = 2, - ACTIONS(10394), 12, + [147449] = 2, + ACTIONS(10916), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252149,8 +247015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252191,8 +247057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151623] = 2, - ACTIONS(10398), 12, + [147507] = 2, + ACTIONS(10924), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252205,8 +247071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252247,8 +247113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151681] = 2, - ACTIONS(10402), 12, + [147565] = 2, + ACTIONS(10928), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252261,8 +247127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252303,8 +247169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151739] = 2, - ACTIONS(10406), 12, + [147623] = 2, + ACTIONS(10934), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252317,8 +247183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252359,8 +247225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151797] = 2, - ACTIONS(10416), 12, + [147681] = 2, + ACTIONS(10938), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252373,8 +247239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252415,8 +247281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151855] = 2, - ACTIONS(10420), 12, + [147739] = 2, + ACTIONS(10942), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252429,8 +247295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252471,8 +247337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151913] = 2, - ACTIONS(10424), 12, + [147797] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252481,17 +247347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -252512,7 +247378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -252527,8 +247393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [151971] = 2, - ACTIONS(10428), 12, + [147855] = 2, + ACTIONS(10946), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252541,8 +247407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252583,8 +247449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152029] = 2, - ACTIONS(10378), 11, + [147913] = 2, + ACTIONS(10950), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252593,17 +247459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -252624,7 +247490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -252639,8 +247505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152087] = 2, - ACTIONS(10436), 12, + [147971] = 2, + ACTIONS(10958), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252653,8 +247519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252695,8 +247561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152145] = 2, - ACTIONS(10440), 12, + [148029] = 2, + ACTIONS(10962), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252709,8 +247575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252751,8 +247617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152203] = 2, - ACTIONS(10444), 12, + [148087] = 2, + ACTIONS(10966), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252765,8 +247631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252807,8 +247673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152261] = 2, - ACTIONS(10448), 12, + [148145] = 2, + ACTIONS(10982), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252821,8 +247687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252863,8 +247729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152319] = 2, - ACTIONS(10124), 12, + [148203] = 2, + ACTIONS(10970), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252877,8 +247743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252919,8 +247785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152377] = 2, - ACTIONS(10452), 12, + [148261] = 2, + ACTIONS(10974), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252933,8 +247799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -252975,8 +247841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152435] = 2, - ACTIONS(10460), 12, + [148319] = 2, + ACTIONS(10978), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -252989,8 +247855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253031,8 +247897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152493] = 2, - ACTIONS(10472), 12, + [148377] = 2, + ACTIONS(10986), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253045,8 +247911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253087,8 +247953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152551] = 2, - ACTIONS(10464), 12, + [148435] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253097,12 +247963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253111,6 +247976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253128,7 +247994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -253143,8 +248009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152609] = 2, - ACTIONS(10468), 12, + [148493] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253153,12 +248019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253167,6 +248032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253184,7 +248050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -253199,8 +248065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152667] = 2, - ACTIONS(10374), 11, + [148551] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253212,8 +248078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253255,8 +248121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152725] = 2, - ACTIONS(10370), 11, + [148609] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253268,8 +248134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253311,8 +248177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152783] = 2, - ACTIONS(10428), 11, + [148667] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253324,17 +248190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253367,8 +248233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152841] = 2, - ACTIONS(10476), 11, + [148725] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253380,8 +248246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253390,9 +248256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -253423,8 +248289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152899] = 2, - ACTIONS(10268), 11, + [148783] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253436,17 +248302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253479,8 +248345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [152957] = 2, - ACTIONS(10264), 11, + [148841] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253492,17 +248358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253535,8 +248401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153015] = 2, - ACTIONS(10366), 11, + [148899] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253548,17 +248414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253591,8 +248457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153073] = 2, - ACTIONS(10362), 11, + [148957] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253604,8 +248470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253647,8 +248513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153131] = 2, - ACTIONS(10260), 11, + [149015] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253660,17 +248526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -253703,8 +248569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153189] = 2, - ACTIONS(10256), 11, + [149073] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253716,8 +248582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253759,8 +248625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153247] = 2, - ACTIONS(10354), 11, + [149131] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253772,14 +248638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -253815,8 +248681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153305] = 2, - ACTIONS(10436), 11, + [149189] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253828,8 +248694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253871,8 +248737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153363] = 2, - ACTIONS(10252), 11, + [149247] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253884,8 +248750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253927,8 +248793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153421] = 2, - ACTIONS(10156), 11, + [149305] = 2, + ACTIONS(10954), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253937,12 +248803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -253968,7 +248834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -253983,8 +248849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153479] = 2, - ACTIONS(10160), 11, + [149363] = 2, + ACTIONS(11002), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -253993,12 +248859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 41, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254024,7 +248890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -254039,8 +248905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153537] = 2, - ACTIONS(10172), 11, + [149421] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254052,8 +248918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254095,8 +248961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153595] = 2, - ACTIONS(10456), 12, + [149479] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254105,17 +248971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -254136,7 +249002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -254151,8 +249017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153653] = 2, - ACTIONS(10476), 12, + [149537] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254161,17 +249027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATunless, anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 41, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -254192,7 +249058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -254207,8 +249073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153711] = 2, - ACTIONS(10196), 11, + [149595] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254220,17 +249086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254263,8 +249129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153769] = 2, - ACTIONS(10456), 11, + [149653] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254276,14 +249142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -254304,6 +249169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -254319,8 +249185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153827] = 2, - ACTIONS(10476), 11, + [149711] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254332,14 +249198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - aux_sym_section_token1, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -254360,6 +249225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -254375,8 +249241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153885] = 2, - ACTIONS(10244), 11, + [149769] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254388,8 +249254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254431,8 +249297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [153943] = 2, - ACTIONS(10456), 11, + [149827] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254444,8 +249310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254471,7 +249338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -254487,8 +249353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154001] = 2, - ACTIONS(10476), 11, + [149885] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254500,8 +249366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254510,6 +249376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254527,7 +249394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfeature, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -254543,8 +249409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154059] = 2, - ACTIONS(10240), 11, + [149943] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254556,8 +249422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254599,8 +249465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154117] = 2, - ACTIONS(10236), 11, + [150001] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254612,8 +249478,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254622,7 +249489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254655,8 +249521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154175] = 2, - ACTIONS(10164), 11, + [150059] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254668,9 +249534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, + ACTIONS(10772), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254711,8 +249577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154233] = 2, - ACTIONS(10232), 11, + [150117] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254724,17 +249590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254767,8 +249633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154291] = 2, - ACTIONS(10228), 11, + [150175] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254780,17 +249646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254823,8 +249689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154349] = 2, - ACTIONS(10432), 11, + [150233] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254836,14 +249702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -254879,8 +249745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154407] = 2, - ACTIONS(10120), 11, + [150291] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254892,14 +249758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -254935,8 +249801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154465] = 2, - ACTIONS(10168), 11, + [150349] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -254948,9 +249814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -254959,6 +249824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -254991,8 +249857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154523] = 2, - ACTIONS(10440), 11, + [150407] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255004,8 +249870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -255047,8 +249913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154581] = 2, - ACTIONS(10444), 11, + [150465] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255060,14 +249926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -255103,8 +249969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154639] = 2, - ACTIONS(10176), 11, + [150523] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255116,14 +249982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -255159,8 +250025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154697] = 2, - ACTIONS(10224), 11, + [150581] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255172,17 +250038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255215,8 +250081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154755] = 2, - ACTIONS(10220), 11, + [150639] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255228,17 +250094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255271,8 +250137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154813] = 2, - ACTIONS(10448), 11, + [150697] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255284,16 +250150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -255327,8 +250193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154871] = 2, - ACTIONS(10252), 11, + [150755] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255340,16 +250206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -255383,8 +250249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154929] = 2, - ACTIONS(10346), 11, + [150813] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255396,16 +250262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -255439,8 +250305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [154987] = 2, - ACTIONS(10124), 11, + [150871] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255452,17 +250318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255495,8 +250361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155045] = 2, - ACTIONS(10342), 11, + [150929] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255508,14 +250374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -255551,8 +250417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155103] = 2, - ACTIONS(10452), 11, + [150987] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255564,16 +250430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -255607,8 +250473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155161] = 2, - ACTIONS(10184), 11, + [151045] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255620,9 +250486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -255631,6 +250496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255663,8 +250529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155219] = 2, - ACTIONS(10338), 11, + [151103] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255676,17 +250542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -255719,8 +250585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155277] = 2, - ACTIONS(10188), 11, + [151161] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255732,9 +250598,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, + ACTIONS(10696), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -255775,8 +250641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155335] = 2, - ACTIONS(10460), 11, + [151219] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255788,8 +250654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -255831,8 +250697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155393] = 2, - ACTIONS(10192), 11, + [151277] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255844,9 +250710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -255854,6 +250719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -255887,8 +250753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155451] = 2, - ACTIONS(10288), 11, + [151335] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255900,14 +250766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -255943,8 +250809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155509] = 2, - ACTIONS(10200), 11, + [151393] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -255956,14 +250822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -255999,8 +250865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155567] = 2, - ACTIONS(10204), 11, + [151451] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256012,16 +250878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -256055,8 +250921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155625] = 2, - ACTIONS(10196), 11, + [151509] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256068,9 +250934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, + ACTIONS(10716), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256111,8 +250977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155683] = 2, - ACTIONS(10172), 11, + [151567] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256124,9 +250990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, + ACTIONS(10680), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256167,8 +251033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155741] = 2, - ACTIONS(10472), 11, + [151625] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256180,16 +251046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -256223,8 +251089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155799] = 2, - ACTIONS(10204), 11, + [151683] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256236,14 +251102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -256279,8 +251145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155857] = 2, - ACTIONS(10208), 11, + [151741] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256292,9 +251158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, + ACTIONS(10748), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256335,8 +251201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155915] = 2, - ACTIONS(10448), 11, + [151799] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256348,8 +251214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256357,8 +251223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -256391,8 +251257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [155973] = 2, - ACTIONS(10330), 11, + [151857] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256404,16 +251270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -256447,8 +251313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156031] = 2, - ACTIONS(10212), 11, + [151915] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256460,9 +251326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, + ACTIONS(10692), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256503,8 +251369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156089] = 2, - ACTIONS(10324), 11, + [151973] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256516,16 +251382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -256559,8 +251425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156147] = 2, - ACTIONS(10216), 11, + [152031] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256572,9 +251438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256582,6 +251447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -256615,8 +251481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156205] = 2, - ACTIONS(10320), 11, + [152089] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256628,14 +251494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -256671,8 +251537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156263] = 2, - ACTIONS(10216), 11, + [152147] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256684,8 +251550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256693,8 +251559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -256727,8 +251593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156321] = 2, - ACTIONS(10200), 11, + [152205] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256740,14 +251606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -256783,8 +251649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156379] = 2, - ACTIONS(10316), 11, + [152263] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256796,17 +251662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -256839,8 +251705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156437] = 2, - ACTIONS(10312), 11, + [152321] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256852,8 +251718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -256895,8 +251761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156495] = 2, - ACTIONS(10256), 11, + [152379] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256908,16 +251774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -256951,8 +251817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156553] = 2, - ACTIONS(10240), 11, + [152437] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -256964,14 +251830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -257007,8 +251873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156611] = 2, - ACTIONS(10308), 11, + [152495] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257020,16 +251886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257063,8 +251929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156669] = 2, - ACTIONS(10304), 11, + [152553] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257076,8 +251942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -257119,8 +251985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156727] = 2, - ACTIONS(10220), 11, + [152611] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257132,9 +251998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -257145,6 +252010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -257175,8 +252041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156785] = 2, - ACTIONS(10300), 11, + [152669] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257188,16 +252054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257231,8 +252097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156843] = 2, - ACTIONS(10296), 11, + [152727] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257244,14 +252110,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -257287,8 +252153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156901] = 2, - ACTIONS(10464), 11, + [152785] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257300,16 +252166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257343,8 +252209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [156959] = 2, - ACTIONS(10292), 11, + [152843] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257356,16 +252222,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257399,8 +252265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157017] = 2, - ACTIONS(10224), 11, + [152901] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257412,9 +252278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, + ACTIONS(10720), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -257455,8 +252321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157075] = 2, - ACTIONS(10468), 11, + [152959] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257468,16 +252334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257511,8 +252377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157133] = 2, - ACTIONS(10464), 11, + [153017] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257524,8 +252390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -257567,8 +252433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157191] = 2, - ACTIONS(10228), 11, + [153075] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257580,14 +252446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -257623,8 +252489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157249] = 2, - ACTIONS(10472), 11, + [153133] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257636,16 +252502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257679,8 +252545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157307] = 2, - ACTIONS(10232), 11, + [153191] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257692,14 +252558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -257735,8 +252601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157365] = 2, - ACTIONS(10460), 11, + [153249] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257748,8 +252614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -257757,7 +252624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257791,8 +252657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157423] = 2, - ACTIONS(10452), 11, + [153307] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257804,16 +252670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257847,8 +252713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157481] = 2, - ACTIONS(10468), 11, + [153365] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257860,16 +252726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -257903,8 +252769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157539] = 2, - ACTIONS(10152), 11, + [153423] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257916,8 +252782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -257925,8 +252791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -257959,8 +252825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157597] = 2, - ACTIONS(10124), 11, + [153481] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -257972,16 +252838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258015,8 +252881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157655] = 2, - ACTIONS(10236), 11, + [153539] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258028,9 +252894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, + ACTIONS(10732), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258071,8 +252937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157713] = 2, - ACTIONS(10338), 11, + [153597] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258084,8 +252950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258093,8 +252959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258127,8 +252993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157771] = 2, - ACTIONS(10240), 11, + [153655] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258140,14 +253006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -258183,8 +253049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157829] = 2, - ACTIONS(10244), 11, + [153713] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258196,14 +253062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -258239,8 +253105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157887] = 2, - ACTIONS(10476), 11, + [153771] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258252,8 +253118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258262,8 +253128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -258295,8 +253161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [157945] = 2, - ACTIONS(10244), 11, + [153829] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258308,14 +253174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -258351,8 +253217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158003] = 2, - ACTIONS(10156), 11, + [153887] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258364,8 +253230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258373,8 +253239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258407,8 +253273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158061] = 2, - ACTIONS(10212), 11, + [153945] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258420,8 +253286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258429,8 +253295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258463,8 +253329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158119] = 2, - ACTIONS(10444), 11, + [154003] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258476,8 +253342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258485,8 +253351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258519,8 +253385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158177] = 2, - ACTIONS(10440), 11, + [154061] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258532,16 +253398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258575,8 +253441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158235] = 2, - ACTIONS(10208), 11, + [154119] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258588,14 +253454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -258631,8 +253497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158293] = 2, - ACTIONS(10436), 11, + [154177] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258644,8 +253510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258653,8 +253519,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258687,8 +253553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158351] = 2, - ACTIONS(10208), 11, + [154235] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258700,8 +253566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258709,8 +253575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258743,8 +253609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158409] = 2, - ACTIONS(10476), 11, + [154293] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258756,16 +253622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -258799,8 +253665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158467] = 2, - ACTIONS(10204), 11, + [154351] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258812,8 +253678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258821,8 +253687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258855,8 +253721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158525] = 2, - ACTIONS(10200), 11, + [154409] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258868,8 +253734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258877,8 +253743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -258911,8 +253777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158583] = 2, - ACTIONS(10428), 11, + [154467] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258924,8 +253790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -258967,8 +253833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158641] = 2, - ACTIONS(10196), 11, + [154525] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -258980,8 +253846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259023,8 +253889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158699] = 2, - ACTIONS(10424), 11, + [154583] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259036,8 +253902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259079,8 +253945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158757] = 2, - ACTIONS(10192), 11, + [154641] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259092,8 +253958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259135,8 +254001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158815] = 2, - ACTIONS(10160), 11, + [154699] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259148,8 +254014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259157,8 +254023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -259191,8 +254057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158873] = 2, - ACTIONS(10420), 11, + [154757] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259204,8 +254070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259247,8 +254113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158931] = 2, - ACTIONS(10416), 11, + [154815] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259260,8 +254126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259303,8 +254169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [158989] = 2, - ACTIONS(10164), 11, + [154873] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259316,8 +254182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259325,7 +254191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259359,8 +254225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159047] = 2, - ACTIONS(10248), 11, + [154931] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259372,14 +254238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -259415,8 +254281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159105] = 2, - ACTIONS(10456), 11, + [154989] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259428,8 +254294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259437,10 +254303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -259471,8 +254337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159163] = 2, - ACTIONS(10256), 11, + [155047] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259484,9 +254350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259494,6 +254359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259527,8 +254393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159221] = 2, - ACTIONS(10188), 11, + [155105] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259540,8 +254406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259549,8 +254415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -259583,8 +254449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159279] = 2, - ACTIONS(10120), 11, + [155163] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259596,8 +254462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259605,7 +254471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259639,8 +254505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159337] = 2, - ACTIONS(10456), 11, + [155221] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259652,9 +254518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259662,6 +254527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259695,8 +254561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159395] = 2, - ACTIONS(10406), 11, + [155279] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259708,8 +254574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259717,7 +254584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259751,8 +254617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159453] = 2, - ACTIONS(10168), 11, + [155337] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259764,16 +254630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259807,8 +254673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159511] = 2, - ACTIONS(10172), 11, + [155395] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259820,8 +254686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259829,8 +254695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -259863,8 +254729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159569] = 2, - ACTIONS(10424), 11, + [155453] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259876,8 +254742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259919,8 +254785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159627] = 2, - ACTIONS(10260), 11, + [155511] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259932,9 +254798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259942,6 +254807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -259975,8 +254841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159685] = 2, - ACTIONS(10264), 11, + [155569] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -259988,9 +254854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -259998,6 +254863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260031,8 +254897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159743] = 2, - ACTIONS(10402), 11, + [155627] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260044,8 +254910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260087,8 +254953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159801] = 2, - ACTIONS(10398), 11, + [155685] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260100,8 +254966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260143,8 +255009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159859] = 2, - ACTIONS(10394), 11, + [155743] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260156,8 +255022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260165,7 +255032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260199,8 +255065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159917] = 2, - ACTIONS(10390), 11, + [155801] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260212,8 +255078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260221,7 +255088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260255,8 +255121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [159975] = 2, - ACTIONS(10184), 11, + [155859] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260268,17 +255134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -260311,8 +255177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160033] = 2, - ACTIONS(10386), 11, + [155917] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260324,8 +255190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260333,7 +255200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260367,8 +255233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160091] = 2, - ACTIONS(10382), 11, + [155975] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260380,8 +255246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260389,7 +255256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260423,8 +255289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160149] = 2, - ACTIONS(10378), 11, + [156033] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260436,8 +255302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260445,7 +255311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260479,8 +255345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160207] = 2, - ACTIONS(10374), 11, + [156091] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260492,8 +255358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260535,8 +255401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160265] = 2, - ACTIONS(10370), 11, + [156149] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260548,8 +255414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260557,8 +255423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -260591,8 +255457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160323] = 2, - ACTIONS(10366), 11, + [156207] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260604,8 +255470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260613,7 +255479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260647,8 +255513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160381] = 2, - ACTIONS(10268), 11, + [156265] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260660,9 +255526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, + ACTIONS(10784), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260703,8 +255569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160439] = 2, - ACTIONS(10350), 11, + [156323] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260716,9 +255582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260726,6 +255591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260759,8 +255625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160497] = 2, - ACTIONS(10272), 11, + [156381] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260772,9 +255638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260782,6 +255647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260815,8 +255681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160555] = 2, - ACTIONS(10276), 11, + [156439] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260828,9 +255694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260838,6 +255703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260871,8 +255737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160613] = 2, - ACTIONS(10280), 11, + [156497] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260884,9 +255750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260894,6 +255759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260927,8 +255793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160671] = 2, - ACTIONS(10284), 11, + [156555] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260940,9 +255806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -260950,6 +255815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -260983,8 +255849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160729] = 2, - ACTIONS(10176), 11, + [156613] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -260996,8 +255862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261005,8 +255871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261039,8 +255905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160787] = 2, - ACTIONS(10288), 11, + [156671] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261052,9 +255918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, + ACTIONS(10788), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261095,8 +255961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160845] = 2, - ACTIONS(10292), 11, + [156729] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261108,9 +255974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, + ACTIONS(10792), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261151,8 +256017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160903] = 2, - ACTIONS(10296), 11, + [156787] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261164,9 +256030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, + ACTIONS(10796), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261207,8 +256073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [160961] = 2, - ACTIONS(10300), 11, + [156845] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261220,9 +256086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261230,6 +256095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261263,8 +256129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161019] = 2, - ACTIONS(10362), 11, + [156903] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261276,8 +256142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261285,8 +256151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -261319,8 +256185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161077] = 2, - ACTIONS(10354), 11, + [156961] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261332,8 +256198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261341,7 +256207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261375,8 +256241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161135] = 2, - ACTIONS(10432), 11, + [157019] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261388,8 +256254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261431,8 +256297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161193] = 2, - ACTIONS(10184), 11, + [157077] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261444,8 +256310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261453,7 +256319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261487,8 +256353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161251] = 2, - ACTIONS(10346), 11, + [157135] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261500,8 +256366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261509,7 +256376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261543,8 +256409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161309] = 2, - ACTIONS(10342), 11, + [157193] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261556,8 +256422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261565,7 +256432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261599,8 +256465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161367] = 2, - ACTIONS(10304), 11, + [157251] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261612,9 +256478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261622,6 +256487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261655,8 +256521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161425] = 2, - ACTIONS(10252), 11, + [157309] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261668,9 +256534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261678,6 +256543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261711,8 +256577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161483] = 2, - ACTIONS(10308), 11, + [157367] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261724,9 +256590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261734,6 +256599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261767,8 +256633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161541] = 2, - ACTIONS(10188), 11, + [157425] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261780,8 +256646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261789,7 +256655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261823,8 +256689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161599] = 2, - ACTIONS(10284), 11, + [157483] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261836,16 +256702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261879,8 +256745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161657] = 2, - ACTIONS(10334), 11, + [157541] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261892,8 +256758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261901,7 +256768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261935,8 +256801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161715] = 2, - ACTIONS(10330), 11, + [157599] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -261948,8 +256814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -261957,7 +256824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -261991,8 +256857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161773] = 2, - ACTIONS(10324), 11, + [157657] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262004,8 +256870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262013,7 +256880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262047,8 +256913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161831] = 2, - ACTIONS(10312), 11, + [157715] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262060,9 +256926,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, + ACTIONS(10820), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262103,8 +256969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161889] = 2, - ACTIONS(10320), 11, + [157773] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262116,8 +256982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262125,9 +256991,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -262159,8 +257025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [161947] = 2, - ACTIONS(10316), 11, + [157831] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262172,8 +257038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262215,8 +257081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162005] = 2, - ACTIONS(10312), 11, + [157889] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262228,8 +257094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262237,8 +257103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262271,8 +257137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162063] = 2, - ACTIONS(10192), 11, + [157947] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262284,8 +257150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262293,7 +257159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262327,8 +257193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162121] = 2, - ACTIONS(10316), 11, + [158005] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262340,9 +257206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262351,6 +257216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262383,8 +257249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162179] = 2, - ACTIONS(10320), 11, + [158063] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262396,9 +257262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, + ACTIONS(10824), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262439,8 +257305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162237] = 2, - ACTIONS(10324), 11, + [158121] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262452,9 +257318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262463,6 +257328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262495,8 +257361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162295] = 2, - ACTIONS(10330), 11, + [158179] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262508,9 +257374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262518,6 +257383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262551,8 +257417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162353] = 2, - ACTIONS(10416), 11, + [158237] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262564,8 +257430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262573,8 +257439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262607,8 +257473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162411] = 2, - ACTIONS(10334), 11, + [158295] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262620,9 +257486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262631,6 +257496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262663,8 +257529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162469] = 2, - ACTIONS(10168), 11, + [158353] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262676,8 +257542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262719,8 +257585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162527] = 2, - ACTIONS(10338), 11, + [158411] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262732,14 +257598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -262775,8 +257641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162585] = 2, - ACTIONS(10120), 11, + [158469] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262788,8 +257654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262798,9 +257664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -262831,8 +257697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162643] = 2, - ACTIONS(10196), 11, + [158527] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262844,8 +257710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262853,7 +257720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262887,8 +257753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162701] = 2, - ACTIONS(10164), 11, + [158585] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262900,8 +257766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262909,8 +257775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -262943,8 +257809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162759] = 2, - ACTIONS(10342), 11, + [158643] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -262956,9 +257822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -262966,6 +257831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -262999,8 +257865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162817] = 2, - ACTIONS(10160), 11, + [158701] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263012,8 +257878,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263022,7 +257889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263055,8 +257921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162875] = 2, - ACTIONS(10156), 11, + [158759] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263068,8 +257934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263077,8 +257943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263111,8 +257977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162933] = 2, - ACTIONS(10212), 11, + [158817] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263124,17 +257990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263167,8 +258033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [162991] = 2, - ACTIONS(10308), 11, + [158875] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263180,8 +258046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263189,8 +258055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263223,8 +258089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163049] = 2, - ACTIONS(10152), 11, + [158933] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263236,8 +258102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263245,8 +258111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263279,8 +258145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163107] = 2, - ACTIONS(10456), 11, + [158991] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263292,8 +258158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263301,7 +258167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263335,8 +258201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163165] = 2, - ACTIONS(10200), 11, + [159049] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263348,8 +258214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263357,7 +258223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263391,8 +258257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163223] = 2, - ACTIONS(10204), 11, + [159107] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263404,8 +258270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263447,8 +258313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163281] = 2, - ACTIONS(10208), 11, + [159165] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263460,8 +258326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263469,7 +258335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263503,8 +258369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163339] = 2, - ACTIONS(10346), 11, + [159223] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263516,9 +258382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263526,6 +258391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263559,8 +258425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163397] = 2, - ACTIONS(10432), 11, + [159281] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263572,9 +258438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263582,6 +258447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263615,8 +258481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163455] = 2, - ACTIONS(10192), 11, + [159339] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263628,16 +258494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263671,8 +258537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163513] = 2, - ACTIONS(10468), 11, + [159397] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263684,8 +258550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263693,7 +258559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263727,8 +258593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163571] = 2, - ACTIONS(10304), 11, + [159455] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263740,8 +258606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263749,7 +258616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263783,8 +258649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163629] = 2, - ACTIONS(10354), 11, + [159513] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263796,9 +258662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, + ACTIONS(10842), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263839,8 +258705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163687] = 2, - ACTIONS(10212), 11, + [159571] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263852,16 +258718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -263895,8 +258761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163745] = 2, - ACTIONS(10300), 11, + [159629] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263908,8 +258774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263917,8 +258783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -263951,8 +258817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163803] = 2, - ACTIONS(10216), 11, + [159687] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -263964,8 +258830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -263973,7 +258839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264007,8 +258873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163861] = 2, - ACTIONS(10296), 11, + [159745] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264020,8 +258886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264029,7 +258895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264063,8 +258929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163919] = 2, - ACTIONS(10236), 11, + [159803] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264076,16 +258942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264119,8 +258985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [163977] = 2, - ACTIONS(10232), 11, + [159861] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264132,16 +258998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264175,8 +259041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164035] = 2, - ACTIONS(10292), 11, + [159919] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264188,16 +259054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264231,8 +259097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164093] = 2, - ACTIONS(10288), 11, + [159977] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264244,8 +259110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264253,7 +259120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264287,8 +259153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164151] = 2, - ACTIONS(10284), 11, + [160035] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264300,8 +259166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264309,7 +259175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264343,8 +259209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164209] = 2, - ACTIONS(10362), 11, + [160093] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264356,9 +259222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, + ACTIONS(10854), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264399,8 +259265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164267] = 2, - ACTIONS(10464), 11, + [160151] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264412,8 +259278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264421,7 +259288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264455,8 +259321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164325] = 2, - ACTIONS(10366), 11, + [160209] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264468,9 +259334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264478,6 +259343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264511,8 +259377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164383] = 2, - ACTIONS(10370), 11, + [160267] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264524,9 +259390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, + ACTIONS(11006), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264567,8 +259433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164441] = 2, - ACTIONS(10374), 11, + [160325] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264580,9 +259446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264591,6 +259456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -264623,8 +259489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164499] = 2, - ACTIONS(10378), 11, + [160383] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264636,14 +259502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -264679,8 +259545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164557] = 2, - ACTIONS(10382), 11, + [160441] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264692,9 +259558,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, + ACTIONS(10862), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264735,8 +259601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164615] = 2, - ACTIONS(10386), 11, + [160499] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264748,9 +259614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, + ACTIONS(10866), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264791,8 +259657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164673] = 2, - ACTIONS(10260), 11, + [160557] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264804,14 +259670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -264847,8 +259713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164731] = 2, - ACTIONS(10280), 11, + [160615] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264860,16 +259726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264903,8 +259769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164789] = 2, - ACTIONS(10276), 11, + [160673] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264916,16 +259782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -264959,8 +259825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164847] = 2, - ACTIONS(10272), 11, + [160731] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -264972,8 +259838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -264981,7 +259848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265015,8 +259881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164905] = 2, - ACTIONS(10350), 11, + [160789] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265028,8 +259894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265071,8 +259937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [164963] = 2, - ACTIONS(10268), 11, + [160847] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265084,8 +259950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265127,8 +259993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165021] = 2, - ACTIONS(10472), 11, + [160905] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265140,8 +260006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265183,8 +260049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165079] = 2, - ACTIONS(10394), 11, + [160963] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265196,9 +260062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265206,6 +260071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265239,8 +260105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165137] = 2, - ACTIONS(10398), 11, + [161021] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265252,9 +260118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265262,6 +260127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265295,8 +260161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165195] = 2, - ACTIONS(10402), 11, + [161079] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265308,9 +260174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, + ACTIONS(10878), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265351,8 +260217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165253] = 2, - ACTIONS(10264), 11, + [161137] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265364,8 +260230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265407,8 +260273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165311] = 2, - ACTIONS(10220), 11, + [161195] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265420,8 +260286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265429,7 +260295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265463,8 +260329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165369] = 2, - ACTIONS(10304), 11, + [161253] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265476,8 +260342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265485,9 +260351,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -265519,8 +260385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165427] = 2, - ACTIONS(10260), 11, + [161311] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265532,8 +260398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265575,8 +260441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165485] = 2, - ACTIONS(10224), 11, + [161369] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265588,8 +260454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265597,7 +260463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265631,8 +260497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165543] = 2, - ACTIONS(10176), 11, + [161427] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265644,8 +260510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265653,7 +260520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265687,8 +260553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165601] = 2, - ACTIONS(10406), 11, + [161485] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265700,9 +260566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265710,6 +260575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265743,8 +260609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165659] = 2, - ACTIONS(10416), 11, + [161543] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265756,9 +260622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265766,6 +260631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265799,8 +260665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165717] = 2, - ACTIONS(10420), 11, + [161601] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265812,9 +260678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265822,6 +260687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265855,8 +260721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165775] = 2, - ACTIONS(10424), 11, + [161659] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265868,9 +260734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265878,6 +260743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -265911,8 +260777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165833] = 2, - ACTIONS(10428), 11, + [161717] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265924,9 +260790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, + ACTIONS(10886), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265967,8 +260833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165891] = 2, - ACTIONS(10476), 11, + [161775] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -265980,9 +260846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -265990,6 +260855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266023,8 +260889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [165949] = 2, - ACTIONS(10436), 11, + [161833] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266036,9 +260902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, + ACTIONS(10890), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266079,8 +260945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166007] = 2, - ACTIONS(10440), 11, + [161891] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266092,9 +260958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, + ACTIONS(10894), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266135,8 +261001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166065] = 2, - ACTIONS(10256), 11, + [161949] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266148,8 +261014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266157,8 +261023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266191,8 +261057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166123] = 2, - ACTIONS(10252), 11, + [162007] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266204,8 +261070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266247,8 +261113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166181] = 2, - ACTIONS(10248), 11, + [162065] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266260,8 +261126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266269,8 +261135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266303,8 +261169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166239] = 2, - ACTIONS(10244), 11, + [162123] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266316,8 +261182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266325,7 +261192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266359,8 +261225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166297] = 2, - ACTIONS(10240), 11, + [162181] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266372,8 +261238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266381,8 +261247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266415,8 +261281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166355] = 2, - ACTIONS(10228), 11, + [162239] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266428,8 +261294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266437,7 +261304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266471,8 +261337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166413] = 2, - ACTIONS(10232), 11, + [162297] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266484,8 +261350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266527,8 +261393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166471] = 2, - ACTIONS(10236), 11, + [162355] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266540,8 +261406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266549,7 +261415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266583,8 +261449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166529] = 2, - ACTIONS(10232), 11, + [162413] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266596,8 +261462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266605,8 +261471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266639,8 +261505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166587] = 2, - ACTIONS(10228), 11, + [162471] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266652,8 +261518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266661,8 +261527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266695,8 +261561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166645] = 2, - ACTIONS(10460), 11, + [162529] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266708,8 +261574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266717,8 +261583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266751,8 +261617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166703] = 2, - ACTIONS(10224), 11, + [162587] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266764,8 +261630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266807,8 +261673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166761] = 2, - ACTIONS(10452), 11, + [162645] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266820,8 +261686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266829,8 +261695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -266863,8 +261729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166819] = 2, - ACTIONS(10220), 11, + [162703] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266876,8 +261742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266885,7 +261752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266919,8 +261785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166877] = 2, - ACTIONS(10124), 11, + [162761] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266932,8 +261798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -266941,7 +261808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -266975,8 +261841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166935] = 2, - ACTIONS(10280), 11, + [162819] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -266988,16 +261854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267031,8 +261897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [166993] = 2, - ACTIONS(10448), 11, + [162877] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267044,8 +261910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267053,7 +261920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267087,8 +261953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167051] = 2, - ACTIONS(10236), 11, + [162935] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267100,8 +261966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267109,7 +261975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267143,8 +262009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167109] = 2, - ACTIONS(10444), 11, + [162993] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267156,8 +262022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267199,8 +262065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167167] = 2, - ACTIONS(10440), 11, + [163051] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267212,8 +262078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267221,8 +262087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -267255,8 +262121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167225] = 2, - ACTIONS(10436), 11, + [163109] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267268,8 +262134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267277,7 +262143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267311,8 +262177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167283] = 2, - ACTIONS(10444), 11, + [163167] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267324,9 +262190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, + ACTIONS(10922), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267367,8 +262233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167341] = 2, - ACTIONS(10428), 11, + [163225] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267380,8 +262246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267423,8 +262289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167399] = 2, - ACTIONS(10448), 11, + [163283] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267436,14 +262302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -267479,8 +262345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167457] = 2, - ACTIONS(10124), 11, + [163341] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267492,9 +262358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267502,6 +262367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267535,8 +262401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167515] = 2, - ACTIONS(10390), 11, + [163399] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267548,9 +262414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267559,6 +262424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -267591,8 +262457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167573] = 2, - ACTIONS(10240), 11, + [163457] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267604,8 +262470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267647,8 +262513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167631] = 2, - ACTIONS(10216), 11, + [163515] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267660,8 +262526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267669,7 +262535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267703,8 +262569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167689] = 2, - ACTIONS(10212), 11, + [163573] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267716,8 +262582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267725,7 +262591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267759,8 +262625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167747] = 2, - ACTIONS(10424), 11, + [163631] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267772,16 +262638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267815,8 +262681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167805] = 2, - ACTIONS(10420), 11, + [163689] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267828,16 +262694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267871,8 +262737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167863] = 2, - ACTIONS(10244), 11, + [163747] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267884,8 +262750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267893,8 +262759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -267927,8 +262793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167921] = 2, - ACTIONS(10208), 11, + [163805] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267940,8 +262806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -267949,7 +262816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -267983,8 +262849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [167979] = 2, - ACTIONS(10228), 11, + [163863] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -267996,14 +262862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -268039,8 +262905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168037] = 2, - ACTIONS(10248), 11, + [163921] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268052,8 +262918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268061,7 +262928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268095,8 +262961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168095] = 2, - ACTIONS(10252), 11, + [163979] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268108,16 +262974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268151,8 +263017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168153] = 2, - ACTIONS(10256), 11, + [164037] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268164,8 +263030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268207,8 +263073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168211] = 2, - ACTIONS(10260), 11, + [164095] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268220,16 +263086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268263,8 +263129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168269] = 2, - ACTIONS(10460), 11, + [164153] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268276,14 +263142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -268319,8 +263185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168327] = 2, - ACTIONS(10176), 11, + [164211] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268332,8 +263198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268341,7 +263207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268375,8 +263241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168385] = 2, - ACTIONS(10476), 11, + [164269] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268388,8 +263254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268398,7 +263265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -268431,8 +263297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168443] = 2, - ACTIONS(10204), 11, + [164327] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268444,16 +263310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268487,8 +263353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168501] = 2, - ACTIONS(10200), 11, + [164385] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268500,8 +263366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268509,7 +263376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268543,8 +263409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168559] = 2, - ACTIONS(10374), 11, + [164443] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268556,8 +263422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268565,7 +263432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268599,8 +263465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168617] = 2, - ACTIONS(10406), 11, + [164501] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268612,8 +263478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268655,8 +263521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168675] = 2, - ACTIONS(10196), 11, + [164559] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268668,8 +263534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268677,7 +263544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -268711,8 +263577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168733] = 2, - ACTIONS(10472), 11, + [164617] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268724,15 +263590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -268767,8 +263633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168791] = 2, - ACTIONS(10464), 11, + [164675] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268780,15 +263646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -268823,8 +263689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168849] = 2, - ACTIONS(10468), 11, + [164733] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268836,15 +263702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -268879,8 +263745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168907] = 2, - ACTIONS(10152), 11, + [164791] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268892,8 +263758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -268935,8 +263801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [168965] = 2, - ACTIONS(10264), 11, + [164849] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -268948,15 +263814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -268991,8 +263857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169023] = 2, - ACTIONS(10156), 11, + [164907] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269004,8 +263870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269047,8 +263913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169081] = 2, - ACTIONS(10160), 11, + [164965] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269060,15 +263926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -269103,8 +263969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169139] = 2, - ACTIONS(10164), 11, + [165023] = 2, + ACTIONS(11002), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269116,15 +263982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11000), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -269159,8 +264025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169197] = 2, - ACTIONS(10120), 11, + [165081] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269172,8 +264038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269215,8 +264081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169255] = 2, - ACTIONS(10192), 11, + [165139] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269228,8 +264094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269237,7 +264104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269271,8 +264137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169313] = 2, - ACTIONS(10402), 11, + [165197] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269284,16 +264150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269327,8 +264193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169371] = 2, - ACTIONS(10188), 11, + [165255] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269340,16 +264206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269383,8 +264249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169429] = 2, - ACTIONS(10184), 11, + [165313] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269396,8 +264262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269405,7 +264271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269439,8 +264305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169487] = 2, - ACTIONS(10272), 11, + [165371] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269452,16 +264318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269495,8 +264361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169545] = 2, - ACTIONS(10444), 11, + [165429] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269508,8 +264374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10442), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269551,8 +264417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169603] = 2, - ACTIONS(10168), 11, + [165487] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269564,8 +264430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269607,8 +264473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169661] = 2, - ACTIONS(10172), 11, + [165545] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269620,8 +264486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269629,7 +264496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269663,8 +264529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169719] = 2, - ACTIONS(10172), 11, + [165603] = 2, + ACTIONS(10966), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269676,15 +264542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10170), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10964), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -269719,8 +264585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169777] = 2, - ACTIONS(10176), 11, + [165661] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269732,8 +264598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10174), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269775,8 +264641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169835] = 2, - ACTIONS(10168), 11, + [165719] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269788,16 +264654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10166), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269831,8 +264697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169893] = 2, - ACTIONS(10120), 11, + [165777] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269844,16 +264710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10118), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269887,8 +264753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [169951] = 2, - ACTIONS(10164), 11, + [165835] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269900,8 +264766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10162), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -269909,7 +264775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -269943,8 +264809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170009] = 2, - ACTIONS(10224), 11, + [165893] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -269956,14 +264822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -269999,8 +264865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170067] = 2, - ACTIONS(10160), 11, + [165951] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270012,8 +264878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10158), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270021,7 +264887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270055,8 +264921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170125] = 2, - ACTIONS(10452), 11, + [166009] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270068,9 +264934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, + ACTIONS(10968), 42, ts_builtin_sym_end, - anon_sym_LBRACE_LBRACE_DASH_DASH, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270111,8 +264977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170183] = 2, - ACTIONS(10188), 11, + [166067] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270124,8 +264990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10186), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270167,8 +265033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170241] = 2, - ACTIONS(10192), 11, + [166125] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270180,17 +265046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10190), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -270223,8 +265089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170299] = 2, - ACTIONS(10196), 11, + [166183] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270236,8 +265102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10194), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270279,8 +265145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170357] = 2, - ACTIONS(10200), 11, + [166241] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270292,15 +265158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10198), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -270335,8 +265201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170415] = 2, - ACTIONS(10204), 11, + [166299] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270348,15 +265214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10202), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -270391,8 +265257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170473] = 2, - ACTIONS(10156), 11, + [166357] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270404,8 +265270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10154), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270413,8 +265279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -270447,8 +265313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170531] = 2, - ACTIONS(10276), 11, + [166415] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270460,15 +265326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -270503,8 +265369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170589] = 2, - ACTIONS(10152), 11, + [166473] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270516,8 +265382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10150), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270525,7 +265391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270559,8 +265425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170647] = 2, - ACTIONS(10468), 11, + [166531] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270572,16 +265438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10466), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270615,8 +265481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170705] = 2, - ACTIONS(10208), 11, + [166589] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270628,16 +265494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10206), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270671,8 +265537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170763] = 2, - ACTIONS(10212), 11, + [166647] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270684,16 +265550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10210), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270727,8 +265593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170821] = 2, - ACTIONS(10464), 11, + [166705] = 2, + ACTIONS(10970), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270740,16 +265606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10462), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10968), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270783,8 +265649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170879] = 2, - ACTIONS(10472), 11, + [166763] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270796,8 +265662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10470), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270839,8 +265705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170937] = 2, - ACTIONS(10398), 11, + [166821] = 2, + ACTIONS(10982), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270852,8 +265718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10980), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -270895,8 +265761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [170995] = 2, - ACTIONS(10460), 11, + [166879] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270908,16 +265774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10458), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -270951,8 +265817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171053] = 2, - ACTIONS(10394), 11, + [166937] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -270964,8 +265830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271007,8 +265873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171111] = 2, - ACTIONS(10452), 11, + [166995] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271020,15 +265886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10450), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -271063,8 +265929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171169] = 2, - ACTIONS(10390), 11, + [167053] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271076,8 +265942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271119,8 +265985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171227] = 2, - ACTIONS(10268), 11, + [167111] = 2, + ACTIONS(10974), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271132,8 +265998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10972), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271141,7 +266008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271175,8 +266041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171285] = 2, - ACTIONS(10386), 11, + [167169] = 2, + ACTIONS(10888), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271188,8 +266054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10886), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271231,8 +266097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171343] = 2, - ACTIONS(10216), 11, + [167227] = 2, + ACTIONS(10962), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271244,16 +266110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10960), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271287,8 +266153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171401] = 2, - ACTIONS(10382), 11, + [167285] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271300,8 +266166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271343,8 +266209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171459] = 2, - ACTIONS(10378), 11, + [167343] = 2, + ACTIONS(10978), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271356,8 +266222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10976), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271365,7 +266232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271399,8 +266265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171517] = 2, - ACTIONS(10456), 11, + [167401] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271412,8 +266278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271421,9 +266287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -271455,8 +266321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171575] = 2, - ACTIONS(10268), 11, + [167459] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271468,16 +266334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271511,8 +266377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171633] = 2, - ACTIONS(10324), 11, + [167517] = 2, + ACTIONS(10806), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271524,16 +266390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10804), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271567,8 +266433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171691] = 2, - ACTIONS(10220), 11, + [167575] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271580,8 +266446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271623,8 +266489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171749] = 2, - ACTIONS(10220), 11, + [167633] = 2, + ACTIONS(10986), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271636,14 +266502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10218), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10984), 42, + ts_builtin_sym_end, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -271679,8 +266545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171807] = 2, - ACTIONS(10124), 11, + [167691] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271692,8 +266558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10122), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271735,8 +266601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171865] = 2, - ACTIONS(10448), 11, + [167749] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271748,8 +266614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10446), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271791,8 +266657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171923] = 2, - ACTIONS(10350), 11, + [167807] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271804,16 +266670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271847,8 +266713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [171981] = 2, - ACTIONS(10272), 11, + [167865] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271860,16 +266726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -271903,8 +266769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172039] = 2, - ACTIONS(10370), 11, + [167923] = 2, + ACTIONS(10958), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271916,8 +266782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10956), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -271959,8 +266825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172097] = 2, - ACTIONS(10366), 11, + [167981] = 2, + ACTIONS(10950), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -271972,8 +266838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10948), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272015,8 +266881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172155] = 2, - ACTIONS(10338), 11, + [168039] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272028,8 +266894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272071,8 +266937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172213] = 2, - ACTIONS(10224), 11, + [168097] = 2, + ACTIONS(10770), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272084,8 +266950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10222), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10768), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272127,8 +266993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172271] = 2, - ACTIONS(10276), 11, + [168155] = 2, + ACTIONS(10946), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272140,8 +267006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10944), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272183,8 +267049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172329] = 2, - ACTIONS(10440), 11, + [168213] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272196,8 +267062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10438), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272239,8 +267105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172387] = 2, - ACTIONS(10280), 11, + [168271] = 2, + ACTIONS(10766), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272252,16 +267118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10764), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -272295,8 +267161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172445] = 2, - ACTIONS(10284), 11, + [168329] = 2, + ACTIONS(10762), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272308,16 +267174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10760), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -272351,8 +267217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172503] = 2, - ACTIONS(10228), 11, + [168387] = 2, + ACTIONS(10678), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272364,8 +267230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10226), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10676), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272407,8 +267273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172561] = 2, - ACTIONS(10184), 11, + [168445] = 2, + ACTIONS(10774), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272420,8 +267286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10182), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10772), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272463,8 +267329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172619] = 2, - ACTIONS(10236), 11, + [168503] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272476,8 +267342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10234), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272519,8 +267385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172677] = 2, - ACTIONS(10240), 11, + [168561] = 2, + ACTIONS(10674), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272532,8 +267398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10238), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10672), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272575,8 +267441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172735] = 2, - ACTIONS(10244), 11, + [168619] = 2, + ACTIONS(10746), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272588,8 +267454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10242), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10744), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272631,8 +267497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172793] = 2, - ACTIONS(10248), 11, + [168677] = 2, + ACTIONS(10942), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272644,16 +267510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10246), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10940), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -272687,8 +267553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172851] = 2, - ACTIONS(10252), 11, + [168735] = 2, + ACTIONS(10682), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272700,8 +267566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10250), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10680), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272743,8 +267609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172909] = 2, - ACTIONS(10362), 11, + [168793] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272756,16 +267622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -272799,8 +267665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [172967] = 2, - ACTIONS(10256), 11, + [168851] = 2, + ACTIONS(10938), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272812,16 +267678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10254), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10936), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -272855,8 +267721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173025] = 2, - ACTIONS(10288), 11, + [168909] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272868,16 +267734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -272911,8 +267777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173083] = 2, - ACTIONS(10436), 11, + [168967] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272924,8 +267790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10434), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -272967,8 +267833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173141] = 2, - ACTIONS(10292), 11, + [169025] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -272980,16 +267846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273023,8 +267889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173199] = 2, - ACTIONS(10476), 11, + [169083] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273036,15 +267902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -273079,8 +267945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173257] = 2, - ACTIONS(10296), 11, + [169141] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273092,16 +267958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273135,8 +268001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173315] = 2, - ACTIONS(10456), 11, + [169199] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273148,16 +268014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273191,8 +268057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173373] = 2, - ACTIONS(10232), 11, + [169257] = 2, + ACTIONS(10686), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273204,8 +268070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10230), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10684), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273247,8 +268113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173431] = 2, - ACTIONS(10428), 11, + [169315] = 2, + ACTIONS(10698), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273260,8 +268126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10426), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10696), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273303,8 +268169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173489] = 2, - ACTIONS(10300), 11, + [169373] = 2, + ACTIONS(10834), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273316,16 +268182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10832), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273359,8 +268225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173547] = 2, - ACTIONS(10424), 11, + [169431] = 2, + ACTIONS(10830), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273372,8 +268238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10422), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10828), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273415,8 +268281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173605] = 2, - ACTIONS(10354), 11, + [169489] = 2, + ACTIONS(10838), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273428,8 +268294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10836), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273471,8 +268337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173663] = 2, - ACTIONS(10420), 11, + [169547] = 2, + ACTIONS(10844), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273484,16 +268350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10418), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10842), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273527,8 +268393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173721] = 2, - ACTIONS(10416), 11, + [169605] = 2, + ACTIONS(10848), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273540,16 +268406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10414), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10846), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273583,8 +268449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173779] = 2, - ACTIONS(10260), 11, + [169663] = 2, + ACTIONS(10702), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273596,8 +268462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10258), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10700), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273639,8 +268505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173837] = 2, - ACTIONS(10264), 11, + [169721] = 2, + ACTIONS(10706), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273652,8 +268518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10704), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273695,8 +268561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173895] = 2, - ACTIONS(10406), 11, + [169779] = 2, + ACTIONS(10826), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273708,8 +268574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10404), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10824), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273751,8 +268617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [173953] = 2, - ACTIONS(10268), 11, + [169837] = 2, + ACTIONS(10822), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273764,8 +268630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10266), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10820), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273807,8 +268673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174011] = 2, - ACTIONS(10350), 11, + [169895] = 2, + ACTIONS(10852), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273820,16 +268686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10850), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273863,8 +268729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174069] = 2, - ACTIONS(10272), 11, + [169953] = 2, + ACTIONS(10818), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273876,8 +268742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10270), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10816), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -273919,8 +268785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174127] = 2, - ACTIONS(10276), 11, + [170011] = 2, + ACTIONS(10856), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273932,16 +268798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10274), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10854), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -273975,8 +268841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174185] = 2, - ACTIONS(10280), 11, + [170069] = 2, + ACTIONS(10718), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -273988,8 +268854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10278), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10716), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -274031,8 +268897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174243] = 2, - ACTIONS(10284), 11, + [170127] = 2, + ACTIONS(10726), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274044,8 +268910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10282), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10724), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -274087,8 +268953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174301] = 2, - ACTIONS(10288), 11, + [170185] = 2, + ACTIONS(10750), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274100,8 +268966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10286), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10748), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -274143,8 +269009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174359] = 2, - ACTIONS(10292), 11, + [170243] = 2, + ACTIONS(10934), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274156,16 +269022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10290), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10932), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274199,8 +269065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174417] = 2, - ACTIONS(10402), 11, + [170301] = 2, + ACTIONS(10860), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274212,16 +269078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10400), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10858), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274255,8 +269121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174475] = 2, - ACTIONS(10398), 11, + [170359] = 2, + ACTIONS(10928), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274268,16 +269134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10396), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10926), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274311,8 +269177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174533] = 2, - ACTIONS(10394), 11, + [170417] = 2, + ACTIONS(10694), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274324,8 +269190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10392), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10692), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -274367,8 +269233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174591] = 2, - ACTIONS(10390), 11, + [170475] = 2, + ACTIONS(10924), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274380,16 +269246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10388), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10922), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274423,8 +269289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174649] = 2, - ACTIONS(10386), 11, + [170533] = 2, + ACTIONS(11008), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274436,16 +269302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10384), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(11006), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274479,8 +269345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174707] = 2, - ACTIONS(10382), 11, + [170591] = 2, + ACTIONS(10916), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274492,16 +269358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10380), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10914), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274535,8 +269401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174765] = 2, - ACTIONS(10378), 11, + [170649] = 2, + ACTIONS(10864), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274548,16 +269414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10376), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10862), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274591,8 +269457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174823] = 2, - ACTIONS(10374), 11, + [170707] = 2, + ACTIONS(10912), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274604,16 +269470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10372), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10910), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274647,8 +269513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174881] = 2, - ACTIONS(10370), 11, + [170765] = 2, + ACTIONS(10908), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274660,16 +269526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10368), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10906), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274703,8 +269569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174939] = 2, - ACTIONS(10296), 11, + [170823] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274716,18 +269582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10294), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -274759,8 +269625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [174997] = 2, - ACTIONS(10300), 11, + [170881] = 2, + ACTIONS(10904), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274772,16 +269638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10298), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10902), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274815,8 +269681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175055] = 2, - ACTIONS(10304), 11, + [170939] = 2, + ACTIONS(10900), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274828,16 +269694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10898), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274871,8 +269737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175113] = 2, - ACTIONS(10304), 11, + [170997] = 2, + ACTIONS(10710), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274884,16 +269750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10302), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10708), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274927,8 +269793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175171] = 2, - ACTIONS(10432), 11, + [171055] = 2, + ACTIONS(10714), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274940,16 +269806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10712), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -274983,8 +269849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175229] = 2, - ACTIONS(10366), 11, + [171113] = 2, + ACTIONS(10814), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -274996,8 +269862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10364), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10812), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275039,8 +269905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175287] = 2, - ACTIONS(10346), 11, + [171171] = 2, + ACTIONS(10868), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275052,8 +269918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10866), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275095,8 +269961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175345] = 2, - ACTIONS(10362), 11, + [171229] = 2, + ACTIONS(10810), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275108,8 +269974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10360), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10808), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275151,8 +270017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175403] = 2, - ACTIONS(10342), 11, + [171287] = 2, + ACTIONS(10896), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275164,8 +270030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10894), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275207,8 +270073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175461] = 2, - ACTIONS(10354), 11, + [171345] = 2, + ACTIONS(10892), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275220,16 +270086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10352), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10890), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275263,8 +270129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175519] = 2, - ACTIONS(10338), 11, + [171403] = 2, + ACTIONS(10872), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275276,8 +270142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10336), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10870), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275319,8 +270185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175577] = 2, - ACTIONS(10432), 11, + [171461] = 2, + ACTIONS(10876), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275332,16 +270198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10430), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10874), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275375,8 +270241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175635] = 2, - ACTIONS(10334), 11, + [171519] = 2, + ACTIONS(10802), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275388,16 +270254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10800), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275431,8 +270297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175693] = 2, - ACTIONS(10330), 11, + [171577] = 2, + ACTIONS(10798), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275444,16 +270310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10796), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275487,8 +270353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175751] = 2, - ACTIONS(10264), 11, + [171635] = 2, + ACTIONS(10794), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275500,16 +270366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10262), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10792), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275543,8 +270409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175809] = 2, - ACTIONS(10350), 11, + [171693] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275556,15 +270422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10348), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -275599,8 +270465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175867] = 2, - ACTIONS(10320), 11, + [171751] = 2, + ACTIONS(10786), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275612,16 +270478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10784), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275655,8 +270521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175925] = 2, - ACTIONS(10308), 11, + [171809] = 2, + ACTIONS(10782), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275668,8 +270534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10780), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275711,8 +270577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [175983] = 2, - ACTIONS(10312), 11, + [171867] = 2, + ACTIONS(10778), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275724,8 +270590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10776), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275767,8 +270633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176041] = 2, - ACTIONS(10316), 11, + [171925] = 2, + ACTIONS(10730), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275780,8 +270646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10728), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275823,8 +270689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176099] = 2, - ACTIONS(10320), 11, + [171983] = 2, + ACTIONS(10734), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275836,8 +270702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10318), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10732), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -275879,8 +270745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176157] = 2, - ACTIONS(10324), 11, + [172041] = 2, + ACTIONS(10790), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275892,15 +270758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10322), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10788), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -275935,8 +270801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176215] = 2, - ACTIONS(10330), 11, + [172099] = 2, + ACTIONS(10884), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -275948,16 +270814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10328), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10882), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -275991,8 +270857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176273] = 2, - ACTIONS(10316), 11, + [172157] = 2, + ACTIONS(10738), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276004,16 +270870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10314), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10736), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -276047,8 +270913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176331] = 2, - ACTIONS(10312), 11, + [172215] = 2, + ACTIONS(10954), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276060,16 +270926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10310), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10952), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -276103,8 +270969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176389] = 2, - ACTIONS(10346), 11, + [172273] = 2, + ACTIONS(10880), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276116,16 +270982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10344), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10878), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -276159,8 +271025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176447] = 2, - ACTIONS(10334), 11, + [172331] = 2, + ACTIONS(10758), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276172,8 +271038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10332), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10756), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -276215,8 +271081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176505] = 2, - ACTIONS(10342), 11, + [172389] = 2, + ACTIONS(10754), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276228,8 +271094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10340), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10752), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -276271,8 +271137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176563] = 2, - ACTIONS(10308), 11, + [172447] = 2, + ACTIONS(10722), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276284,16 +271150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10306), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10720), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -276327,8 +271193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176621] = 2, - ACTIONS(10216), 11, + [172505] = 2, + ACTIONS(10742), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -276340,15 +271206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfor, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10214), 42, - anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10740), 42, + sym_comment, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -276383,23724 +271249,23142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym__text_token3, - [176679] = 9, - ACTIONS(9956), 1, + [172563] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10694), 1, + ACTIONS(11240), 1, anon_sym_ATenderror, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, STATE(131), 1, sym__directive_parameter, - STATE(5910), 1, + STATE(6132), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3767), 3, + STATE(3666), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176711] = 9, - ACTIONS(9956), 1, + [172595] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10702), 1, + ACTIONS(11248), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6358), 1, + STATE(5821), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3978), 3, + STATE(3906), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176743] = 9, - ACTIONS(9956), 1, + [172627] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10704), 1, + ACTIONS(11250), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6267), 1, + STATE(6648), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3854), 3, + STATE(3772), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176775] = 9, - ACTIONS(9956), 1, + [172659] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10706), 1, + ACTIONS(11252), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6445), 1, + STATE(6685), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3684), 3, + STATE(3689), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176807] = 9, - ACTIONS(9956), 1, + [172691] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10708), 1, + ACTIONS(11254), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6179), 1, + STATE(5968), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3701), 3, + STATE(3857), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176839] = 9, - ACTIONS(9956), 1, + [172723] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10710), 1, + ACTIONS(11256), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5931), 1, + STATE(6586), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3955), 3, + STATE(3858), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176871] = 9, - ACTIONS(9956), 1, + [172755] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10712), 1, + ACTIONS(11258), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5735), 1, + STATE(6616), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4008), 3, + STATE(3813), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176903] = 9, - ACTIONS(9956), 1, + [172787] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10714), 1, + ACTIONS(11260), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6634), 1, + STATE(6533), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4031), 3, + STATE(3943), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176935] = 9, - ACTIONS(9956), 1, + [172819] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10716), 1, + ACTIONS(11262), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6026), 1, + STATE(5514), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3958), 3, + STATE(3893), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176967] = 9, - ACTIONS(9956), 1, + [172851] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10718), 1, + ACTIONS(11264), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6806), 1, + STATE(6473), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3966), 3, + STATE(3913), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [176999] = 9, - ACTIONS(9956), 1, + [172883] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10720), 1, + ACTIONS(11266), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5939), 1, + STATE(5568), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3939), 3, + STATE(3924), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177031] = 9, - ACTIONS(9956), 1, + [172915] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10722), 1, + ACTIONS(11268), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5765), 1, + STATE(6510), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3959), 3, + STATE(3936), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177063] = 9, - ACTIONS(9956), 1, + [172947] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10724), 1, + ACTIONS(11270), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5710), 1, + STATE(5497), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3922), 3, + STATE(3891), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177095] = 9, - ACTIONS(9956), 1, + [172979] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10726), 1, + ACTIONS(11272), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5583), 1, + STATE(6420), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3884), 3, + STATE(3866), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177127] = 9, - ACTIONS(9956), 1, + [173011] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10728), 1, + ACTIONS(11274), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6222), 1, + STATE(5616), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3898), 3, + STATE(3814), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177159] = 9, - ACTIONS(9956), 1, + [173043] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10730), 1, + ACTIONS(11276), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5637), 1, + STATE(6363), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3892), 3, + STATE(3829), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177191] = 9, - ACTIONS(9956), 1, + [173075] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10732), 1, + ACTIONS(11278), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6508), 1, + STATE(6405), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3873), 3, + STATE(3865), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177223] = 9, - ACTIONS(9956), 1, + [173107] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10734), 1, + ACTIONS(11280), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5568), 1, + STATE(5504), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3875), 3, + STATE(3832), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177255] = 9, - ACTIONS(9956), 1, + [173139] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10736), 1, + ACTIONS(11282), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6392), 1, + STATE(5939), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3886), 3, + STATE(3905), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177287] = 9, - ACTIONS(9956), 1, + [173171] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10738), 1, + ACTIONS(11284), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6843), 1, + STATE(6307), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3677), 3, + STATE(3790), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177319] = 9, - ACTIONS(9956), 1, + [173203] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10740), 1, + ACTIONS(11286), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5761), 1, + STATE(5638), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3816), 3, + STATE(3803), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177351] = 9, - ACTIONS(9956), 1, + [173235] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10742), 1, + ACTIONS(11288), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6411), 1, + STATE(5735), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3783), 3, + STATE(3726), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177383] = 9, - ACTIONS(9956), 1, + [173267] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10744), 1, + ACTIONS(11290), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6120), 1, + STATE(6323), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3844), 3, + STATE(3794), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177415] = 9, - ACTIONS(9956), 1, + [173299] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10746), 1, + ACTIONS(11292), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6773), 1, + STATE(6251), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3804), 3, + STATE(3742), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177447] = 9, - ACTIONS(9956), 1, + [173331] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10748), 1, + ACTIONS(11294), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6687), 1, + STATE(5695), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3819), 3, + STATE(3749), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177479] = 9, - ACTIONS(9956), 1, + [173363] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10750), 1, + ACTIONS(11296), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6692), 1, + STATE(6193), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3770), 3, + STATE(3713), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177511] = 9, - ACTIONS(9956), 1, + [173395] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10752), 1, + ACTIONS(11298), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6803), 1, + STATE(5759), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3813), 3, + STATE(3715), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177543] = 9, - ACTIONS(9956), 1, + [173427] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10754), 1, + ACTIONS(11300), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5820), 1, + STATE(6219), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3793), 3, + STATE(3723), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177575] = 9, - ACTIONS(9956), 1, + [173459] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10756), 1, + ACTIONS(11302), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6175), 1, + STATE(6005), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3696), 3, + STATE(3845), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177607] = 9, - ACTIONS(9956), 1, + [173491] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10758), 1, + ACTIONS(11304), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6609), 1, + STATE(6102), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3743), 3, + STATE(3656), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177639] = 9, - ACTIONS(9956), 1, + [173523] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10760), 1, + ACTIONS(11306), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6529), 1, + STATE(5858), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3714), 3, + STATE(3645), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177671] = 9, - ACTIONS(9956), 1, + [173555] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10762), 1, + ACTIONS(11308), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5998), 1, + STATE(6067), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3750), 3, + STATE(3642), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177703] = 9, - ACTIONS(9956), 1, + [173587] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10764), 1, + ACTIONS(11310), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6610), 1, + STATE(5815), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3741), 3, + STATE(3681), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177735] = 9, - ACTIONS(9956), 1, + [173619] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10766), 1, + ACTIONS(11312), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(5999), 1, + STATE(5982), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3751), 3, + STATE(3935), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177767] = 9, - ACTIONS(9956), 1, + [173651] = 9, + ACTIONS(10510), 1, anon_sym_LPAREN2, - ACTIONS(10696), 1, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10768), 1, + ACTIONS(11314), 1, anon_sym_ATenderror, STATE(131), 1, sym__directive_parameter, - STATE(6087), 1, + STATE(5880), 1, sym__if_statement_directive_body, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3727), 3, + STATE(3639), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177799] = 6, - ACTIONS(10696), 1, + [173683] = 6, + ACTIONS(11316), 1, + anon_sym_ATenderror, + ACTIONS(11318), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11324), 1, aux_sym__text_token3, - ACTIONS(10770), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11321), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177822] = 6, - ACTIONS(10772), 1, + [173706] = 6, + ACTIONS(11327), 1, + anon_sym_ATendafter, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, + aux_sym__text_token3, + ACTIONS(11331), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4178), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3927), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [173729] = 6, + ACTIONS(11335), 1, anon_sym_ATendbefore, - ACTIONS(10774), 1, + ACTIONS(11337), 1, + aux_sym__notification_token1, + ACTIONS(11341), 1, + aux_sym__text_token3, + ACTIONS(11339), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4084), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3765), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [173752] = 6, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, + aux_sym__text_token3, + ACTIONS(11343), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4178), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3927), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [173775] = 6, + ACTIONS(11345), 1, + anon_sym_ATendsuccess, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10776), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177845] = 6, - ACTIONS(10774), 1, + [173798] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10780), 1, + ACTIONS(11353), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177868] = 6, - ACTIONS(10782), 1, + [173821] = 6, + ACTIONS(11355), 1, anon_sym_ATendfinished, - ACTIONS(10784), 1, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177891] = 6, - ACTIONS(10790), 1, - anon_sym_ATendsuccess, - ACTIONS(10792), 1, + [173844] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10794), 2, + ACTIONS(11363), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3775), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177914] = 6, - ACTIONS(10798), 1, - anon_sym_ATendafter, - ACTIONS(10800), 1, + [173867] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10802), 2, + ACTIONS(11365), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3774), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177937] = 6, - ACTIONS(10774), 1, + [173890] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10806), 1, + ACTIONS(11367), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3820), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177960] = 6, - ACTIONS(10696), 1, + [173913] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10808), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11369), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3773), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [177983] = 6, - ACTIONS(10800), 1, - aux_sym__notification_token1, - ACTIONS(10804), 1, - aux_sym__text_token3, - ACTIONS(10810), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + [173936] = 8, + ACTIONS(11371), 1, + anon_sym_RPAREN, + ACTIONS(11373), 1, + anon_sym_COMMA, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + STATE(4472), 1, + sym_text, + STATE(5397), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [178006] = 6, - ACTIONS(10792), 1, - aux_sym__notification_token1, - ACTIONS(10796), 1, + [173963] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11381), 1, + anon_sym_RPAREN, + ACTIONS(11383), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5342), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, aux_sym__text_token3, - ACTIONS(10812), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [173990] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11385), 1, + anon_sym_RPAREN, + ACTIONS(11387), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5369), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4238), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [178029] = 6, - ACTIONS(10784), 1, + [174017] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10814), 1, + ACTIONS(11389), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178052] = 6, - ACTIONS(10784), 1, + [174040] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10816), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11391), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3680), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178075] = 6, - ACTIONS(10792), 1, + [174063] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10818), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11393), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3681), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178098] = 6, - ACTIONS(10800), 1, + [174086] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11395), 1, + anon_sym_RPAREN, + ACTIONS(11397), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5313), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [174113] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11399), 1, + anon_sym_RPAREN, + ACTIONS(11401), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5319), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [174140] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10820), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11403), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3682), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178121] = 6, - ACTIONS(10774), 1, + [174163] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10822), 1, + ACTIONS(11405), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3640), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178144] = 6, - ACTIONS(10800), 1, + [174186] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10824), 1, + ACTIONS(11407), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3643), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178167] = 6, - ACTIONS(10792), 1, + [174209] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10826), 1, + ACTIONS(11409), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3644), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178190] = 6, - ACTIONS(10784), 1, + [174232] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10828), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11411), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3669), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178213] = 6, - ACTIONS(10774), 1, + [174255] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10830), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11413), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3683), 3, + STATE(3670), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178236] = 6, - ACTIONS(10696), 1, + [174278] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10832), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11415), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3671), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178259] = 6, - ACTIONS(10774), 1, + [174301] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10834), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11417), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3702), 3, + STATE(3672), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178282] = 6, - ACTIONS(10800), 1, + [174324] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10836), 1, + ACTIONS(11419), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3703), 3, + STATE(3914), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178305] = 6, - ACTIONS(10792), 1, + [174347] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10838), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11421), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3704), 3, + STATE(3650), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178328] = 6, - ACTIONS(10784), 1, + [174370] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10840), 1, + ACTIONS(11423), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3705), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178351] = 6, - ACTIONS(10696), 1, + [174393] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10842), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11425), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178374] = 6, - ACTIONS(10774), 1, + [174416] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10844), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11427), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178397] = 6, - ACTIONS(10800), 1, + [174439] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10846), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11429), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178420] = 6, - ACTIONS(10792), 1, + [174462] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10848), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11431), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178443] = 6, - ACTIONS(10784), 1, + [174485] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10850), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11433), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178466] = 6, - ACTIONS(10784), 1, + [174508] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10852), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11435), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3824), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178489] = 6, - ACTIONS(10792), 1, + [174531] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10854), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11437), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3814), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178512] = 6, - ACTIONS(10800), 1, + [174554] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10856), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11439), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3807), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178535] = 6, - ACTIONS(10774), 1, + [174577] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10858), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11441), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3784), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178558] = 6, - ACTIONS(10784), 1, + [174600] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10860), 1, + ACTIONS(11443), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3636), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178581] = 6, - ACTIONS(10792), 1, + [174623] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10862), 1, + ACTIONS(11445), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3637), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178604] = 6, - ACTIONS(10800), 1, + [174646] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10864), 1, + ACTIONS(11447), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3638), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178627] = 6, - ACTIONS(10774), 1, + [174669] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10866), 1, + ACTIONS(11449), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3641), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178650] = 6, - ACTIONS(10696), 1, + [174692] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10868), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11451), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178673] = 6, - ACTIONS(10774), 1, + [174715] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10870), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11453), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3728), 3, + STATE(3731), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178696] = 6, - ACTIONS(10800), 1, + [174738] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10872), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11455), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3729), 3, + STATE(3678), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178719] = 6, - ACTIONS(10774), 1, + [174761] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10874), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11457), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3756), 3, + STATE(3610), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178742] = 6, - ACTIONS(10800), 1, + [174784] = 6, + ACTIONS(11316), 1, + anon_sym_ATendbefore, + ACTIONS(11459), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11465), 1, aux_sym__text_token3, - ACTIONS(10876), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11462), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3757), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178765] = 6, - ACTIONS(10792), 1, + [174807] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10878), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11468), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3758), 3, + STATE(3612), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178788] = 6, - ACTIONS(10784), 1, + [174830] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10880), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11470), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3759), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178811] = 6, - ACTIONS(10792), 1, - aux_sym__notification_token1, - ACTIONS(10796), 1, - aux_sym__text_token3, - ACTIONS(10882), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + [174853] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11472), 1, + anon_sym_RPAREN, + ACTIONS(11474), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5400), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4238), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3730), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [178834] = 6, - ACTIONS(10784), 1, + [174880] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10884), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11476), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3710), 3, + STATE(3684), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178857] = 6, - ACTIONS(10792), 1, + [174903] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10886), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11478), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3711), 3, + STATE(3685), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178880] = 6, - ACTIONS(10800), 1, + [174926] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10888), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11480), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3712), 3, + STATE(3611), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178903] = 6, - ACTIONS(10774), 1, + [174949] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10890), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11482), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3713), 3, + STATE(3686), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178926] = 6, - ACTIONS(10784), 1, + [174972] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10892), 1, + ACTIONS(11484), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3731), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178949] = 6, - ACTIONS(10696), 1, + [174995] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10894), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11486), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178972] = 6, - ACTIONS(10774), 1, + [175018] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10896), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11488), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [178995] = 6, - ACTIONS(10800), 1, + [175041] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10898), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11490), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179018] = 6, - ACTIONS(10792), 1, + [175064] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10900), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11492), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179041] = 6, - ACTIONS(10784), 1, + [175087] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10902), 1, + ACTIONS(11494), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3688), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179064] = 6, - ACTIONS(10784), 1, + [175110] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10904), 1, + ACTIONS(11496), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3621), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179087] = 6, - ACTIONS(10792), 1, + [175133] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10906), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11498), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179110] = 6, - ACTIONS(10800), 1, + [175156] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10908), 1, + ACTIONS(11500), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179133] = 6, - ACTIONS(10774), 1, + [175179] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10910), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11502), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179156] = 6, - ACTIONS(10784), 1, + [175202] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10912), 1, + ACTIONS(11504), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179179] = 6, - ACTIONS(10792), 1, + [175225] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10914), 1, + ACTIONS(11506), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4238), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3914), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179202] = 6, - ACTIONS(10774), 1, - aux_sym__notification_token1, - ACTIONS(10778), 1, - aux_sym__text_token3, - ACTIONS(10916), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3752), 3, + STATE(3622), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179225] = 6, - ACTIONS(10800), 1, + [175248] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10918), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4195), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3874), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179248] = 6, - ACTIONS(10774), 1, - aux_sym__notification_token1, - ACTIONS(10778), 1, - aux_sym__text_token3, - ACTIONS(10920), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11508), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3662), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179271] = 6, - ACTIONS(10696), 1, + [175271] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10922), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11510), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3663), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179294] = 6, - ACTIONS(10800), 1, + [175294] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10924), 1, + ACTIONS(11512), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3753), 3, + STATE(3664), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179317] = 6, - ACTIONS(10696), 1, + [175317] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10926), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11514), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3623), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179340] = 6, - ACTIONS(10792), 1, + [175340] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10928), 1, + ACTIONS(11516), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3754), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179363] = 6, - ACTIONS(10784), 1, + [175363] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10930), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11518), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3755), 3, + STATE(3626), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179386] = 6, - ACTIONS(10784), 1, + [175386] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10932), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11520), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3736), 3, + STATE(3665), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179409] = 6, - ACTIONS(10792), 1, + [175409] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10934), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11522), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3737), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179432] = 6, - ACTIONS(10800), 1, - aux_sym__notification_token1, - ACTIONS(10804), 1, - aux_sym__text_token3, - ACTIONS(10936), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + [175432] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11524), 1, + anon_sym_RPAREN, + ACTIONS(11526), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5437), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4195), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3739), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179455] = 6, - ACTIONS(10774), 1, - aux_sym__notification_token1, - ACTIONS(10778), 1, aux_sym__text_token3, - ACTIONS(10938), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4176), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3740), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179478] = 6, - ACTIONS(10696), 1, - aux_sym__notification_token1, - ACTIONS(10700), 1, - aux_sym__text_token3, - ACTIONS(10940), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + [175459] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11528), 1, + anon_sym_RPAREN, + ACTIONS(11530), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5425), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4270), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3820), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179501] = 6, - ACTIONS(10696), 1, - aux_sym__notification_token1, - ACTIONS(10700), 1, aux_sym__text_token3, - ACTIONS(10942), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4270), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179524] = 6, - ACTIONS(10774), 1, + [175486] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10944), 1, + ACTIONS(11532), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179547] = 6, - ACTIONS(10800), 1, + [175509] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10946), 1, + ACTIONS(11534), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179570] = 6, - ACTIONS(10792), 1, + [175532] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10948), 1, + ACTIONS(11536), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179593] = 6, - ACTIONS(10784), 1, - aux_sym__notification_token1, - ACTIONS(10788), 1, - aux_sym__text_token3, - ACTIONS(10950), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + [175555] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11538), 1, + anon_sym_RPAREN, + ACTIONS(11540), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5430), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4201), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179616] = 6, - ACTIONS(10774), 1, + [175582] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10952), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11542), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179639] = 6, - ACTIONS(10800), 1, + [175605] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(10954), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11544), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179662] = 6, - ACTIONS(10792), 1, - aux_sym__notification_token1, - ACTIONS(10796), 1, - aux_sym__text_token3, - ACTIONS(10956), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + [175628] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11546), 1, + anon_sym_RPAREN, + ACTIONS(11548), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5421), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4238), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179685] = 6, - ACTIONS(10784), 1, - aux_sym__notification_token1, - ACTIONS(10788), 1, - aux_sym__text_token3, - ACTIONS(10958), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + [175655] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11550), 1, + anon_sym_RPAREN, + ACTIONS(11552), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5416), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4201), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179708] = 6, - ACTIONS(10774), 1, + [175682] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10960), 1, + ACTIONS(11554), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3774), 3, + STATE(3961), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179731] = 6, - ACTIONS(10800), 1, + [175705] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10962), 1, + ACTIONS(11556), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3775), 3, + STATE(3960), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179754] = 6, - ACTIONS(10784), 1, + [175728] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10964), 1, + ACTIONS(11558), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179777] = 6, - ACTIONS(10792), 1, + [175751] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10966), 1, + ACTIONS(11560), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3776), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179800] = 6, - ACTIONS(10792), 1, + [175774] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10968), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11562), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3737), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179823] = 6, - ACTIONS(10784), 1, + [175797] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10970), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11564), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3781), 3, + STATE(3738), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179846] = 6, - ACTIONS(10800), 1, + [175820] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10972), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11566), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3739), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179869] = 6, - ACTIONS(10696), 1, + [175843] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10974), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11568), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3740), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179892] = 6, - ACTIONS(10774), 1, + [175866] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10976), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11570), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179915] = 6, - ACTIONS(10784), 1, - aux_sym__notification_token1, - ACTIONS(10788), 1, - aux_sym__text_token3, - ACTIONS(10978), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + [175889] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11572), 1, + anon_sym_RPAREN, + ACTIONS(11574), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5406), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4201), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3732), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [179938] = 6, - ACTIONS(10696), 1, + [175916] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10980), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11576), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179961] = 6, - ACTIONS(10792), 1, + [175939] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10982), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11578), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3733), 3, + STATE(3956), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [179984] = 6, - ACTIONS(10800), 1, + [175962] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10984), 1, + ACTIONS(11580), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3734), 3, + STATE(3762), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180007] = 6, - ACTIONS(10774), 1, + [175985] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(10986), 1, + ACTIONS(11582), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3735), 3, + STATE(3716), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180030] = 6, - ACTIONS(10774), 1, + [176008] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10988), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11584), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3718), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180053] = 6, - ACTIONS(10800), 1, - aux_sym__notification_token1, - ACTIONS(10804), 1, - aux_sym__text_token3, - ACTIONS(10990), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + [176031] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11586), 1, + anon_sym_RPAREN, + ACTIONS(11588), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5402), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [180076] = 6, - ACTIONS(10792), 1, + [176058] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10992), 1, + ACTIONS(11590), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3724), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180099] = 6, - ACTIONS(10784), 1, + [176081] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(10994), 1, + ACTIONS(11592), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3762), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180122] = 6, - ACTIONS(10792), 1, + [176104] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(10996), 1, + ACTIONS(11594), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3764), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180145] = 6, - ACTIONS(10784), 1, + [176127] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(10998), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11596), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180168] = 6, - ACTIONS(10774), 1, + [176150] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11000), 1, + ACTIONS(11598), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3768), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180191] = 6, - ACTIONS(10784), 1, + [176173] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11002), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11600), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180214] = 6, - ACTIONS(10784), 1, + [176196] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11004), 1, + ACTIONS(11602), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4020), 3, + STATE(3727), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180237] = 6, - ACTIONS(10696), 1, + [176219] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11006), 1, + ACTIONS(11604), 1, anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180260] = 6, - ACTIONS(10774), 1, + [176242] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11008), 1, + ACTIONS(11606), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180283] = 6, - ACTIONS(10774), 1, + [176265] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11010), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11608), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3827), 3, + STATE(3709), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180306] = 6, - ACTIONS(10800), 1, + [176288] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11012), 1, + ACTIONS(11610), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3828), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180329] = 6, - ACTIONS(10792), 1, + [176311] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11014), 1, + ACTIONS(11612), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3829), 3, + STATE(3710), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180352] = 6, - ACTIONS(10784), 1, + [176334] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11016), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11614), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3830), 3, + STATE(3711), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180375] = 6, - ACTIONS(10774), 1, + [176357] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11018), 1, + ACTIONS(11616), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3794), 3, + STATE(3712), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180398] = 6, - ACTIONS(10800), 1, + [176380] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11020), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11618), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3795), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180421] = 6, - ACTIONS(10792), 1, + [176403] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11022), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11620), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3805), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180444] = 6, - ACTIONS(10784), 1, + [176426] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11024), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11622), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3806), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180467] = 6, - ACTIONS(10696), 1, + [176449] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11624), 1, + anon_sym_RPAREN, + ACTIONS(11626), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5390), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [176476] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11026), 1, + ACTIONS(11628), 1, anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180490] = 6, - ACTIONS(10774), 1, + [176499] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11028), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11630), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180513] = 6, - ACTIONS(10800), 1, + [176522] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11632), 1, + anon_sym_RPAREN, + ACTIONS(11634), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5385), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [176549] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11030), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11636), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3613), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180536] = 6, - ACTIONS(10784), 1, + [176572] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11032), 1, + ACTIONS(11638), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3776), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180559] = 6, - ACTIONS(10792), 1, + [176595] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11034), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11640), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180582] = 6, - ACTIONS(10800), 1, + [176618] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11036), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11642), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3944), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180605] = 6, - ACTIONS(10774), 1, + [176641] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11038), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11644), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180628] = 6, - ACTIONS(10784), 1, + [176664] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11040), 1, + ACTIONS(11646), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180651] = 6, - ACTIONS(10792), 1, + [176687] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11042), 1, + ACTIONS(11648), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180674] = 6, - ACTIONS(10800), 1, + [176710] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11044), 1, + ACTIONS(11650), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180697] = 6, - ACTIONS(10774), 1, + [176733] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11046), 1, + ACTIONS(11652), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180720] = 6, - ACTIONS(10696), 1, + [176756] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11048), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11654), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180743] = 6, - ACTIONS(10792), 1, + [176779] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11050), 1, + ACTIONS(11656), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180766] = 6, - ACTIONS(10784), 1, + [176802] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11052), 1, + ACTIONS(11658), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180789] = 6, - ACTIONS(10800), 1, + [176825] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11054), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11660), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180812] = 6, - ACTIONS(10774), 1, + [176848] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11056), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11662), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3678), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180835] = 6, - ACTIONS(10784), 1, + [176871] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11058), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11664), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3800), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180858] = 6, - ACTIONS(10792), 1, + [176894] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11060), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11666), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3801), 3, + STATE(3837), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180881] = 6, - ACTIONS(10800), 1, + [176917] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11062), 1, + ACTIONS(11668), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3802), 3, + STATE(3751), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180904] = 6, - ACTIONS(10774), 1, + [176940] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11064), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11670), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3803), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180927] = 6, - ACTIONS(10696), 1, + [176963] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11066), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11672), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3753), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180950] = 6, - ACTIONS(10792), 1, + [176986] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11068), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11674), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3754), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180973] = 6, - ACTIONS(10800), 1, + [177009] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11070), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11676), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3821), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [180996] = 6, - ACTIONS(10696), 1, + [177032] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11072), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11678), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3815), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181019] = 6, - ACTIONS(10792), 1, + [177055] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11074), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11680), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3822), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181042] = 6, - ACTIONS(10784), 1, + [177078] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11076), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11682), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3823), 3, + STATE(3880), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181065] = 6, - ACTIONS(10696), 1, + [177101] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11078), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11684), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181088] = 6, - ACTIONS(11080), 1, - anon_sym_ATenderror, - ACTIONS(11082), 1, + [177124] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(11088), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11085), 2, + ACTIONS(11686), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181111] = 6, - ACTIONS(10800), 1, + [177147] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11091), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11688), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3694), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181134] = 6, - ACTIONS(10792), 1, + [177170] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11093), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11690), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3734), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181157] = 6, - ACTIONS(10784), 1, + [177193] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11095), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11692), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3695), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181180] = 6, - ACTIONS(10784), 1, + [177216] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11097), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11694), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3735), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181203] = 6, - ACTIONS(10774), 1, + [177239] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11099), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11696), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3845), 3, + STATE(3736), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181226] = 6, - ACTIONS(10800), 1, + [177262] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11101), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11698), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3847), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181249] = 6, - ACTIONS(10774), 1, + [177285] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11103), 1, + ACTIONS(11700), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3741), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181272] = 6, - ACTIONS(10800), 1, + [177308] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11105), 1, + ACTIONS(11702), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181295] = 6, - ACTIONS(10792), 1, + [177331] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11107), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11704), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3700), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181318] = 6, - ACTIONS(10784), 1, + [177354] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11109), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11706), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3702), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181341] = 6, - ACTIONS(10784), 1, + [177377] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11111), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11708), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181364] = 6, - ACTIONS(10792), 1, + [177400] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11113), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11710), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3874), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181387] = 6, - ACTIONS(10800), 1, + [177423] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11115), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11712), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3808), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181410] = 6, - ACTIONS(10774), 1, + [177446] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11117), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11714), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3809), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181433] = 6, - ACTIONS(10792), 1, + [177469] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11119), 1, + ACTIONS(11716), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3852), 3, + STATE(3810), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181456] = 6, - ACTIONS(10784), 1, + [177492] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11121), 1, + ACTIONS(11718), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3687), 3, + STATE(3811), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181479] = 6, - ACTIONS(10784), 1, + [177515] = 6, + ACTIONS(11316), 1, + anon_sym_ATendfinished, + ACTIONS(11720), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11726), 1, aux_sym__text_token3, - ACTIONS(11123), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11723), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3927), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181502] = 6, - ACTIONS(10784), 1, + [177538] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11125), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11729), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3796), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181525] = 6, - ACTIONS(10792), 1, + [177561] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11127), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11731), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3797), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181548] = 6, - ACTIONS(10800), 1, + [177584] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11129), 1, + ACTIONS(11733), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3798), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181571] = 6, - ACTIONS(10774), 1, + [177607] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11131), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11735), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3799), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181594] = 6, - ACTIONS(10792), 1, + [177630] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11133), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11737), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3686), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181617] = 6, - ACTIONS(11080), 1, - anon_sym_ATendfinished, - ACTIONS(11135), 1, + [177653] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(11141), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11138), 2, + ACTIONS(11739), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3945), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181640] = 6, - ACTIONS(10696), 1, + [177676] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11144), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11741), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3946), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181663] = 6, - ACTIONS(10774), 1, + [177699] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11146), 1, + ACTIONS(11743), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3879), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181686] = 6, - ACTIONS(10784), 1, + [177722] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11148), 1, + ACTIONS(11745), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3831), 3, + STATE(3955), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181709] = 6, - ACTIONS(10800), 1, + [177745] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11150), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11747), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181732] = 6, - ACTIONS(10792), 1, + [177768] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11152), 1, + ACTIONS(11749), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3832), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181755] = 6, - ACTIONS(10800), 1, + [177791] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11154), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11751), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3833), 3, + STATE(3958), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181778] = 6, - ACTIONS(10774), 1, + [177814] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11156), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11753), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3834), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181801] = 6, - ACTIONS(10800), 1, + [177837] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11158), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11755), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3685), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181824] = 6, - ACTIONS(10792), 1, + [177860] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11160), 1, + ACTIONS(11757), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181847] = 6, - ACTIONS(10784), 1, + [177883] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11162), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11759), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181870] = 6, - ACTIONS(10696), 1, + [177906] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11164), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11761), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181893] = 6, - ACTIONS(10800), 1, + [177929] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11166), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11763), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3766), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181916] = 6, - ACTIONS(10774), 1, + [177952] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11168), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11765), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3679), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181939] = 6, - ACTIONS(10792), 1, + [177975] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11170), 1, + ACTIONS(11767), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3883), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181962] = 6, - ACTIONS(10774), 1, + [177998] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11172), 1, + ACTIONS(11769), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3900), 3, + STATE(3804), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [181985] = 6, - ACTIONS(10800), 1, + [178021] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11174), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11771), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3901), 3, + STATE(3785), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182008] = 6, - ACTIONS(10792), 1, + [178044] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11176), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11773), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3902), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182031] = 6, - ACTIONS(10784), 1, + [178067] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11178), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11775), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3903), 3, + STATE(3786), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182054] = 6, - ACTIONS(10800), 1, + [178090] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11180), 1, + ACTIONS(11777), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3787), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182077] = 6, - ACTIONS(10774), 1, + [178113] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11182), 1, + ACTIONS(11779), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3788), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182100] = 6, - ACTIONS(10774), 1, + [178136] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11184), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11781), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3989), 3, + STATE(3907), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182123] = 6, - ACTIONS(10774), 1, + [178159] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11186), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11783), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3876), 3, + STATE(3806), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182146] = 6, - ACTIONS(10800), 1, + [178182] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11188), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11785), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3881), 3, + STATE(3807), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182169] = 6, - ACTIONS(10792), 1, - aux_sym__notification_token1, - ACTIONS(10796), 1, - aux_sym__text_token3, - ACTIONS(11190), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + [178205] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11787), 1, + anon_sym_RPAREN, + ACTIONS(11789), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5379), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4238), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3883), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [182192] = 6, - ACTIONS(10784), 1, + [178232] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11192), 1, + ACTIONS(11791), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3812), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182215] = 6, - ACTIONS(10784), 1, + [178255] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11194), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11793), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3885), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182238] = 6, - ACTIONS(10792), 1, + [178278] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11196), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11795), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182261] = 6, - ACTIONS(10800), 1, + [178301] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11797), 1, + anon_sym_RPAREN, + ACTIONS(11799), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5375), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [178328] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11198), 1, + ACTIONS(11801), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182284] = 6, - ACTIONS(10774), 1, + [178351] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11200), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11803), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182307] = 6, - ACTIONS(10696), 1, + [178374] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11202), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11805), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182330] = 6, - ACTIONS(11080), 1, - anon_sym_ATendafter, - ACTIONS(11204), 1, + [178397] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(11210), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11207), 2, + ACTIONS(11807), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182353] = 6, - ACTIONS(10696), 1, + [178420] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11213), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11809), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182376] = 6, - ACTIONS(10774), 1, + [178443] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11215), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11811), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182399] = 6, - ACTIONS(10784), 1, + [178466] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11217), 1, + ACTIONS(11813), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3868), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182422] = 6, - ACTIONS(10792), 1, + [178489] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11219), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11815), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3870), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182445] = 6, - ACTIONS(10800), 1, + [178512] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11221), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11817), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3871), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182468] = 6, - ACTIONS(10774), 1, + [178535] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11223), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11819), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3872), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182491] = 6, - ACTIONS(10800), 1, - aux_sym__notification_token1, - ACTIONS(10804), 1, - aux_sym__text_token3, - ACTIONS(11225), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + [178558] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11821), 1, + anon_sym_RPAREN, + ACTIONS(11823), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5439), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [182514] = 6, - ACTIONS(10800), 1, - aux_sym__notification_token1, - ACTIONS(10804), 1, + [178585] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11825), 1, + anon_sym_RPAREN, + ACTIONS(11827), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5365), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, aux_sym__text_token3, - ACTIONS(11227), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [178612] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11829), 1, + anon_sym_RPAREN, + ACTIONS(11831), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5359), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4002), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [182537] = 6, - ACTIONS(10792), 1, + [178639] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11229), 1, + ACTIONS(11833), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182560] = 6, - ACTIONS(10696), 1, + [178662] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11231), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11835), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182583] = 6, - ACTIONS(10784), 1, + [178685] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11233), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11837), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182606] = 6, - ACTIONS(10696), 1, - aux_sym__notification_token1, - ACTIONS(10700), 1, + [178708] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11839), 1, + anon_sym_RPAREN, + ACTIONS(11841), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5420), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, aux_sym__text_token3, - ACTIONS(11235), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [178735] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11843), 1, + anon_sym_RPAREN, + ACTIONS(11845), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5349), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4270), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [182629] = 6, - ACTIONS(10792), 1, + [178762] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11237), 1, + ACTIONS(11847), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4017), 3, + STATE(3743), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182652] = 6, - ACTIONS(10774), 1, + [178785] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11239), 1, + ACTIONS(11849), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3893), 3, + STATE(3833), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182675] = 6, - ACTIONS(10800), 1, + [178808] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11241), 1, + ACTIONS(11851), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3899), 3, + STATE(3834), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182698] = 6, - ACTIONS(10792), 1, + [178831] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11243), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11853), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3904), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182721] = 6, - ACTIONS(10784), 1, + [178854] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11245), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11855), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3905), 3, + STATE(3851), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182744] = 6, - ACTIONS(10696), 1, + [178877] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11247), 1, + ACTIONS(11857), 1, anon_sym_ATenderror, - ACTIONS(10698), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4270), 2, - sym__text, - aux_sym_php_only_repeat1, - STATE(3820), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [182767] = 6, - ACTIONS(10774), 1, - aux_sym__notification_token1, - ACTIONS(10778), 1, - aux_sym__text_token3, - ACTIONS(11249), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182790] = 6, - ACTIONS(10784), 1, + [178900] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11251), 1, + ACTIONS(11859), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3853), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182813] = 6, - ACTIONS(10792), 1, + [178923] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11253), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11861), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3859), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182836] = 6, - ACTIONS(10800), 1, + [178946] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11255), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11863), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182859] = 6, - ACTIONS(10774), 1, + [178969] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11257), 1, + ACTIONS(11865), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182882] = 6, - ACTIONS(10696), 1, + [178992] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11259), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11867), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182905] = 6, - ACTIONS(10800), 1, + [179015] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11261), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11869), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3781), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182928] = 6, - ACTIONS(10774), 1, + [179038] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11263), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11871), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3722), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182951] = 6, - ACTIONS(10800), 1, + [179061] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11265), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11873), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182974] = 6, - ACTIONS(10792), 1, + [179084] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11267), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11875), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3877), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [182997] = 6, - ACTIONS(10784), 1, + [179107] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11269), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11877), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3852), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183020] = 6, - ACTIONS(10792), 1, + [179130] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11271), 1, + ACTIONS(11879), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3881), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183043] = 6, - ACTIONS(10784), 1, + [179153] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11273), 1, + ACTIONS(11881), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3882), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183066] = 6, - ACTIONS(10784), 1, + [179176] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11275), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11883), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3894), 3, + STATE(3819), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183089] = 6, - ACTIONS(10792), 1, + [179199] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11277), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11885), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3895), 3, + STATE(3821), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183112] = 6, - ACTIONS(10784), 1, + [179222] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11279), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11887), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3779), 3, + STATE(3827), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183135] = 6, - ACTIONS(10800), 1, + [179245] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11281), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11889), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3896), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183158] = 6, - ACTIONS(10792), 1, + [179268] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11283), 1, + ACTIONS(11891), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3857), 3, + STATE(3782), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183181] = 6, - ACTIONS(10774), 1, - aux_sym__notification_token1, - ACTIONS(10778), 1, - aux_sym__text_token3, - ACTIONS(11285), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + [179291] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11893), 1, + anon_sym_RPAREN, + ACTIONS(11895), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5317), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4176), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3897), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [183204] = 6, - ACTIONS(10800), 1, + [179318] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11287), 1, + ACTIONS(11897), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3862), 3, + STATE(3784), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183227] = 6, - ACTIONS(10784), 1, + [179341] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11289), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11899), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3694), 3, + STATE(3878), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183250] = 6, - ACTIONS(11080), 1, - anon_sym_ATendsuccess, - ACTIONS(11291), 1, + [179364] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(11297), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11294), 2, + ACTIONS(11901), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3789), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183273] = 6, - ACTIONS(10774), 1, + [179387] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11300), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11903), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3863), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183296] = 6, - ACTIONS(10774), 1, + [179410] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11302), 1, + ACTIONS(11905), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3691), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183319] = 6, - ACTIONS(10800), 1, + [179433] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11304), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11907), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3692), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183342] = 6, - ACTIONS(10774), 1, + [179456] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11306), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11909), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3923), 3, + STATE(3886), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183365] = 6, - ACTIONS(10800), 1, - aux_sym__notification_token1, - ACTIONS(10804), 1, - aux_sym__text_token3, - ACTIONS(11308), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + [179479] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11911), 1, + anon_sym_RPAREN, + ACTIONS(11913), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5347), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4195), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3924), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [183388] = 6, - ACTIONS(10792), 1, - aux_sym__notification_token1, - ACTIONS(10796), 1, - aux_sym__text_token3, - ACTIONS(11310), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + [179506] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(11915), 1, + anon_sym_RPAREN, + ACTIONS(11917), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5339), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4238), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3925), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [183411] = 6, - ACTIONS(10784), 1, + [179533] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11312), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11919), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3926), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183434] = 6, - ACTIONS(10696), 1, + [179556] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11314), 1, + ACTIONS(11921), 1, anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183457] = 6, - ACTIONS(10774), 1, + [179579] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11316), 1, + ACTIONS(11923), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183480] = 6, - ACTIONS(10800), 1, + [179602] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11925), 1, + anon_sym_RPAREN, + ACTIONS(11927), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5337), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [179629] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11318), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11929), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183503] = 6, - ACTIONS(10792), 1, + [179652] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11320), 1, + ACTIONS(11931), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183526] = 6, - ACTIONS(10784), 1, + [179675] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11322), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11933), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183549] = 6, - ACTIONS(10784), 1, + [179698] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11324), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11935), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183572] = 6, - ACTIONS(10792), 1, + [179721] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11326), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11937), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183595] = 6, - ACTIONS(10792), 1, + [179744] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11328), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11939), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3693), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183618] = 6, - ACTIONS(10800), 1, + [179767] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(11941), 1, + anon_sym_RPAREN, + ACTIONS(11943), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5330), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [179794] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11330), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11945), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183641] = 6, - ACTIONS(10774), 1, + [179817] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11332), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11947), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3973), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183664] = 6, - ACTIONS(10800), 1, + [179840] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11334), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11949), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3974), 3, + STATE(3861), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183687] = 6, - ACTIONS(10792), 1, + [179863] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11336), 1, + ACTIONS(11951), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3975), 3, + STATE(3862), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183710] = 6, - ACTIONS(10784), 1, + [179886] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11338), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11953), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3976), 3, + STATE(3863), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183733] = 6, - ACTIONS(10784), 1, + [179909] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11340), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11955), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3864), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183756] = 6, - ACTIONS(10792), 1, + [179932] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11342), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11957), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183779] = 6, - ACTIONS(10800), 1, + [179955] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11344), 1, + ACTIONS(11959), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183802] = 6, - ACTIONS(10774), 1, + [179978] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11346), 1, + ACTIONS(11961), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183825] = 6, - ACTIONS(10696), 1, + [180001] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11348), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11963), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183848] = 6, - ACTIONS(10784), 1, + [180024] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11350), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11965), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183871] = 6, - ACTIONS(10792), 1, + [180047] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11352), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11967), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183894] = 6, - ACTIONS(10800), 1, + [180070] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11354), 1, + ACTIONS(11969), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183917] = 6, - ACTIONS(10774), 1, + [180093] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11356), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11971), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183940] = 6, - ACTIONS(10774), 1, + [180116] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11358), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11973), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183963] = 6, - ACTIONS(10784), 1, + [180139] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11360), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11975), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3935), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [183986] = 6, - ACTIONS(10792), 1, + [180162] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11362), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11977), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3936), 3, + STATE(3892), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184009] = 6, - ACTIONS(10800), 1, + [180185] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11364), 1, + ACTIONS(11979), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3937), 3, + STATE(3895), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184032] = 6, - ACTIONS(10774), 1, + [180208] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11366), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11981), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3938), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184055] = 6, - ACTIONS(11080), 1, - anon_sym_ATendbefore, - ACTIONS(11368), 1, + [180231] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(11374), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11371), 2, + ACTIONS(11983), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3896), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184078] = 8, - ACTIONS(11377), 1, - anon_sym_RPAREN, - ACTIONS(11379), 1, - anon_sym_COMMA, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - STATE(5396), 1, - sym_text, - STATE(5533), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [184105] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11387), 1, - anon_sym_RPAREN, - ACTIONS(11389), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5529), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [184132] = 8, - ACTIONS(11381), 1, + [180254] = 8, + ACTIONS(11375), 1, aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11377), 1, aux_sym__text_token1, - ACTIONS(11391), 1, + ACTIONS(11985), 1, anon_sym_RPAREN, - ACTIONS(11393), 1, + ACTIONS(11987), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5526), 1, + STATE(5328), 1, sym__section_parameter, - ACTIONS(11385), 2, + ACTIONS(11379), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4137), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [184159] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11395), 1, - anon_sym_RPAREN, - ACTIONS(11397), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5519), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + [180281] = 6, + ACTIONS(11316), 1, + anon_sym_ATendsuccess, + ACTIONS(11989), 1, + aux_sym__notification_token1, + ACTIONS(11995), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [184186] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11992), 2, aux_sym__text_token1, - ACTIONS(11399), 1, - anon_sym_RPAREN, - ACTIONS(11401), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5515), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - [184213] = 6, - ACTIONS(10696), 1, + STATE(3889), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180304] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11403), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11998), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3897), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184236] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11405), 1, - anon_sym_RPAREN, - ACTIONS(11407), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5510), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + [180327] = 6, + ACTIONS(11242), 1, + aux_sym__notification_token1, + ACTIONS(11246), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [184263] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12000), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, - ACTIONS(11409), 1, - anon_sym_RPAREN, - ACTIONS(11411), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5507), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - [184290] = 6, - ACTIONS(10696), 1, + STATE(3607), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180350] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11413), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(12002), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184313] = 6, - ACTIONS(10696), 1, + [180373] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11415), 1, + ACTIONS(12004), 1, anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184336] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + [180396] = 6, + ACTIONS(11357), 1, + aux_sym__notification_token1, + ACTIONS(11361), 1, + aux_sym__text_token3, + ACTIONS(12006), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, - ACTIONS(11417), 1, - anon_sym_RPAREN, - ACTIONS(11419), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5505), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - [184363] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3733), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180419] = 6, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, + aux_sym__text_token3, + ACTIONS(12008), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, - ACTIONS(11421), 1, - anon_sym_RPAREN, - ACTIONS(11423), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5500), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, + STATE(4178), 2, + sym__text, + aux_sym_php_only_repeat1, + STATE(3927), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180442] = 6, + ACTIONS(11347), 1, + aux_sym__notification_token1, + ACTIONS(11351), 1, aux_sym__text_token3, - STATE(4137), 2, + ACTIONS(12010), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - [184390] = 6, - ACTIONS(10784), 1, + STATE(3889), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180465] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11425), 1, + ACTIONS(12012), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184413] = 6, - ACTIONS(10792), 1, + [180488] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11427), 1, + ACTIONS(12014), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3746), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184436] = 6, - ACTIONS(10800), 1, + [180511] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11429), 1, + ACTIONS(12016), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3608), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184459] = 6, - ACTIONS(10774), 1, + [180534] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11431), 1, + ACTIONS(12018), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3760), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184482] = 6, - ACTIONS(10696), 1, + [180557] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11433), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(12020), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184505] = 8, - ACTIONS(11381), 1, + [180580] = 8, + ACTIONS(11375), 1, aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11377), 1, aux_sym__text_token1, - ACTIONS(11435), 1, + ACTIONS(12022), 1, anon_sym_RPAREN, - ACTIONS(11437), 1, + ACTIONS(12024), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5495), 1, + STATE(5320), 1, sym__section_parameter, - ACTIONS(11385), 2, + ACTIONS(11379), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4137), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [184532] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + [180607] = 6, + ACTIONS(11347), 1, + aux_sym__notification_token1, + ACTIONS(11351), 1, + aux_sym__text_token3, + ACTIONS(12026), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, - ACTIONS(11439), 1, - anon_sym_RPAREN, - ACTIONS(11441), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5493), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - [184559] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3889), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180630] = 6, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, + aux_sym__text_token3, + ACTIONS(12028), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, - ACTIONS(11443), 1, - anon_sym_RPAREN, - ACTIONS(11445), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5485), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - [184586] = 6, - ACTIONS(10784), 1, + STATE(3927), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180653] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11447), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12030), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3962), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184609] = 6, - ACTIONS(10792), 1, + [180676] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11449), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(12032), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3963), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184632] = 6, - ACTIONS(10800), 1, + [180699] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11451), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12034), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3964), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184655] = 6, - ACTIONS(10774), 1, + [180722] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11453), 1, + ACTIONS(12036), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184678] = 6, - ACTIONS(10800), 1, + [180745] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11455), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12038), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3950), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184701] = 6, - ACTIONS(10792), 1, + [180768] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11457), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(12040), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3951), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184724] = 6, - ACTIONS(10784), 1, + [180791] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11459), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12042), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3952), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184747] = 6, - ACTIONS(10774), 1, + [180814] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11461), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(12044), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3965), 3, + STATE(3953), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184770] = 6, - ACTIONS(10696), 1, + [180837] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11463), 1, + ACTIONS(12046), 1, anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184793] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11465), 1, - anon_sym_RPAREN, - ACTIONS(11467), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5547), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + [180860] = 6, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [184820] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12048), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, - ACTIONS(11469), 1, - anon_sym_RPAREN, - ACTIONS(11471), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5482), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - [184847] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11473), 1, - anon_sym_RPAREN, - ACTIONS(11475), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5480), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + STATE(3927), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180883] = 6, + ACTIONS(11337), 1, + aux_sym__notification_token1, + ACTIONS(11341), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [184874] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12050), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, - ACTIONS(11477), 1, - anon_sym_RPAREN, - ACTIONS(11479), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5475), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - [184901] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3925), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180906] = 6, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, + aux_sym__text_token3, + ACTIONS(12052), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, - ACTIONS(11481), 1, - anon_sym_RPAREN, - ACTIONS(11483), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5473), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - [184928] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3928), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180929] = 6, + ACTIONS(11357), 1, + aux_sym__notification_token1, + ACTIONS(11361), 1, + aux_sym__text_token3, + ACTIONS(12054), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, - ACTIONS(11485), 1, - anon_sym_RPAREN, - ACTIONS(11487), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5471), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - [184955] = 6, - ACTIONS(10784), 1, + STATE(3901), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [180952] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11489), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12056), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3940), 3, + STATE(3934), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [184978] = 6, - ACTIONS(10792), 1, + [180975] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11491), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(12058), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3941), 3, + STATE(3938), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185001] = 6, - ACTIONS(10800), 1, + [180998] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11493), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12060), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3942), 3, + STATE(3903), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185024] = 6, - ACTIONS(10774), 1, + [181021] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11495), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(12062), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3943), 3, + STATE(3904), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185047] = 6, - ACTIONS(10774), 1, + [181044] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11497), 1, + ACTIONS(12064), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3908), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185070] = 8, - ACTIONS(11381), 1, + [181067] = 8, + ACTIONS(11375), 1, aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11377), 1, aux_sym__text_token1, - ACTIONS(11499), 1, + ACTIONS(12066), 1, anon_sym_RPAREN, - ACTIONS(11501), 1, + ACTIONS(12068), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5463), 1, + STATE(5314), 1, sym__section_parameter, - ACTIONS(11385), 2, + ACTIONS(11379), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4137), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [185097] = 6, - ACTIONS(10800), 1, + [181094] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11503), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12070), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3930), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185120] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11505), 1, - anon_sym_RPAREN, - ACTIONS(11507), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5456), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + [181117] = 6, + ACTIONS(11337), 1, + aux_sym__notification_token1, + ACTIONS(11341), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [185147] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12072), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, - ACTIONS(11509), 1, - anon_sym_RPAREN, - ACTIONS(11511), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5451), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - [185174] = 8, - ACTIONS(11381), 1, + STATE(3654), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181140] = 8, + ACTIONS(11375), 1, aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11377), 1, aux_sym__text_token1, - ACTIONS(11513), 1, + ACTIONS(12074), 1, anon_sym_RPAREN, - ACTIONS(11515), 1, + ACTIONS(12076), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5449), 1, + STATE(5302), 1, sym__section_parameter, - ACTIONS(11385), 2, + ACTIONS(11379), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4137), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [185201] = 6, - ACTIONS(10784), 1, + [181167] = 6, + ACTIONS(11316), 1, + anon_sym_ATendafter, + ACTIONS(12078), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(12084), 1, aux_sym__text_token3, - ACTIONS(11517), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12081), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3853), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185224] = 6, - ACTIONS(10792), 1, + [181190] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11519), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(12087), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3928), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185247] = 6, - ACTIONS(10784), 1, + [181213] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11521), 1, + ACTIONS(12089), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3868), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185270] = 6, - ACTIONS(10792), 1, + [181236] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11523), 1, + ACTIONS(12091), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3869), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185293] = 6, - ACTIONS(10800), 1, + [181259] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11525), 1, + ACTIONS(12093), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3875), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185316] = 8, - ACTIONS(11381), 1, + [181282] = 8, + ACTIONS(11375), 1, aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11377), 1, aux_sym__text_token1, - ACTIONS(11527), 1, + ACTIONS(12095), 1, anon_sym_RPAREN, - ACTIONS(11529), 1, + ACTIONS(12097), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5447), 1, + STATE(5300), 1, sym__section_parameter, - ACTIONS(11385), 2, + ACTIONS(11379), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4137), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [185343] = 6, - ACTIONS(10774), 1, + [181309] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11531), 1, + ACTIONS(12099), 1, anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3944), 3, + STATE(3876), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185366] = 6, - ACTIONS(10800), 1, + [181332] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11533), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12101), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185389] = 6, - ACTIONS(10774), 1, + [181355] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11535), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(12103), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185412] = 6, - ACTIONS(10774), 1, + [181378] = 6, + ACTIONS(11242), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11246), 1, aux_sym__text_token3, - ACTIONS(11537), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(12105), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4015), 3, + STATE(3607), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185435] = 6, - ACTIONS(10800), 1, + [181401] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, + aux_sym__text_token1, + ACTIONS(12107), 1, + anon_sym_RPAREN, + ACTIONS(12109), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5367), 1, + sym__section_parameter, + ACTIONS(11379), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4068), 2, + sym__text, + aux_sym_php_only_repeat1, + [181428] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11539), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12111), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4030), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185458] = 6, - ACTIONS(10792), 1, + [181451] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11541), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(12113), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4029), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185481] = 6, - ACTIONS(10784), 1, + [181474] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11543), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12115), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4028), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185504] = 6, - ACTIONS(10696), 1, + [181497] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11545), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(12117), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185527] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + [181520] = 6, + ACTIONS(11337), 1, + aux_sym__notification_token1, + ACTIONS(11341), 1, + aux_sym__text_token3, + ACTIONS(12119), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, - ACTIONS(11547), 1, - anon_sym_RPAREN, - ACTIONS(11549), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5443), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - [185554] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3654), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181543] = 6, + ACTIONS(11242), 1, + aux_sym__notification_token1, + ACTIONS(11246), 1, + aux_sym__text_token3, + ACTIONS(12121), 1, + anon_sym_ATenderror, + ACTIONS(11244), 2, aux_sym__text_token1, - ACTIONS(11551), 1, - anon_sym_RPAREN, - ACTIONS(11553), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5439), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4121), 2, sym__text, aux_sym_php_only_repeat1, - [185581] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3607), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181566] = 6, + ACTIONS(11337), 1, + aux_sym__notification_token1, + ACTIONS(11341), 1, + aux_sym__text_token3, + ACTIONS(12123), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, - ACTIONS(11555), 1, - anon_sym_RPAREN, - ACTIONS(11557), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5436), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - [185608] = 6, - ACTIONS(10784), 1, + STATE(3654), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181589] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11559), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12125), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3997), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185631] = 6, - ACTIONS(10792), 1, + [181612] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11561), 1, + ACTIONS(12127), 1, anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3998), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185654] = 6, - ACTIONS(10800), 1, + [181635] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11563), 1, - anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(12129), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3999), 3, + STATE(3939), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185677] = 6, - ACTIONS(10774), 1, + [181658] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11565), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(12131), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3949), 3, + STATE(3940), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185700] = 6, - ACTIONS(10774), 1, + [181681] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10778), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11567), 1, - anon_sym_ATendbefore, - ACTIONS(10776), 2, + ACTIONS(12133), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4176), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(4003), 3, + STATE(3941), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185723] = 6, - ACTIONS(10792), 1, + [181704] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10796), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11569), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + ACTIONS(12135), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4238), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185746] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + [181727] = 6, + ACTIONS(11329), 1, + aux_sym__notification_token1, + ACTIONS(11333), 1, + aux_sym__text_token3, + ACTIONS(12137), 1, + anon_sym_ATendafter, + ACTIONS(11331), 2, aux_sym__text_token1, - ACTIONS(11571), 1, - anon_sym_RPAREN, - ACTIONS(11573), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5430), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - [185773] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + STATE(3927), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181750] = 6, + ACTIONS(11347), 1, + aux_sym__notification_token1, + ACTIONS(11351), 1, + aux_sym__text_token3, + ACTIONS(12139), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, - ACTIONS(11575), 1, - anon_sym_RPAREN, - ACTIONS(11577), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5428), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - [185800] = 6, - ACTIONS(10784), 1, + STATE(3889), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181773] = 6, + ACTIONS(11357), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11361), 1, aux_sym__text_token3, - ACTIONS(11579), 1, + ACTIONS(12141), 1, anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(11359), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3771), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [185823] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11581), 1, - anon_sym_RPAREN, - ACTIONS(11583), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5424), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + [181796] = 6, + ACTIONS(11337), 1, + aux_sym__notification_token1, + ACTIONS(11341), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [185850] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12143), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, - ACTIONS(11585), 1, - anon_sym_RPAREN, - ACTIONS(11587), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5418), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - [185877] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11589), 1, - anon_sym_RPAREN, - ACTIONS(11591), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5415), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + STATE(3942), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181819] = 6, + ACTIONS(11357), 1, + aux_sym__notification_token1, + ACTIONS(11361), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [185904] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12145), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, - ACTIONS(11593), 1, - anon_sym_RPAREN, - ACTIONS(11595), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5410), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - [185931] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, - aux_sym__text_token1, - ACTIONS(11597), 1, - anon_sym_RPAREN, - ACTIONS(11599), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5408), 1, - sym__section_parameter, - ACTIONS(11385), 2, - aux_sym__text_token2, + STATE(3771), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181842] = 6, + ACTIONS(11357), 1, + aux_sym__notification_token1, + ACTIONS(11361), 1, aux_sym__text_token3, - STATE(4137), 2, - sym__text, - aux_sym_php_only_repeat1, - [185958] = 8, - ACTIONS(11381), 1, - aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(12147), 1, + anon_sym_ATendfinished, + ACTIONS(11359), 2, aux_sym__text_token1, - ACTIONS(11601), 1, - anon_sym_RPAREN, - ACTIONS(11603), 1, - anon_sym_COMMA, - STATE(5396), 1, - sym_text, - STATE(5401), 1, - sym__section_parameter, - ACTIONS(11385), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4137), 2, + STATE(4074), 2, sym__text, aux_sym_php_only_repeat1, - [185985] = 8, - ACTIONS(11381), 1, + STATE(3771), 3, + sym__notification, + sym_php_only, + aux_sym__before_repeat1, + [181865] = 8, + ACTIONS(11375), 1, aux_sym__section_parameter_token1, - ACTIONS(11383), 1, + ACTIONS(11377), 1, aux_sym__text_token1, - ACTIONS(11605), 1, + ACTIONS(12149), 1, anon_sym_RPAREN, - ACTIONS(11607), 1, + ACTIONS(12151), 1, anon_sym_COMMA, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5399), 1, + STATE(5296), 1, sym__section_parameter, - ACTIONS(11385), 2, + ACTIONS(11379), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4137), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [186012] = 6, - ACTIONS(10784), 1, + [181892] = 6, + ACTIONS(11347), 1, aux_sym__notification_token1, - ACTIONS(10788), 1, + ACTIONS(11351), 1, aux_sym__text_token3, - ACTIONS(11609), 1, - anon_sym_ATendfinished, - ACTIONS(10786), 2, + ACTIONS(12153), 1, + anon_sym_ATendsuccess, + ACTIONS(11349), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4201), 2, + STATE(4102), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3843), 3, + STATE(3889), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [186035] = 6, - ACTIONS(10792), 1, - aux_sym__notification_token1, - ACTIONS(10796), 1, - aux_sym__text_token3, - ACTIONS(11611), 1, - anon_sym_ATendsuccess, - ACTIONS(10794), 2, + [181915] = 8, + ACTIONS(11375), 1, + aux_sym__section_parameter_token1, + ACTIONS(11377), 1, aux_sym__text_token1, + ACTIONS(12155), 1, + anon_sym_RPAREN, + ACTIONS(12157), 1, + anon_sym_COMMA, + STATE(4472), 1, + sym_text, + STATE(5343), 1, + sym__section_parameter, + ACTIONS(11379), 2, aux_sym__text_token2, - STATE(4238), 2, + aux_sym__text_token3, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3914), 3, - sym__notification, - sym_php_only, - aux_sym__before_repeat1, - [186058] = 6, - ACTIONS(10800), 1, + [181942] = 6, + ACTIONS(11329), 1, aux_sym__notification_token1, - ACTIONS(10804), 1, + ACTIONS(11333), 1, aux_sym__text_token3, - ACTIONS(11613), 1, + ACTIONS(12159), 1, anon_sym_ATendafter, - ACTIONS(10802), 2, + ACTIONS(11331), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4195), 2, + STATE(4178), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3874), 3, + STATE(3927), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [186081] = 6, - ACTIONS(10696), 1, + [181965] = 6, + ACTIONS(11337), 1, aux_sym__notification_token1, - ACTIONS(10700), 1, + ACTIONS(11341), 1, aux_sym__text_token3, - ACTIONS(11615), 1, - anon_sym_ATenderror, - ACTIONS(10698), 2, + ACTIONS(12161), 1, + anon_sym_ATendbefore, + ACTIONS(11339), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4270), 2, + STATE(4084), 2, sym__text, aux_sym_php_only_repeat1, - STATE(3820), 3, + STATE(3654), 3, sym__notification, sym_php_only, aux_sym__before_repeat1, - [186104] = 7, - ACTIONS(11617), 1, + [181988] = 7, + ACTIONS(12163), 1, anon_sym_RPAREN, - ACTIONS(11619), 1, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6658), 1, + STATE(6395), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [186128] = 7, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - ACTIONS(11625), 1, - anon_sym_ATendphp, - ACTIONS(11629), 1, - aux_sym__text_token3, - STATE(1812), 1, - sym__directive_parameter, - STATE(6797), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186152] = 7, - ACTIONS(11619), 1, + [182012] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11631), 1, + ACTIONS(12171), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6811), 1, + STATE(6037), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186176] = 7, - ACTIONS(11619), 1, + [182036] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11633), 1, + ACTIONS(12173), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5681), 1, + STATE(6560), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186200] = 7, - ACTIONS(11619), 1, + [182060] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11635), 1, + ACTIONS(12175), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6818), 1, + STATE(6562), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186224] = 7, - ACTIONS(11619), 1, + [182084] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11637), 1, + ACTIONS(12177), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6742), 1, + STATE(5600), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186248] = 7, - ACTIONS(10126), 1, + [182108] = 7, + ACTIONS(11160), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11639), 1, + ACTIONS(12179), 1, anon_sym_ATendphp, - STATE(3291), 1, + ACTIONS(12183), 1, + aux_sym__text_token3, + STATE(2432), 1, sym__directive_parameter, - STATE(6187), 1, + STATE(5961), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186272] = 7, - ACTIONS(11619), 1, + [182132] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11641), 1, + ACTIONS(12185), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6735), 1, + STATE(5602), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [186296] = 7, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11643), 1, - anon_sym_ATendphp, - STATE(1897), 1, - sym__directive_parameter, - STATE(6712), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186320] = 7, - ACTIONS(11619), 1, + [182156] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11645), 1, + ACTIONS(12187), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6722), 1, + STATE(5596), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186344] = 7, - ACTIONS(10478), 1, + [182180] = 7, + ACTIONS(10930), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11647), 1, + ACTIONS(12189), 1, anon_sym_ATendphp, - STATE(3329), 1, + STATE(3376), 1, sym__directive_parameter, - STATE(6736), 1, + STATE(5569), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186368] = 7, - ACTIONS(10624), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11649), 1, - anon_sym_ATendphp, - STATE(2208), 1, - sym__directive_parameter, - STATE(6659), 1, - sym_php_only, - ACTIONS(11627), 2, + [182204] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, aux_sym__text_token1, + ACTIONS(12191), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(6509), 1, + sym__section_parameter, + ACTIONS(12169), 2, aux_sym__text_token2, - STATE(4295), 2, + aux_sym__text_token3, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186392] = 7, - ACTIONS(11619), 1, + [182228] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11651), 1, + ACTIONS(12193), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6691), 1, + STATE(6561), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186416] = 7, - ACTIONS(9956), 1, + [182252] = 7, + ACTIONS(10586), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11653), 1, + ACTIONS(12195), 1, anon_sym_ATendphp, - STATE(1727), 1, + STATE(1262), 1, sym__directive_parameter, - STATE(6713), 1, + STATE(6569), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186440] = 7, - ACTIONS(11619), 1, + [182276] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11655), 1, + ACTIONS(12197), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6673), 1, + STATE(6503), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186464] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, - aux_sym__text_token1, - ACTIONS(11657), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6661), 1, - sym__section_parameter, - ACTIONS(11623), 2, - aux_sym__text_token2, + [182300] = 7, + ACTIONS(10510), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [186488] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12199), 1, + anon_sym_ATendphp, + STATE(1692), 1, + sym__directive_parameter, + STATE(6491), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11659), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6666), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186512] = 7, - ACTIONS(11619), 1, + [182324] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11661), 1, + ACTIONS(12201), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6653), 1, + STATE(5978), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186536] = 7, - ACTIONS(9944), 1, + [182348] = 7, + ACTIONS(11100), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11663), 1, + ACTIONS(12203), 1, anon_sym_ATendphp, - STATE(1259), 1, + STATE(3088), 1, sym__directive_parameter, - STATE(6632), 1, + STATE(5549), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186560] = 7, - ACTIONS(11619), 1, + [182372] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11665), 1, + ACTIONS(12205), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6579), 1, + STATE(5733), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186584] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + [182396] = 7, + ACTIONS(11198), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12207), 1, + anon_sym_ATendphp, + STATE(2014), 1, + sym__directive_parameter, + STATE(6488), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11667), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6573), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186608] = 7, - ACTIONS(11619), 1, + [182420] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11669), 1, + ACTIONS(12209), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6442), 1, + STATE(5531), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [186632] = 7, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11671), 1, - anon_sym_ATendphp, - STATE(1167), 1, - sym__directive_parameter, - STATE(6549), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186656] = 7, - ACTIONS(10326), 1, + [182444] = 7, + ACTIONS(11098), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11673), 1, + ACTIONS(12211), 1, anon_sym_ATendphp, - STATE(3409), 1, + STATE(3207), 1, sym__directive_parameter, - STATE(6556), 1, + STATE(6077), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186680] = 7, - ACTIONS(11619), 1, + [182468] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11675), 1, + ACTIONS(12213), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6497), 1, + STATE(6454), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186704] = 7, - ACTIONS(11619), 1, + [182492] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11677), 1, + ACTIONS(12215), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6489), 1, + STATE(6455), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186728] = 7, - ACTIONS(11619), 1, + [182516] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11679), 1, + ACTIONS(12217), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6498), 1, + STATE(6563), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186752] = 7, - ACTIONS(11619), 1, + [182540] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11681), 1, + ACTIONS(12219), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6378), 1, + STATE(6453), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186776] = 7, - ACTIONS(11619), 1, + [182564] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11683), 1, + ACTIONS(12221), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6491), 1, + STATE(6399), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186800] = 7, - ACTIONS(9978), 1, + [182588] = 7, + ACTIONS(11112), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11685), 1, + ACTIONS(12223), 1, anon_sym_ATendphp, - STATE(1071), 1, + STATE(3006), 1, sym__directive_parameter, - STATE(6467), 1, + STATE(5478), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186824] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + [182612] = 7, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12225), 1, + anon_sym_ATendphp, + STATE(1775), 1, + sym__directive_parameter, + STATE(6439), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11687), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6412), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186848] = 7, - ACTIONS(11619), 1, + [182636] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11689), 1, + ACTIONS(12227), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6405), 1, + STATE(5464), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [186872] = 7, - ACTIONS(10622), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11691), 1, - anon_sym_ATendphp, - STATE(2235), 1, - sym__directive_parameter, - STATE(6382), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186896] = 7, - ACTIONS(9970), 1, + [182660] = 7, + ACTIONS(11166), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11693), 1, + ACTIONS(12229), 1, anon_sym_ATendphp, - STATE(1642), 1, + STATE(2350), 1, sym__directive_parameter, - STATE(6425), 1, + STATE(6027), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [186920] = 7, - ACTIONS(11619), 1, + [182684] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11695), 1, + ACTIONS(12231), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6323), 1, + STATE(5466), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186944] = 7, - ACTIONS(11619), 1, + [182708] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11697), 1, + ACTIONS(12233), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6485), 1, + STATE(6624), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186968] = 7, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11699), 1, - anon_sym_ATendphp, - STATE(1287), 1, - sym__directive_parameter, - STATE(5758), 1, - sym_php_only, - ACTIONS(11627), 2, + [182732] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, aux_sym__text_token1, + ACTIONS(12235), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5463), 1, + sym__section_parameter, + ACTIONS(12169), 2, aux_sym__text_token2, - STATE(4295), 2, + aux_sym__text_token3, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [186992] = 7, - ACTIONS(11619), 1, + [182756] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11701), 1, + ACTIONS(12237), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6322), 1, + STATE(5462), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187016] = 7, - ACTIONS(10142), 1, + [182780] = 7, + ACTIONS(10596), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11703), 1, + ACTIONS(12239), 1, anon_sym_ATendphp, - STATE(3533), 1, + STATE(758), 1, sym__directive_parameter, - STATE(6270), 1, + STATE(5615), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187040] = 7, - ACTIONS(11619), 1, + [182804] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11705), 1, + ACTIONS(12241), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6317), 1, + STATE(6389), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [187064] = 7, - ACTIONS(10630), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11707), 1, - anon_sym_ATendphp, - STATE(3277), 1, - sym__directive_parameter, - STATE(6339), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187088] = 7, - ACTIONS(10620), 1, + [182828] = 7, + ACTIONS(10500), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11709), 1, + ACTIONS(12243), 1, anon_sym_ATendphp, - STATE(2319), 1, + STATE(1858), 1, sym__directive_parameter, - STATE(6291), 1, + STATE(6379), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187112] = 7, - ACTIONS(11619), 1, + [182852] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11711), 1, + ACTIONS(12245), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6304), 1, + STATE(6276), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187136] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + [182876] = 7, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12247), 1, + anon_sym_ATendphp, + STATE(2100), 1, + sym__directive_parameter, + STATE(6384), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11713), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6299), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187160] = 7, - ACTIONS(11619), 1, + [182900] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11715), 1, + ACTIONS(12249), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6233), 1, + STATE(5974), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187184] = 7, - ACTIONS(11619), 1, + [182924] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11717), 1, + ACTIONS(12251), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6226), 1, + STATE(6350), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187208] = 7, - ACTIONS(10618), 1, + [182948] = 7, + ACTIONS(11118), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11719), 1, + ACTIONS(12253), 1, anon_sym_ATendphp, - STATE(2403), 1, + STATE(2924), 1, sym__directive_parameter, - STATE(6201), 1, + STATE(5590), 1, sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, - sym__text, - aux_sym_php_only_repeat1, - [187232] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11721), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6144), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187256] = 7, - ACTIONS(11619), 1, + [182972] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11723), 1, + ACTIONS(12255), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6136), 1, + STATE(5608), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [187280] = 7, - ACTIONS(10612), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11725), 1, - anon_sym_ATendphp, - STATE(2487), 1, - sym__directive_parameter, - STATE(6112), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187304] = 7, - ACTIONS(10006), 1, + [182996] = 7, + ACTIONS(10492), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11727), 1, + ACTIONS(12257), 1, anon_sym_ATendphp, - STATE(995), 1, + STATE(1524), 1, sym__directive_parameter, - STATE(6138), 1, + STATE(6578), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187328] = 7, - ACTIONS(11619), 1, + [183020] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11729), 1, + ACTIONS(12259), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6086), 1, + STATE(5670), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187352] = 7, - ACTIONS(11619), 1, + [183044] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11731), 1, + ACTIONS(12261), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5593), 1, + STATE(5614), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187376] = 7, - ACTIONS(11619), 1, + [183068] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11733), 1, + ACTIONS(12263), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6094), 1, + STATE(6342), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, - sym__text, - aux_sym_php_only_repeat1, - [187400] = 7, - ACTIONS(9938), 1, - anon_sym_LPAREN2, - ACTIONS(11629), 1, - aux_sym__text_token3, - ACTIONS(11735), 1, - anon_sym_ATendphp, - STATE(1555), 1, - sym__directive_parameter, - STATE(6117), 1, - sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187424] = 7, - ACTIONS(11619), 1, + [183092] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11737), 1, + ACTIONS(12265), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6070), 1, + STATE(6336), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187448] = 7, - ACTIONS(10638), 1, + [183116] = 7, + ACTIONS(10594), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11739), 1, + ACTIONS(12267), 1, anon_sym_ATendphp, - STATE(2121), 1, + STATE(1358), 1, sym__directive_parameter, - STATE(6035), 1, + STATE(6325), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187472] = 7, - ACTIONS(11619), 1, + [183140] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11741), 1, + ACTIONS(12269), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6066), 1, + STATE(6617), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187496] = 7, - ACTIONS(11619), 1, + [183164] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11743), 1, + ACTIONS(12271), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6053), 1, + STATE(6282), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187520] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + [183188] = 7, + ACTIONS(11124), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12273), 1, + anon_sym_ATendphp, + STATE(2842), 1, + sym__directive_parameter, + STATE(5655), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11745), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(6060), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187544] = 7, - ACTIONS(11619), 1, + [183212] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11747), 1, + ACTIONS(12275), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6045), 1, + STATE(6349), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187568] = 7, - ACTIONS(10606), 1, + [183236] = 7, + ACTIONS(10518), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11749), 1, + ACTIONS(12277), 1, anon_sym_ATendphp, - STATE(2571), 1, + STATE(1609), 1, sym__directive_parameter, - STATE(6021), 1, + STATE(6552), 1, sym_php_only, - ACTIONS(11627), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4295), 2, - sym__text, - aux_sym_php_only_repeat1, - [187592] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11751), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(5965), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187616] = 7, - ACTIONS(11619), 1, + [183260] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11753), 1, + ACTIONS(12279), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5956), 1, + STATE(5603), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187640] = 7, - ACTIONS(10600), 1, + [183284] = 7, + ACTIONS(11138), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11755), 1, + ACTIONS(12281), 1, anon_sym_ATendphp, - STATE(2655), 1, + STATE(2444), 1, sym__directive_parameter, - STATE(5933), 1, + STATE(6275), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187664] = 7, - ACTIONS(11619), 1, + [183308] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11757), 1, + ACTIONS(12283), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5744), 1, + STATE(5669), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [183332] = 7, + ACTIONS(10544), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12285), 1, + anon_sym_ATendphp, + STATE(847), 1, + sym__directive_parameter, + STATE(5678), 1, + sym_php_only, + ACTIONS(12181), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187688] = 7, - ACTIONS(11619), 1, + [183356] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11759), 1, + ACTIONS(12287), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5727), 1, + STATE(5672), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187712] = 7, - ACTIONS(9990), 1, + [183380] = 7, + ACTIONS(10512), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11761), 1, + ACTIONS(12289), 1, anon_sym_ATendphp, - STATE(863), 1, + STATE(1163), 1, sym__directive_parameter, - STATE(6018), 1, + STATE(6270), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4192), 2, + sym__text, + aux_sym_php_only_repeat1, + [183404] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, aux_sym__text_token1, + ACTIONS(12291), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5671), 1, + sym__section_parameter, + ACTIONS(12169), 2, aux_sym__text_token2, - STATE(4295), 2, + aux_sym__text_token3, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187736] = 7, - ACTIONS(11619), 1, + [183428] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11763), 1, + ACTIONS(12293), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5875), 1, + STATE(6267), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187760] = 7, - ACTIONS(11619), 1, + [183452] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11765), 1, + ACTIONS(12295), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5869), 1, + STATE(6343), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187784] = 7, - ACTIONS(11619), 1, + [183476] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11767), 1, + ACTIONS(12297), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5738), 1, + STATE(6228), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187808] = 7, - ACTIONS(10594), 1, + [183500] = 7, + ACTIONS(11130), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11769), 1, + ACTIONS(12299), 1, anon_sym_ATendphp, - STATE(2739), 1, + STATE(2760), 1, sym__directive_parameter, - STATE(5843), 1, + STATE(5715), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187832] = 7, - ACTIONS(11619), 1, + [183524] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11771), 1, + ACTIONS(12301), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5856), 1, + STATE(5729), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187856] = 7, - ACTIONS(11619), 1, - aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + [183548] = 7, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12303), 1, + anon_sym_ATendphp, + STATE(1439), 1, + sym__directive_parameter, + STATE(6665), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11773), 1, - anon_sym_RPAREN, - STATE(5396), 1, - sym_text, - STATE(5591), 1, - sym__section_parameter, - ACTIONS(11623), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4186), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [187880] = 7, - ACTIONS(11619), 1, + [183572] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11775), 1, + ACTIONS(12305), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5851), 1, + STATE(5794), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187904] = 7, - ACTIONS(11619), 1, + [183596] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11777), 1, + ACTIONS(12307), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5914), 1, + STATE(6224), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187928] = 7, - ACTIONS(11619), 1, + [183620] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11779), 1, + ACTIONS(12309), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5786), 1, + STATE(6705), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187952] = 7, - ACTIONS(11619), 1, + [183644] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11781), 1, + ACTIONS(12311), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5779), 1, + STATE(5734), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [187976] = 7, - ACTIONS(9988), 1, + [183668] = 7, + ACTIONS(10998), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11783), 1, + ACTIONS(12313), 1, anon_sym_ATendphp, - STATE(1468), 1, + STATE(3523), 1, sym__directive_parameter, - STATE(5852), 1, + STATE(6173), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188000] = 7, - ACTIONS(10588), 1, + [183692] = 7, + ACTIONS(10524), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11785), 1, + ACTIONS(12315), 1, anon_sym_ATendphp, - STATE(2823), 1, + STATE(1076), 1, sym__directive_parameter, - STATE(6847), 1, + STATE(6213), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188024] = 7, - ACTIONS(11619), 1, + [183716] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11787), 1, + ACTIONS(12317), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5776), 1, + STATE(6165), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188048] = 7, - ACTIONS(10144), 1, + [183740] = 7, + ACTIONS(11136), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11789), 1, + ACTIONS(12319), 1, anon_sym_ATendphp, - STATE(3501), 1, + STATE(2678), 1, sym__directive_parameter, - STATE(5654), 1, + STATE(5777), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188072] = 7, - ACTIONS(11619), 1, + [183764] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11791), 1, + ACTIONS(12321), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6721), 1, + STATE(6704), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188096] = 7, - ACTIONS(11619), 1, + [183788] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11793), 1, + ACTIONS(12323), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6347), 1, + STATE(6161), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188120] = 7, - ACTIONS(10564), 1, + [183812] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, + aux_sym__text_token1, + ACTIONS(12325), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5790), 1, + sym__section_parameter, + ACTIONS(12169), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [183836] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, + aux_sym__text_token1, + ACTIONS(12327), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5795), 1, + sym__section_parameter, + ACTIONS(12169), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [183860] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, + aux_sym__text_token1, + ACTIONS(12329), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5797), 1, + sym__section_parameter, + ACTIONS(12169), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [183884] = 7, + ACTIONS(11004), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11795), 1, + ACTIONS(12331), 1, anon_sym_ATendphp, - STATE(3159), 1, + STATE(3389), 1, sym__directive_parameter, - STATE(5691), 1, + STATE(6164), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188144] = 7, - ACTIONS(11619), 1, + [183908] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11797), 1, + ACTIONS(12333), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(6397), 1, + STATE(6669), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188168] = 7, - ACTIONS(10582), 1, + [183932] = 7, + ACTIONS(11180), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11799), 1, + ACTIONS(12335), 1, anon_sym_ATendphp, - STATE(2907), 1, + STATE(2186), 1, sym__directive_parameter, - STATE(6303), 1, + STATE(6154), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188192] = 7, - ACTIONS(10056), 1, + [183956] = 7, + ACTIONS(10566), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11801), 1, + ACTIONS(12337), 1, anon_sym_ATendphp, - STATE(777), 1, + STATE(1351), 1, sym__directive_parameter, - STATE(6335), 1, + STATE(6701), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188216] = 7, - ACTIONS(11619), 1, + [183980] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11803), 1, + ACTIONS(12339), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5888), 1, + STATE(5801), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [184004] = 7, + ACTIONS(10494), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12341), 1, + anon_sym_ATendphp, + STATE(975), 1, + sym__directive_parameter, + STATE(5839), 1, + sym_php_only, + ACTIONS(12181), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188240] = 7, - ACTIONS(11619), 1, + [184028] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11805), 1, + ACTIONS(12343), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5945), 1, + STATE(6159), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188264] = 7, - ACTIONS(11619), 1, + [184052] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11807), 1, + ACTIONS(12345), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5671), 1, + STATE(6158), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188288] = 7, - ACTIONS(11619), 1, + [184076] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11809), 1, + ACTIONS(12347), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5859), 1, + STATE(6106), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188312] = 7, - ACTIONS(11619), 1, + [184100] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11811), 1, + ACTIONS(12349), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5889), 1, + STATE(6100), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188336] = 7, - ACTIONS(10650), 1, + [184124] = 7, + ACTIONS(11144), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11813), 1, + ACTIONS(12351), 1, anon_sym_ATendphp, - STATE(2040), 1, + STATE(2596), 1, sym__directive_parameter, - STATE(6474), 1, + STATE(5836), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188360] = 7, - ACTIONS(11619), 1, + [184148] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11815), 1, + ACTIONS(12353), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5666), 1, + STATE(5847), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [184172] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, + aux_sym__text_token1, + ACTIONS(12355), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5854), 1, + sym__section_parameter, + ACTIONS(12169), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188384] = 7, - ACTIONS(10576), 1, + [184196] = 7, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11817), 1, + ACTIONS(12357), 1, anon_sym_ATendphp, - STATE(2991), 1, + STATE(2268), 1, sym__directive_parameter, - STATE(5668), 1, + STATE(6066), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188408] = 7, - ACTIONS(11619), 1, + [184220] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11819), 1, + ACTIONS(12359), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5661), 1, + STATE(6039), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188432] = 7, - ACTIONS(10570), 1, + [184244] = 7, + ACTIONS(10840), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11821), 1, + ACTIONS(12361), 1, anon_sym_ATendphp, - STATE(3075), 1, + STATE(3351), 1, sym__directive_parameter, - STATE(5619), 1, + STATE(6049), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188456] = 7, - ACTIONS(11619), 1, + [184268] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11823), 1, + ACTIONS(12363), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5601), 1, + STATE(6668), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, + sym__text, + aux_sym_php_only_repeat1, + [184292] = 7, + ACTIONS(12165), 1, + aux_sym__section_parameter_token1, + ACTIONS(12167), 1, + aux_sym__text_token1, + ACTIONS(12365), 1, + anon_sym_RPAREN, + STATE(4472), 1, + sym_text, + STATE(5525), 1, + sym__section_parameter, + ACTIONS(12169), 2, + aux_sym__text_token2, + aux_sym__text_token3, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188480] = 7, - ACTIONS(10008), 1, + [184316] = 7, + ACTIONS(11154), 1, anon_sym_LPAREN2, - ACTIONS(11629), 1, + ACTIONS(12183), 1, aux_sym__text_token3, - ACTIONS(11825), 1, + ACTIONS(12367), 1, anon_sym_ATendphp, - STATE(1378), 1, + STATE(2514), 1, sym__directive_parameter, - STATE(5603), 1, + STATE(5900), 1, sym_php_only, - ACTIONS(11627), 2, + ACTIONS(12181), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4295), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - [188504] = 7, - ACTIONS(11619), 1, + [184340] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11827), 1, + ACTIONS(12369), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5660), 1, + STATE(5914), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188528] = 7, - ACTIONS(11619), 1, + [184364] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11829), 1, + ACTIONS(12371), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5665), 1, + STATE(5913), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188552] = 7, - ACTIONS(11619), 1, + [184388] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11831), 1, + ACTIONS(12373), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5663), 1, + STATE(6036), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188576] = 7, - ACTIONS(11619), 1, + [184412] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11833), 1, + ACTIONS(12375), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5826), 1, + STATE(6038), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188600] = 7, - ACTIONS(11619), 1, + [184436] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - ACTIONS(11621), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11835), 1, + ACTIONS(12377), 1, anon_sym_RPAREN, - STATE(5396), 1, + STATE(4472), 1, sym_text, - STATE(5595), 1, + STATE(5918), 1, sym__section_parameter, - ACTIONS(11623), 2, + ACTIONS(12169), 2, aux_sym__text_token2, aux_sym__text_token3, - STATE(4186), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188624] = 4, - ACTIONS(11837), 1, + [184460] = 7, + ACTIONS(11204), 1, + anon_sym_LPAREN2, + ACTIONS(12183), 1, + aux_sym__text_token3, + ACTIONS(12379), 1, + anon_sym_ATendphp, + STATE(3204), 1, + sym__directive_parameter, + STATE(5857), 1, + sym_php_only, + ACTIONS(12181), 2, aux_sym__text_token1, - ACTIONS(11839), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4138), 2, + STATE(4192), 2, sym__text, aux_sym_php_only_repeat1, - ACTIONS(9958), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [184484] = 7, + ACTIONS(12165), 1, aux_sym__section_parameter_token1, - [188641] = 4, - ACTIONS(11841), 1, + ACTIONS(12167), 1, aux_sym__text_token1, - ACTIONS(11844), 2, - aux_sym__text_token2, - aux_sym__text_token3, - STATE(4138), 2, - sym__text, - aux_sym_php_only_repeat1, - ACTIONS(9946), 3, + ACTIONS(12381), 1, anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym__section_parameter_token1, - [188658] = 5, - ACTIONS(11847), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - ACTIONS(11851), 1, - aux_sym__text_token2, - STATE(5824), 1, + STATE(4472), 1, sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [188676] = 5, - ACTIONS(11853), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(11857), 1, + STATE(5919), 1, + sym__section_parameter, + ACTIONS(12169), 2, aux_sym__text_token2, - STATE(6546), 1, - sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [188694] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(11859), 1, - anon_sym_RBRACE_RBRACE, - STATE(5734), 1, - sym_php_only, - ACTIONS(11855), 2, + [184508] = 4, + ACTIONS(12383), 1, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, - sym__text, - aux_sym_php_only_repeat1, - [188712] = 5, - ACTIONS(11857), 1, + ACTIONS(12386), 2, aux_sym__text_token2, - ACTIONS(11861), 1, - anon_sym_RBRACE_RBRACE, - STATE(6281), 1, - sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4067), 2, sym__text, aux_sym_php_only_repeat1, - [188730] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11863), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5676), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(10534), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym__section_parameter_token1, + [184525] = 4, + ACTIONS(12389), 1, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [188748] = 5, - ACTIONS(11865), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(11869), 1, + ACTIONS(12391), 2, aux_sym__text_token2, - STATE(6798), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4067), 2, sym__text, aux_sym_php_only_repeat1, - [188766] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(11871), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6249), 1, + ACTIONS(10502), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym__section_parameter_token1, + [184542] = 5, + ACTIONS(12393), 1, + anon_sym_ATendsetup, + ACTIONS(12397), 1, + aux_sym__text_token3, + STATE(6296), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12395), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [188784] = 5, - ACTIONS(11851), 1, aux_sym__text_token2, - ACTIONS(11873), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5606), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [188802] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(11875), 1, + [184560] = 5, + ACTIONS(12399), 1, anon_sym_RBRACE_RBRACE, - STATE(5605), 1, + ACTIONS(12403), 1, + aux_sym__text_token2, + STATE(6215), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [188820] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(11877), 1, + [184578] = 5, + ACTIONS(12405), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5604), 1, + ACTIONS(12409), 1, + aux_sym__text_token2, + STATE(6440), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [188838] = 5, - ACTIONS(11857), 1, + [184596] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11879), 1, + ACTIONS(12411), 1, anon_sym_RBRACE_RBRACE, - STATE(6799), 1, + STATE(6459), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, - sym__text, - aux_sym_php_only_repeat1, - [188856] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11881), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6800), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [188874] = 4, - ACTIONS(11886), 1, - aux_sym__text_token3, - ACTIONS(9946), 2, - anon_sym_ATendafter, - aux_sym__notification_token1, - ACTIONS(11883), 2, - aux_sym__text_token1, + [184614] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - STATE(4151), 2, - sym__text, - aux_sym_php_only_repeat1, - [188890] = 5, - ACTIONS(11889), 1, - anon_sym_ATendsetup, - ACTIONS(11893), 1, - aux_sym__text_token3, - STATE(6153), 1, + ACTIONS(12413), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6472), 1, sym_php_only, - ACTIONS(11891), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [188908] = 4, - ACTIONS(11898), 1, - aux_sym__text_token3, - ACTIONS(9946), 2, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - ACTIONS(11895), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4153), 2, - sym__text, - aux_sym_php_only_repeat1, - [188924] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11901), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6283), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [188942] = 5, - ACTIONS(11893), 1, + [184632] = 4, + ACTIONS(12419), 1, aux_sym__text_token3, - ACTIONS(11903), 1, - anon_sym_ATendsetup, - STATE(5649), 1, - sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12415), 2, + anon_sym_ATendfinished, + aux_sym__notification_token1, + ACTIONS(12417), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [188960] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(11905), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5617), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, + STATE(4118), 2, sym__text, aux_sym_php_only_repeat1, - [188978] = 5, - ACTIONS(11857), 1, + [184648] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11907), 1, + ACTIONS(12421), 1, anon_sym_RBRACE_RBRACE, - STATE(5616), 1, + STATE(6441), 1, sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, - sym__text, - aux_sym_php_only_repeat1, - [188996] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11909), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5615), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [189014] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11911), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6716), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189032] = 5, - ACTIONS(11857), 1, + [184666] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11913), 1, + ACTIONS(12423), 1, anon_sym_RBRACE_RBRACE, - STATE(6715), 1, + STATE(6703), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189050] = 5, - ACTIONS(11869), 1, + [184684] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(11915), 1, + ACTIONS(12425), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6714), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189068] = 4, - ACTIONS(11920), 1, - aux_sym__text_token3, - ACTIONS(9946), 2, - anon_sym_ATendbefore, - aux_sym__notification_token1, - ACTIONS(11917), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4162), 2, - sym__text, - aux_sym_php_only_repeat1, - [189084] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(11923), 1, - anon_sym_ATendsetup, - STATE(6678), 1, + STATE(6702), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12407), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [189102] = 5, - ACTIONS(11893), 1, aux_sym__text_token3, - ACTIONS(11925), 1, - anon_sym_ATendsetup, - STATE(6817), 1, - sym_php_only, - ACTIONS(11891), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189120] = 5, - ACTIONS(11893), 1, + [184702] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11927), 1, + ACTIONS(12427), 1, anon_sym_ATendsetup, - STATE(5580), 1, + STATE(5509), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189138] = 4, - ACTIONS(11932), 1, + [184720] = 4, + ACTIONS(12432), 1, aux_sym__text_token3, - ACTIONS(9946), 2, - anon_sym_ATenderror, + ACTIONS(10534), 2, + anon_sym_ATendbefore, aux_sym__notification_token1, - ACTIONS(11929), 2, + ACTIONS(12429), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4166), 2, + STATE(4079), 2, sym__text, aux_sym_php_only_repeat1, - [189154] = 5, - ACTIONS(11869), 1, + [184736] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(11935), 1, + ACTIONS(12435), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5675), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189172] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(11937), 1, - anon_sym_RBRACE_RBRACE, - STATE(5677), 1, + STATE(5477), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189190] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11939), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5678), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, + [184754] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [189208] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(11941), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6726), 1, + ACTIONS(12437), 1, + anon_sym_ATendsetup, + STATE(6675), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12395), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, + aux_sym__text_token2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189226] = 5, - ACTIONS(11869), 1, + [184772] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11943), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5740), 1, + ACTIONS(12439), 1, + anon_sym_RBRACE_RBRACE, + STATE(5476), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189244] = 5, - ACTIONS(11857), 1, + [184790] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11945), 1, + ACTIONS(12441), 1, anon_sym_RBRACE_RBRACE, - STATE(6725), 1, + STATE(5458), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189262] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11947), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6667), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, + [184808] = 4, + ACTIONS(12445), 1, aux_sym__text_token3, - STATE(4291), 2, + ACTIONS(12415), 2, + anon_sym_ATendbefore, + aux_sym__notification_token1, + ACTIONS(12443), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4079), 2, sym__text, aux_sym_php_only_repeat1, - [189280] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(11949), 1, - anon_sym_RBRACE_RBRACE, - STATE(6665), 1, - sym_php_only, - ACTIONS(11855), 2, + [184824] = 4, + ACTIONS(12447), 1, aux_sym__text_token1, + ACTIONS(10502), 2, + anon_sym_RPAREN, + aux_sym__section_parameter_token1, + ACTIONS(12449), 2, + aux_sym__text_token2, aux_sym__text_token3, - STATE(4300), 2, + STATE(4129), 2, sym__text, aux_sym_php_only_repeat1, - [189298] = 5, - ACTIONS(11869), 1, + [184840] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(11951), 1, + ACTIONS(12451), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6663), 1, + STATE(5457), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189316] = 4, - ACTIONS(11957), 1, - aux_sym__text_token3, - ACTIONS(11953), 2, - anon_sym_ATendbefore, - aux_sym__notification_token1, - ACTIONS(11955), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4162), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189332] = 5, - ACTIONS(11893), 1, + [184858] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11959), 1, + ACTIONS(12453), 1, anon_sym_ATendsetup, - STATE(5773), 1, + STATE(6615), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189350] = 5, - ACTIONS(11893), 1, + [184876] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11961), 1, + ACTIONS(12455), 1, anon_sym_ATendsetup, - STATE(6832), 1, + STATE(6409), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [189368] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11963), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6271), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189386] = 5, - ACTIONS(11857), 1, + [184894] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11965), 1, + ACTIONS(12457), 1, anon_sym_RBRACE_RBRACE, - STATE(6324), 1, + STATE(6381), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189404] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(11967), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6329), 1, + [184912] = 5, + ACTIONS(12397), 1, + aux_sym__text_token3, + ACTIONS(12459), 1, + anon_sym_ATendsetup, + STATE(5663), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12395), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189422] = 5, - ACTIONS(11851), 1, aux_sym__text_token2, - ACTIONS(11969), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5687), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189440] = 5, - ACTIONS(11851), 1, + [184930] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(11971), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6724), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12461), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6380), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189458] = 5, - ACTIONS(11893), 1, + [184948] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11973), 1, + ACTIONS(12463), 1, anon_sym_ATendsetup, - STATE(6306), 1, + STATE(5907), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189476] = 5, - ACTIONS(11893), 1, + [184966] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11975), 1, + ACTIONS(12465), 1, anon_sym_ATendsetup, - STATE(5789), 1, + STATE(6353), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189494] = 4, - ACTIONS(11977), 1, + [184984] = 5, + ACTIONS(12397), 1, + aux_sym__text_token3, + ACTIONS(12467), 1, + anon_sym_ATendsetup, + STATE(6446), 1, + sym_php_only, + ACTIONS(12395), 2, aux_sym__text_token1, - ACTIONS(9958), 2, - anon_sym_RPAREN, - aux_sym__section_parameter_token1, - ACTIONS(11979), 2, aux_sym__text_token2, - aux_sym__text_token3, - STATE(4257), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189510] = 5, - ACTIONS(11869), 1, + [185002] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(11981), 1, + ACTIONS(12469), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6710), 1, + STATE(5837), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189528] = 5, - ACTIONS(11893), 1, + [185020] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11983), 1, + ACTIONS(12471), 1, anon_sym_ATendsetup, - STATE(6039), 1, + STATE(5552), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [189546] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(11985), 1, - anon_sym_RBRACE_RBRACE, - STATE(6709), 1, - sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189564] = 5, - ACTIONS(11857), 1, + [185038] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(11987), 1, + ACTIONS(12473), 1, anon_sym_RBRACE_RBRACE, - STATE(5688), 1, + STATE(5546), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189582] = 5, - ACTIONS(11869), 1, + [185056] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(11989), 1, + ACTIONS(12475), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6308), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189600] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(11991), 1, - anon_sym_RBRACE_RBRACE, - STATE(6319), 1, + STATE(5547), 1, sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, - sym__text, - aux_sym_php_only_repeat1, - [189618] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11993), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6696), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [189636] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(11995), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6320), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [189654] = 4, - ACTIONS(11999), 1, - aux_sym__text_token3, - ACTIONS(11953), 2, - anon_sym_ATendafter, - aux_sym__notification_token1, - ACTIONS(11997), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4151), 2, - sym__text, - aux_sym_php_only_repeat1, - [189670] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(12001), 1, - anon_sym_ATendsetup, - STATE(6622), 1, - sym_php_only, - ACTIONS(11891), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189688] = 5, - ACTIONS(11893), 1, + [185074] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12003), 1, + ACTIONS(12477), 1, anon_sym_ATendsetup, - STATE(5801), 1, + STATE(5580), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189706] = 5, - ACTIONS(11869), 1, + [185092] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12005), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5689), 1, + ACTIONS(12479), 1, + anon_sym_RBRACE_RBRACE, + STATE(6171), 1, sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189724] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12007), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6637), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189742] = 5, - ACTIONS(11857), 1, + [185110] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12009), 1, - anon_sym_RBRACE_RBRACE, - STATE(6636), 1, + ACTIONS(12481), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6139), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189760] = 4, - ACTIONS(12013), 1, + [185128] = 4, + ACTIONS(12485), 1, aux_sym__text_token3, - ACTIONS(11953), 2, - anon_sym_ATendfinished, + ACTIONS(12415), 2, + anon_sym_ATendsuccess, aux_sym__notification_token1, - ACTIONS(12011), 2, + ACTIONS(12483), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4255), 2, + STATE(4140), 2, sym__text, aux_sym_php_only_repeat1, - [189776] = 5, - ACTIONS(11869), 1, + [185144] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12015), 1, + ACTIONS(12487), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6635), 1, + STATE(6383), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189794] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(12017), 1, - anon_sym_ATendsetup, - STATE(6598), 1, - sym_php_only, - ACTIONS(11891), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189812] = 5, - ACTIONS(11851), 1, + [185162] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12019), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6553), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12489), 1, + anon_sym_RBRACE_RBRACE, + STATE(6382), 1, + sym_php_only, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189830] = 5, - ACTIONS(11893), 1, + [185180] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12021), 1, + ACTIONS(12491), 1, anon_sym_ATendsetup, - STATE(6591), 1, + STATE(6462), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [189848] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(12023), 1, - anon_sym_RBRACE_RBRACE, - STATE(6552), 1, - sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189866] = 5, - ACTIONS(11893), 1, + [185198] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12025), 1, + ACTIONS(12493), 1, anon_sym_ATendsetup, - STATE(5722), 1, + STATE(5471), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [189884] = 5, - ACTIONS(11869), 1, + [185216] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12027), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5662), 1, + ACTIONS(12495), 1, + anon_sym_RBRACE_RBRACE, + STATE(6327), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [189902] = 5, - ACTIONS(11869), 1, + [185234] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12029), 1, + ACTIONS(12497), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5769), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189920] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(12031), 1, - anon_sym_RBRACE_RBRACE, - STATE(5670), 1, + STATE(6326), 1, sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, - sym__text, - aux_sym_php_only_repeat1, - [189938] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12033), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5621), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189956] = 5, - ACTIONS(11869), 1, + [185252] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12035), 1, + ACTIONS(12499), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6551), 1, + STATE(6492), 1, sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [189974] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12037), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5845), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [189992] = 5, - ACTIONS(11857), 1, + [185270] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12039), 1, + ACTIONS(12501), 1, anon_sym_RBRACE_RBRACE, - STATE(5849), 1, + STATE(6493), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190010] = 5, - ACTIONS(11869), 1, + [185288] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12041), 1, + ACTIONS(12503), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5850), 1, + STATE(5584), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190028] = 5, - ACTIONS(11857), 1, + [185306] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12043), 1, + ACTIONS(12505), 1, anon_sym_RBRACE_RBRACE, - STATE(5664), 1, + STATE(5585), 1, sym_php_only, - ACTIONS(11855), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, - sym__text, - aux_sym_php_only_repeat1, - [190046] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12045), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5669), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190064] = 5, - ACTIONS(11893), 1, + [185324] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12047), 1, + ACTIONS(12507), 1, anon_sym_ATendsetup, - STATE(6514), 1, + STATE(5454), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190082] = 5, - ACTIONS(11893), 1, + [185342] = 4, + ACTIONS(12512), 1, aux_sym__text_token3, - ACTIONS(12049), 1, - anon_sym_ATendsetup, - STATE(6652), 1, - sym_php_only, - ACTIONS(11891), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [190100] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(12051), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6464), 1, - sym_php_only, - ACTIONS(11867), 2, + ACTIONS(10534), 2, + anon_sym_ATenderror, + aux_sym__notification_token1, + ACTIONS(12509), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [190118] = 5, - ACTIONS(11851), 1, aux_sym__text_token2, - ACTIONS(12053), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6545), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + STATE(4114), 2, sym__text, aux_sym_php_only_repeat1, - [190136] = 5, - ACTIONS(11893), 1, + [185358] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12055), 1, + ACTIONS(12515), 1, anon_sym_ATendsetup, - STATE(6022), 1, + STATE(6575), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [190154] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12057), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6471), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190172] = 5, - ACTIONS(11857), 1, + [185376] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12059), 1, + ACTIONS(12517), 1, anon_sym_RBRACE_RBRACE, - STATE(6470), 1, + STATE(6272), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190190] = 5, - ACTIONS(11869), 1, + [185394] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12061), 1, + ACTIONS(12519), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6302), 1, + STATE(6271), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190208] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(12063), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6469), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, + [185412] = 4, + ACTIONS(12524), 1, aux_sym__text_token3, - STATE(4298), 2, + ACTIONS(10534), 2, + anon_sym_ATendfinished, + aux_sym__notification_token1, + ACTIONS(12521), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4118), 2, sym__text, aux_sym_php_only_repeat1, - [190226] = 5, - ACTIONS(11893), 1, + [185428] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12065), 1, + ACTIONS(12527), 1, anon_sym_ATendsetup, - STATE(6429), 1, + STATE(6338), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190244] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12067), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6314), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, + [185446] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [190262] = 5, - ACTIONS(11857), 1, - aux_sym__text_token2, - ACTIONS(12069), 1, - anon_sym_RBRACE_RBRACE, - STATE(6313), 1, + ACTIONS(12529), 1, + anon_sym_ATendsetup, + STATE(6241), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12395), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4300), 2, + aux_sym__text_token2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190280] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12071), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6386), 1, - sym_text, - ACTIONS(11849), 2, + [185464] = 4, + ACTIONS(12533), 1, + aux_sym__text_token3, + ACTIONS(12415), 2, + anon_sym_ATenderror, + aux_sym__notification_token1, + ACTIONS(12531), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + aux_sym__text_token2, + STATE(4114), 2, sym__text, aux_sym_php_only_repeat1, - [190298] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(12073), 1, - anon_sym_ATendsetup, - STATE(5807), 1, + [185480] = 5, + ACTIONS(12409), 1, + aux_sym__text_token2, + ACTIONS(12535), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5591), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12407), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, + aux_sym__text_token3, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190316] = 5, - ACTIONS(11857), 1, + [185498] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12075), 1, + ACTIONS(12537), 1, anon_sym_RBRACE_RBRACE, - STATE(6385), 1, + STATE(6667), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190334] = 5, - ACTIONS(11869), 1, + [185516] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12077), 1, + ACTIONS(12539), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5846), 1, + STATE(6666), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190352] = 5, - ACTIONS(11857), 1, + [185534] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12079), 1, + ACTIONS(12541), 1, anon_sym_RBRACE_RBRACE, - STATE(5847), 1, + STATE(5592), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190370] = 5, - ACTIONS(11851), 1, + [185552] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12081), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5848), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12543), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6274), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190388] = 5, - ACTIONS(11893), 1, + [185570] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12083), 1, + ACTIONS(12545), 1, anon_sym_ATendsetup, - STATE(6577), 1, + STATE(6637), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190406] = 5, - ACTIONS(11869), 1, + [185588] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12085), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6384), 1, + ACTIONS(12547), 1, + anon_sym_RBRACE_RBRACE, + STATE(6273), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190424] = 4, - ACTIONS(12089), 1, - aux_sym__text_token3, - ACTIONS(11953), 2, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - ACTIONS(12087), 2, + [185606] = 4, + ACTIONS(12549), 1, aux_sym__text_token1, + ACTIONS(10534), 2, + anon_sym_RPAREN, + aux_sym__section_parameter_token1, + ACTIONS(12552), 2, aux_sym__text_token2, - STATE(4153), 2, + aux_sym__text_token3, + STATE(4129), 2, sym__text, aux_sym_php_only_repeat1, - [190440] = 5, - ACTIONS(11857), 1, + [185622] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12091), 1, + ACTIONS(12555), 1, anon_sym_RBRACE_RBRACE, - STATE(5909), 1, + STATE(6204), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190458] = 5, - ACTIONS(11869), 1, + [185640] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12093), 1, + ACTIONS(12557), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5928), 1, + STATE(6075), 1, sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4298), 2, - sym__text, - aux_sym_php_only_repeat1, - [190476] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12095), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5918), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190494] = 5, - ACTIONS(11893), 1, + [185658] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12097), 1, + ACTIONS(12559), 1, anon_sym_ATendsetup, - STATE(6342), 1, + STATE(5804), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190512] = 5, - ACTIONS(11857), 1, + [185676] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12099), 1, - anon_sym_RBRACE_RBRACE, - STATE(5717), 1, + ACTIONS(12561), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6214), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190530] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(12101), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6418), 1, + [185694] = 5, + ACTIONS(12397), 1, + aux_sym__text_token3, + ACTIONS(12563), 1, + anon_sym_ATendsetup, + STATE(6182), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12395), 2, aux_sym__text_token1, + aux_sym__text_token2, + STATE(4189), 2, + sym__text, + aux_sym_php_only_repeat1, + [185712] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - STATE(4298), 2, + ACTIONS(12565), 1, + anon_sym_ATendsetup, + STATE(5755), 1, + sym_php_only, + ACTIONS(12395), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190548] = 5, - ACTIONS(11893), 1, + [185730] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12103), 1, + ACTIONS(12567), 1, anon_sym_ATendsetup, - STATE(6049), 1, + STATE(6231), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190566] = 5, - ACTIONS(11857), 1, + [185748] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12105), 1, + ACTIONS(12569), 1, anon_sym_RBRACE_RBRACE, - STATE(6416), 1, + STATE(6156), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190584] = 5, - ACTIONS(11851), 1, + [185766] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12107), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6414), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12571), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6155), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190602] = 5, - ACTIONS(11869), 1, + [185784] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12109), 1, + ACTIONS(12573), 1, anon_sym_BANG_BANG_RBRACE, - STATE(5759), 1, + STATE(6163), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190620] = 5, - ACTIONS(11851), 1, + [185802] = 4, + ACTIONS(12578), 1, + aux_sym__text_token3, + ACTIONS(10534), 2, + anon_sym_ATendsuccess, + aux_sym__notification_token1, + ACTIONS(12575), 2, + aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12111), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(5891), 1, - sym_text, - ACTIONS(11849), 2, + STATE(4140), 2, + sym__text, + aux_sym_php_only_repeat1, + [185818] = 5, + ACTIONS(12403), 1, + aux_sym__text_token2, + ACTIONS(12581), 1, + anon_sym_RBRACE_RBRACE, + STATE(6162), 1, + sym_php_only, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190638] = 5, - ACTIONS(11893), 1, + [185836] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12113), 1, + ACTIONS(12583), 1, anon_sym_ATendsetup, - STATE(5894), 1, + STATE(6121), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190656] = 5, - ACTIONS(11851), 1, + [185854] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12115), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6480), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12585), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5834), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190674] = 5, - ACTIONS(11869), 1, + [185872] = 5, + ACTIONS(12397), 1, + aux_sym__text_token3, + ACTIONS(12587), 1, + anon_sym_ATendsetup, + STATE(6118), 1, + sym_php_only, + ACTIONS(12395), 2, + aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12117), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(5935), 1, + STATE(4189), 2, + sym__text, + aux_sym_php_only_repeat1, + [185890] = 5, + ACTIONS(12403), 1, + aux_sym__text_token2, + ACTIONS(12589), 1, + anon_sym_RBRACE_RBRACE, + STATE(5833), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190692] = 5, - ACTIONS(11857), 1, + [185908] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12119), 1, + ACTIONS(12591), 1, anon_sym_RBRACE_RBRACE, - STATE(5936), 1, + STATE(6091), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190710] = 5, - ACTIONS(11893), 1, + [185926] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12121), 1, + ACTIONS(12593), 1, anon_sym_ATendsetup, - STATE(6759), 1, + STATE(6522), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190728] = 4, - ACTIONS(12126), 1, - aux_sym__text_token3, - ACTIONS(9946), 2, - anon_sym_ATendfinished, - aux_sym__notification_token1, - ACTIONS(12123), 2, + [185944] = 5, + ACTIONS(12409), 1, + aux_sym__text_token2, + ACTIONS(12595), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6090), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, + aux_sym__text_token3, + STATE(4188), 2, + sym__text, + aux_sym_php_only_repeat1, + [185962] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - STATE(4255), 2, + ACTIONS(12597), 1, + anon_sym_RBRACE_RBRACE, + STATE(5838), 1, + sym_php_only, + ACTIONS(12401), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190744] = 5, - ACTIONS(11893), 1, + [185980] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12129), 1, + ACTIONS(12599), 1, anon_sym_ATendsetup, - STATE(6465), 1, + STATE(5627), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190762] = 4, - ACTIONS(12131), 1, + [185998] = 5, + ACTIONS(12409), 1, + aux_sym__text_token2, + ACTIONS(12601), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5656), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, - ACTIONS(9946), 2, - anon_sym_RPAREN, - aux_sym__section_parameter_token1, - ACTIONS(12134), 2, + aux_sym__text_token3, + STATE(4188), 2, + sym__text, + aux_sym_php_only_repeat1, + [186016] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, + ACTIONS(12603), 1, + anon_sym_RBRACE_RBRACE, + STATE(5657), 1, + sym_php_only, + ACTIONS(12401), 2, + aux_sym__text_token1, aux_sym__text_token3, - STATE(4257), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190778] = 5, - ACTIONS(11893), 1, + [186034] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12137), 1, + ACTIONS(12605), 1, anon_sym_ATendsetup, - STATE(5802), 1, + STATE(6055), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190796] = 5, - ACTIONS(11869), 1, + [186052] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12139), 1, + ACTIONS(12607), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6337), 1, + STATE(6553), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190814] = 5, - ACTIONS(11851), 1, + [186070] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12141), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6296), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12609), 1, + anon_sym_RBRACE_RBRACE, + STATE(6554), 1, + sym_php_only, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190832] = 5, - ACTIONS(11857), 1, + [186088] = 5, + ACTIONS(12397), 1, + aux_sym__text_token3, + ACTIONS(12611), 1, + anon_sym_ATendsetup, + STATE(5868), 1, + sym_php_only, + ACTIONS(12395), 2, + aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12143), 1, + STATE(4189), 2, + sym__text, + aux_sym_php_only_repeat1, + [186106] = 5, + ACTIONS(12403), 1, + aux_sym__text_token2, + ACTIONS(12613), 1, anon_sym_RBRACE_RBRACE, - STATE(6295), 1, + STATE(5673), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190850] = 5, - ACTIONS(11869), 1, + [186124] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12145), 1, + ACTIONS(12615), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6294), 1, + STATE(5677), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190868] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(12147), 1, - anon_sym_ATendsetup, - STATE(5984), 1, + [186142] = 5, + ACTIONS(12403), 1, + aux_sym__text_token2, + ACTIONS(12617), 1, + anon_sym_RBRACE_RBRACE, + STATE(6564), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12401), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, + aux_sym__text_token3, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190886] = 5, - ACTIONS(11893), 1, + [186160] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12149), 1, + ACTIONS(12619), 1, anon_sym_ATendsetup, - STATE(5683), 1, + STATE(5784), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190904] = 5, - ACTIONS(11857), 1, + [186178] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12151), 1, - anon_sym_RBRACE_RBRACE, - STATE(6253), 1, + ACTIONS(12621), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6565), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190922] = 5, - ACTIONS(11893), 1, + [186196] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12153), 1, + ACTIONS(12623), 1, anon_sym_ATendsetup, - STATE(6254), 1, + STATE(6632), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [190940] = 5, - ACTIONS(11869), 1, + [186214] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12155), 1, + ACTIONS(12625), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6023), 1, + STATE(6042), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [190958] = 5, - ACTIONS(11857), 1, + [186232] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12157), 1, + ACTIONS(12627), 1, anon_sym_RBRACE_RBRACE, - STATE(6024), 1, + STATE(6041), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190976] = 5, - ACTIONS(11851), 1, + [186250] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12159), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6028), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12629), 1, + anon_sym_RBRACE_RBRACE, + STATE(6029), 1, + sym_php_only, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [190994] = 4, - ACTIONS(12163), 1, + [186268] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(11953), 2, - anon_sym_ATenderror, - aux_sym__notification_token1, - ACTIONS(12161), 2, + ACTIONS(12631), 1, + anon_sym_ATendsetup, + STATE(5642), 1, + sym_php_only, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4166), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [191010] = 5, - ACTIONS(11851), 1, + [186286] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12165), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6205), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12633), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6028), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4291), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191028] = 5, - ACTIONS(11857), 1, + [186304] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12167), 1, - anon_sym_RBRACE_RBRACE, - STATE(6204), 1, + ACTIONS(12635), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5716), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191046] = 5, - ACTIONS(11869), 1, + [186322] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12169), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6203), 1, + ACTIONS(12637), 1, + anon_sym_RBRACE_RBRACE, + STATE(5717), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [191064] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(12171), 1, - anon_sym_ATendsetup, - STATE(6163), 1, + [186340] = 5, + ACTIONS(12403), 1, + aux_sym__text_token2, + ACTIONS(12639), 1, + anon_sym_RBRACE_RBRACE, + STATE(5779), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12401), 2, aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, + aux_sym__text_token3, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [191082] = 5, - ACTIONS(11893), 1, + [186358] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12173), 1, + ACTIONS(12641), 1, anon_sym_ATendsetup, - STATE(5756), 1, + STATE(5994), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [191100] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12175), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6116), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, + [186376] = 4, + ACTIONS(12646), 1, aux_sym__text_token3, - STATE(4291), 2, + ACTIONS(10534), 2, + anon_sym_ATendafter, + aux_sym__notification_token1, + ACTIONS(12643), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4172), 2, sym__text, aux_sym_php_only_repeat1, - [191118] = 5, - ACTIONS(11857), 1, + [186392] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12177), 1, + ACTIONS(12649), 1, anon_sym_RBRACE_RBRACE, - STATE(6115), 1, + STATE(5963), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [191136] = 5, - ACTIONS(11869), 1, + [186410] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12179), 1, + ACTIONS(12651), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6114), 1, + STATE(5962), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191154] = 5, - ACTIONS(11893), 1, + [186428] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12181), 1, + ACTIONS(12653), 1, anon_sym_ATendsetup, - STATE(6246), 1, + STATE(5927), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [191172] = 5, - ACTIONS(11893), 1, + [186446] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - ACTIONS(12183), 1, + ACTIONS(12655), 1, anon_sym_ATendsetup, - STATE(6073), 1, + STATE(6025), 1, sym_php_only, - ACTIONS(11891), 2, + ACTIONS(12395), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4296), 2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [191190] = 5, - ACTIONS(11869), 1, + [186464] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12185), 1, + ACTIONS(12657), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6135), 1, + STATE(5924), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191208] = 5, - ACTIONS(11869), 1, - aux_sym__text_token2, - ACTIONS(12187), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(6040), 1, - sym_php_only, - ACTIONS(11867), 2, - aux_sym__text_token1, + [186482] = 4, + ACTIONS(12661), 1, aux_sym__text_token3, - STATE(4298), 2, + ACTIONS(12415), 2, + anon_sym_ATendafter, + aux_sym__notification_token1, + ACTIONS(12659), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4172), 2, sym__text, aux_sym_php_only_repeat1, - [191226] = 5, - ACTIONS(11857), 1, + [186498] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12189), 1, + ACTIONS(12663), 1, anon_sym_RBRACE_RBRACE, - STATE(6041), 1, + STATE(5923), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [191244] = 5, - ACTIONS(11857), 1, + [186516] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12191), 1, + ACTIONS(12665), 1, anon_sym_RBRACE_RBRACE, - STATE(6127), 1, + STATE(5902), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [191262] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12193), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6051), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, + [186534] = 5, + ACTIONS(12397), 1, aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [191280] = 5, - ACTIONS(11851), 1, - aux_sym__text_token2, - ACTIONS(12195), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6107), 1, - sym_text, - ACTIONS(11849), 2, + ACTIONS(12667), 1, + anon_sym_ATendsetup, + STATE(5746), 1, + sym_php_only, + ACTIONS(12395), 2, aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, + aux_sym__text_token2, + STATE(4189), 2, sym__text, aux_sym_php_only_repeat1, - [191298] = 5, - ACTIONS(11857), 1, + [186552] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12197), 1, - anon_sym_RBRACE_RBRACE, - STATE(6108), 1, + ACTIONS(12669), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(5901), 1, sym_php_only, - ACTIONS(11855), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4300), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191316] = 5, - ACTIONS(11869), 1, + [186570] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - ACTIONS(12199), 1, + ACTIONS(12671), 1, anon_sym_BANG_BANG_RBRACE, - STATE(6113), 1, + STATE(5778), 1, sym_php_only, - ACTIONS(11867), 2, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4298), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191334] = 5, - ACTIONS(11851), 1, + [186588] = 5, + ACTIONS(12403), 1, aux_sym__text_token2, - ACTIONS(12201), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(6126), 1, - sym_text, - ACTIONS(11849), 2, - aux_sym__text_token1, - aux_sym__text_token3, - STATE(4291), 2, - sym__text, - aux_sym_php_only_repeat1, - [191352] = 5, - ACTIONS(11893), 1, - aux_sym__text_token3, - ACTIONS(12203), 1, - anon_sym_ATendsetup, - STATE(6297), 1, + ACTIONS(12673), 1, + anon_sym_RBRACE_RBRACE, + STATE(6607), 1, sym_php_only, - ACTIONS(11891), 2, - aux_sym__text_token1, - aux_sym__text_token2, - STATE(4296), 2, - sym__text, - aux_sym_php_only_repeat1, - [191370] = 4, - ACTIONS(9958), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - ACTIONS(12207), 1, - aux_sym__text_token2, - ACTIONS(12205), 2, + ACTIONS(12401), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4301), 2, + STATE(4191), 2, sym__text, aux_sym_php_only_repeat1, - [191385] = 4, - ACTIONS(11385), 1, + [186606] = 5, + ACTIONS(12409), 1, aux_sym__text_token2, - STATE(5329), 1, - sym_text, - ACTIONS(11383), 2, + ACTIONS(12675), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(6606), 1, + sym_php_only, + ACTIONS(12407), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4137), 2, + STATE(4188), 2, sym__text, aux_sym_php_only_repeat1, - [191400] = 4, - ACTIONS(9946), 1, + [186624] = 4, + ACTIONS(10534), 1, anon_sym_RBRACE_RBRACE, - ACTIONS(12212), 1, + ACTIONS(12680), 1, aux_sym__text_token2, - ACTIONS(12209), 2, + ACTIONS(12677), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4293), 2, + STATE(4186), 2, sym__text, aux_sym_php_only_repeat1, - [191415] = 4, - ACTIONS(9946), 1, + [186639] = 4, + ACTIONS(10534), 1, anon_sym_ATendsetup, - ACTIONS(12218), 1, + ACTIONS(12686), 1, aux_sym__text_token3, - ACTIONS(12215), 2, + ACTIONS(12683), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4294), 2, + STATE(4187), 2, sym__text, aux_sym_php_only_repeat1, - [191430] = 4, - ACTIONS(11953), 1, - anon_sym_ATendphp, - ACTIONS(12223), 1, - aux_sym__text_token3, - ACTIONS(12221), 2, - aux_sym__text_token1, + [186654] = 4, + ACTIONS(12415), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(12691), 1, aux_sym__text_token2, - STATE(4302), 2, + ACTIONS(12689), 2, + aux_sym__text_token1, + aux_sym__text_token3, + STATE(4194), 2, sym__text, aux_sym_php_only_repeat1, - [191445] = 4, - ACTIONS(11953), 1, + [186669] = 4, + ACTIONS(12415), 1, anon_sym_ATendsetup, - ACTIONS(12227), 1, + ACTIONS(12695), 1, aux_sym__text_token3, - ACTIONS(12225), 2, + ACTIONS(12693), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4294), 2, + STATE(4187), 2, sym__text, aux_sym_php_only_repeat1, - [191460] = 4, - ACTIONS(9946), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(12232), 1, + [186684] = 4, + ACTIONS(12169), 1, aux_sym__text_token2, - ACTIONS(12229), 2, + STATE(5240), 1, + sym_text, + ACTIONS(12167), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4297), 2, + STATE(4085), 2, sym__text, aux_sym_php_only_repeat1, - [191475] = 4, - ACTIONS(11953), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(12237), 1, + [186699] = 4, + ACTIONS(12415), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(12699), 1, aux_sym__text_token2, - ACTIONS(12235), 2, + ACTIONS(12697), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4297), 2, + STATE(4186), 2, sym__text, aux_sym_php_only_repeat1, - [191490] = 4, - ACTIONS(11623), 1, - aux_sym__text_token2, - STATE(5329), 1, - sym_text, - ACTIONS(11621), 2, - aux_sym__text_token1, + [186714] = 4, + ACTIONS(12415), 1, + anon_sym_ATendphp, + ACTIONS(12703), 1, aux_sym__text_token3, - STATE(4186), 2, + ACTIONS(12701), 2, + aux_sym__text_token1, + aux_sym__text_token2, + STATE(4195), 2, sym__text, aux_sym_php_only_repeat1, - [191505] = 4, - ACTIONS(11953), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(12241), 1, + [186729] = 4, + ACTIONS(11379), 1, aux_sym__text_token2, - ACTIONS(12239), 2, + STATE(5240), 1, + sym_text, + ACTIONS(11377), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4293), 2, + STATE(4068), 2, sym__text, aux_sym_php_only_repeat1, - [191520] = 4, - ACTIONS(9946), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - ACTIONS(12246), 1, + [186744] = 4, + ACTIONS(10534), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(12708), 1, aux_sym__text_token2, - ACTIONS(12243), 2, + ACTIONS(12705), 2, aux_sym__text_token1, aux_sym__text_token3, - STATE(4301), 2, + STATE(4194), 2, sym__text, aux_sym_php_only_repeat1, - [191535] = 4, - ACTIONS(9946), 1, + [186759] = 4, + ACTIONS(10534), 1, anon_sym_ATendphp, - ACTIONS(12252), 1, + ACTIONS(12714), 1, aux_sym__text_token3, - ACTIONS(12249), 2, + ACTIONS(12711), 2, aux_sym__text_token1, aux_sym__text_token2, - STATE(4302), 2, + STATE(4195), 2, sym__text, aux_sym_php_only_repeat1, - [191550] = 4, - ACTIONS(12255), 1, - anon_sym_ATdefault, - ACTIONS(12257), 1, + [186774] = 4, + ACTIONS(4799), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12717), 1, + anon_sym_ATdefault, + ACTIONS(12719), 1, anon_sym_ATcase, - STATE(4398), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [191564] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12263), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4401), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [191578] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12265), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4401), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [191592] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12267), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4401), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [191606] = 4, - ACTIONS(12261), 1, + [186788] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12269), 1, + ACTIONS(12723), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4314), 2, + STATE(4325), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191620] = 4, - ACTIONS(12261), 1, + [186802] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12271), 1, + ACTIONS(12725), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4306), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191634] = 4, - ACTIONS(12261), 1, + [186816] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12273), 1, + ACTIONS(12727), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4346), 2, + STATE(4241), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191648] = 4, - ACTIONS(12261), 1, + [186830] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12275), 1, + ACTIONS(12729), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4251), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191662] = 4, - ACTIONS(12261), 1, + [186844] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12277), 1, + ACTIONS(12731), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4209), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191676] = 4, - ACTIONS(12261), 1, + [186858] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12733), 1, + anon_sym_ATdefault, + ACTIONS(12735), 1, + anon_sym_ATendswitch, + STATE(4212), 2, + sym__case, + aux_sym_switch_repeat1, + [186872] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12737), 1, + anon_sym_ATdefault, + ACTIONS(12739), 1, + anon_sym_ATendswitch, + STATE(4272), 2, + sym__case, + aux_sym_switch_repeat1, + [186886] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12279), 1, + ACTIONS(12741), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191690] = 4, - ACTIONS(12261), 1, + [186900] = 4, + ACTIONS(4559), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12743), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [186914] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12281), 1, + ACTIONS(12745), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4445), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191704] = 4, - ACTIONS(12261), 1, + [186928] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12747), 1, + anon_sym_ATdefault, + ACTIONS(12749), 1, + anon_sym_ATendswitch, + STATE(4205), 2, + sym__case, + aux_sym_switch_repeat1, + [186942] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12751), 1, + anon_sym_ATdefault, + ACTIONS(12753), 1, + anon_sym_ATendswitch, + STATE(4215), 2, + sym__case, + aux_sym_switch_repeat1, + [186956] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12283), 1, + ACTIONS(12755), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191718] = 4, - ACTIONS(12261), 1, + [186970] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12285), 1, + ACTIONS(12757), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4311), 2, + STATE(4206), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191732] = 4, - ACTIONS(5751), 1, + [186984] = 4, + ACTIONS(7654), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12287), 1, + ACTIONS(12759), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [191746] = 4, - ACTIONS(12261), 1, + [186998] = 4, + ACTIONS(4519), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12761), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187012] = 4, + ACTIONS(12763), 1, + anon_sym_RPAREN, + ACTIONS(12765), 1, aux_sym_parameter_token1, - ACTIONS(12289), 1, - anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5344), 1, sym__text_with_parenthesis, - STATE(4335), 2, + STATE(4292), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191760] = 4, - ACTIONS(12261), 1, + [187026] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12291), 1, + ACTIONS(12767), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4320), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191774] = 4, - ACTIONS(5118), 1, + [187040] = 4, + ACTIONS(7610), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12293), 1, + ACTIONS(12769), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [191788] = 4, - ACTIONS(12261), 1, + [187054] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12295), 1, + ACTIONS(12771), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4229), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191802] = 4, - ACTIONS(5371), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + [187068] = 3, + ACTIONS(12775), 1, anon_sym_ATcase, - ACTIONS(12297), 1, + ACTIONS(12773), 2, anon_sym_ATdefault, - STATE(4368), 2, + anon_sym_ATendswitch, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [191816] = 4, - ACTIONS(12259), 1, + [187080] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12299), 1, + ACTIONS(12778), 1, anon_sym_ATdefault, - ACTIONS(12301), 1, + ACTIONS(12780), 1, anon_sym_ATendswitch, - STATE(4319), 2, + STATE(4211), 2, sym__case, aux_sym_switch_repeat1, - [191830] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12303), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4304), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [191844] = 4, - ACTIONS(12261), 1, + [187094] = 2, + ACTIONS(12784), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12782), 3, + anon_sym_ATendsuccess, + aux_sym__notification_token1, + aux_sym__text_token3, + [187104] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12305), 1, + ACTIONS(12786), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191858] = 4, - ACTIONS(12259), 1, + [187118] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12307), 1, + ACTIONS(12788), 1, anon_sym_ATdefault, - ACTIONS(12309), 1, - anon_sym_ATendswitch, - STATE(4431), 2, - sym__case, - aux_sym_switch_repeat1, - [191872] = 4, - ACTIONS(4684), 1, + ACTIONS(12790), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12311), 1, - anon_sym_ATdefault, - STATE(4368), 2, + STATE(4263), 2, sym__case, aux_sym_switch_repeat1, - [191886] = 4, - ACTIONS(12261), 1, + [187132] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12313), 1, + ACTIONS(12792), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4236), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191900] = 4, - ACTIONS(12261), 1, + [187146] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12794), 1, + anon_sym_ATdefault, + ACTIONS(12796), 1, + anon_sym_ATendswitch, + STATE(4196), 2, + sym__case, + aux_sym_switch_repeat1, + [187160] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12315), 1, + ACTIONS(12798), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4324), 2, + STATE(4220), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191914] = 4, - ACTIONS(12259), 1, + [187174] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12317), 1, + ACTIONS(12800), 1, anon_sym_ATdefault, - ACTIONS(12319), 1, + ACTIONS(12802), 1, anon_sym_ATendswitch, - STATE(4364), 2, + STATE(4235), 2, sym__case, aux_sym_switch_repeat1, - [191928] = 4, - ACTIONS(12259), 1, + [187188] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12321), 1, + ACTIONS(12804), 1, anon_sym_ATdefault, - ACTIONS(12323), 1, + ACTIONS(12806), 1, + anon_sym_ATendswitch, + STATE(4245), 2, + sym__case, + aux_sym_switch_repeat1, + [187202] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12808), 1, + anon_sym_ATdefault, + ACTIONS(12810), 1, anon_sym_ATendswitch, - STATE(4338), 2, + STATE(4369), 2, sym__case, aux_sym_switch_repeat1, - [191942] = 4, - ACTIONS(5293), 1, + [187216] = 4, + ACTIONS(5983), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12325), 1, + ACTIONS(12812), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [191956] = 4, - ACTIONS(12261), 1, + [187230] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12327), 1, + ACTIONS(12814), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [191970] = 4, - ACTIONS(12259), 1, + [187244] = 4, + ACTIONS(4988), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12329), 1, + ACTIONS(12816), 1, anon_sym_ATdefault, - ACTIONS(12331), 1, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187258] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(12818), 1, + anon_sym_RPAREN2, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4237), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [187272] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12820), 1, + anon_sym_ATdefault, + ACTIONS(12822), 1, anon_sym_ATendswitch, - STATE(4350), 2, + STATE(4238), 2, sym__case, aux_sym_switch_repeat1, - [191984] = 4, - ACTIONS(12259), 1, + [187286] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12333), 1, + ACTIONS(12824), 1, anon_sym_ATdefault, - ACTIONS(12335), 1, + ACTIONS(12826), 1, anon_sym_ATendswitch, - STATE(4331), 2, + STATE(4230), 2, sym__case, aux_sym_switch_repeat1, - [191998] = 4, - ACTIONS(12261), 1, + [187300] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12337), 1, + ACTIONS(12828), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4231), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192012] = 4, - ACTIONS(12261), 1, + [187314] = 4, + ACTIONS(4475), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12830), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187328] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12339), 1, + ACTIONS(12832), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4332), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192026] = 4, - ACTIONS(12261), 1, + [187342] = 4, + ACTIONS(12834), 1, aux_sym_parameter_token1, - ACTIONS(12341), 1, + ACTIONS(12837), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4442), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192040] = 4, - ACTIONS(6840), 1, + [187356] = 4, + ACTIONS(7419), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12343), 1, + ACTIONS(12839), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192054] = 4, - ACTIONS(12261), 1, + [187370] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12345), 1, + ACTIONS(12841), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4472), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192068] = 4, - ACTIONS(12261), 1, + [187384] = 4, + ACTIONS(12765), 1, aux_sym_parameter_token1, - ACTIONS(12347), 1, + ACTIONS(12843), 1, + anon_sym_RPAREN, + STATE(5344), 1, + sym__text_with_parenthesis, + STATE(4213), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [187398] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(12845), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192082] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12349), 1, - anon_sym_ATdefault, - ACTIONS(12351), 1, - anon_sym_ATendswitch, - STATE(4454), 2, - sym__case, - aux_sym_switch_repeat1, - [192096] = 4, - ACTIONS(12261), 1, + [187412] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12353), 1, + ACTIONS(12847), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4344), 2, + STATE(4370), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192110] = 4, - ACTIONS(12259), 1, + [187426] = 4, + ACTIONS(7726), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12355), 1, + ACTIONS(12849), 1, anon_sym_ATdefault, - ACTIONS(12357), 1, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187440] = 2, + ACTIONS(12784), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12782), 3, + anon_sym_ATendfinished, + aux_sym__notification_token1, + aux_sym__text_token3, + [187450] = 4, + ACTIONS(5947), 1, anon_sym_ATendswitch, - STATE(4349), 2, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12851), 1, + anon_sym_ATdefault, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192124] = 4, - ACTIONS(12261), 1, + [187464] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12853), 1, + anon_sym_ATdefault, + ACTIONS(12855), 1, + anon_sym_ATendswitch, + STATE(4255), 2, + sym__case, + aux_sym_switch_repeat1, + [187478] = 4, + ACTIONS(5187), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12857), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187492] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12359), 1, + ACTIONS(12859), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4274), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192138] = 4, - ACTIONS(12261), 1, + [187506] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12361), 1, + ACTIONS(12861), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4354), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192152] = 4, - ACTIONS(12261), 1, + [187520] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12363), 1, + ACTIONS(12863), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4198), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192166] = 4, - ACTIONS(12261), 1, + [187534] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12365), 1, + ACTIONS(12865), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4340), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192180] = 4, - ACTIONS(12259), 1, + [187548] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12367), 1, + ACTIONS(12867), 1, anon_sym_ATdefault, - ACTIONS(12369), 1, + ACTIONS(12869), 1, anon_sym_ATendswitch, - STATE(4316), 2, + STATE(4247), 2, sym__case, aux_sym_switch_repeat1, - [192194] = 4, - ACTIONS(4662), 1, + [187562] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(12871), 1, + anon_sym_RPAREN2, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4249), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [187576] = 2, + ACTIONS(12784), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12782), 3, + anon_sym_ATendafter, + aux_sym__notification_token1, + aux_sym__text_token3, + [187586] = 4, + ACTIONS(4435), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12371), 1, + ACTIONS(12873), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192208] = 4, - ACTIONS(5727), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + [187600] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12373), 1, + ACTIONS(12875), 1, anon_sym_ATdefault, - STATE(4368), 2, + ACTIONS(12877), 1, + anon_sym_ATendswitch, + STATE(4228), 2, sym__case, aux_sym_switch_repeat1, - [192222] = 4, - ACTIONS(12259), 1, + [187614] = 4, + ACTIONS(7690), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12375), 1, + ACTIONS(12879), 1, anon_sym_ATdefault, - ACTIONS(12377), 1, - anon_sym_ATendswitch, - STATE(4412), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192236] = 2, - ACTIONS(12381), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(12379), 3, - anon_sym_ATendbefore, - aux_sym__notification_token1, - aux_sym__text_token3, - [192246] = 4, - ACTIONS(12383), 1, - anon_sym_RPAREN, - ACTIONS(12385), 1, - aux_sym_parameter_token1, - STATE(5465), 1, - sym__text_with_parenthesis, - STATE(4353), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [192260] = 4, - ACTIONS(12261), 1, + [187628] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12388), 1, + ACTIONS(12881), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192274] = 4, - ACTIONS(12261), 1, + [187642] = 2, + ACTIONS(12784), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(12782), 3, + anon_sym_ATendbefore, + aux_sym__notification_token1, + aux_sym__text_token3, + [187652] = 4, + ACTIONS(4107), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12883), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187666] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12390), 1, + ACTIONS(12885), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4312), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192288] = 4, - ACTIONS(12261), 1, + [187680] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12392), 1, + ACTIONS(12887), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4278), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192302] = 4, - ACTIONS(12261), 1, + [187694] = 4, + ACTIONS(5195), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12889), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [187708] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12394), 1, + ACTIONS(12891), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4380), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192316] = 4, - ACTIONS(12259), 1, + [187722] = 4, + ACTIONS(5233), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12396), 1, + ACTIONS(12893), 1, anon_sym_ATdefault, - ACTIONS(12398), 1, - anon_sym_ATendswitch, - STATE(4389), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192330] = 4, - ACTIONS(12261), 1, + [187736] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12400), 1, + ACTIONS(12895), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4361), 2, + STATE(4344), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192344] = 4, - ACTIONS(12259), 1, + [187750] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12402), 1, + ACTIONS(12897), 1, anon_sym_ATdefault, - ACTIONS(12404), 1, + ACTIONS(12899), 1, anon_sym_ATendswitch, - STATE(4365), 2, + STATE(4275), 2, sym__case, aux_sym_switch_repeat1, - [192358] = 4, - ACTIONS(12261), 1, + [187764] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12406), 1, + ACTIONS(12901), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192372] = 4, - ACTIONS(7780), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + [187778] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12408), 1, + ACTIONS(12903), 1, anon_sym_ATdefault, - STATE(4368), 2, + ACTIONS(12905), 1, + anon_sym_ATendswitch, + STATE(4265), 2, sym__case, aux_sym_switch_repeat1, - [192386] = 4, - ACTIONS(12261), 1, + [187792] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12410), 1, + ACTIONS(12907), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4356), 2, + STATE(4312), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192400] = 4, - ACTIONS(7091), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + [187806] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12412), 1, + ACTIONS(12909), 1, anon_sym_ATdefault, - STATE(4368), 2, + ACTIONS(12911), 1, + anon_sym_ATendswitch, + STATE(4282), 2, sym__case, aux_sym_switch_repeat1, - [192414] = 4, - ACTIONS(4532), 1, + [187820] = 4, + ACTIONS(7762), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12414), 1, + ACTIONS(12913), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192428] = 4, - ACTIONS(12261), 1, + [187834] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12416), 1, + ACTIONS(12915), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4268), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192442] = 4, - ACTIONS(12418), 1, - anon_sym_RPAREN, - ACTIONS(12420), 1, + [187848] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - STATE(5465), 1, + ACTIONS(12917), 1, + anon_sym_RPAREN2, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4353), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192456] = 3, - ACTIONS(12424), 1, + [187862] = 4, + ACTIONS(7120), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12422), 2, + ACTIONS(12919), 1, anon_sym_ATdefault, - anon_sym_ATendswitch, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192468] = 4, - ACTIONS(12420), 1, + [187876] = 4, + ACTIONS(12765), 1, aux_sym_parameter_token1, - ACTIONS(12427), 1, + ACTIONS(12921), 1, anon_sym_RPAREN, - STATE(5465), 1, + STATE(5344), 1, sym__text_with_parenthesis, - STATE(4371), 2, + STATE(4326), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192482] = 4, - ACTIONS(12261), 1, + [187890] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(12923), 1, + anon_sym_ATdefault, + ACTIONS(12925), 1, + anon_sym_ATendswitch, + STATE(4257), 2, + sym__case, + aux_sym_switch_repeat1, + [187904] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12429), 1, + ACTIONS(12927), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4327), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192496] = 4, - ACTIONS(12420), 1, + [187918] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12431), 1, - anon_sym_RPAREN, - STATE(5465), 1, + ACTIONS(12929), 1, + anon_sym_RPAREN2, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4353), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192510] = 4, - ACTIONS(5347), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12433), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [192524] = 4, - ACTIONS(7045), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12435), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [192538] = 4, - ACTIONS(12261), 1, + [187932] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12437), 1, + ACTIONS(12931), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4279), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192552] = 4, - ACTIONS(12259), 1, + [187946] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(12933), 1, + anon_sym_RPAREN2, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4237), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [187960] = 4, + ACTIONS(5203), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12439), 1, + ACTIONS(12935), 1, anon_sym_ATdefault, - ACTIONS(12441), 1, - anon_sym_ATendswitch, - STATE(4386), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192566] = 4, - ACTIONS(12261), 1, + [187974] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12443), 1, + ACTIONS(12937), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4418), 2, + STATE(4214), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192580] = 4, - ACTIONS(12259), 1, + [187988] = 4, + ACTIONS(5269), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12445), 1, + ACTIONS(12939), 1, anon_sym_ATdefault, - ACTIONS(12447), 1, - anon_sym_ATendswitch, - STATE(4372), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192594] = 4, - ACTIONS(12261), 1, + [188002] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12449), 1, + ACTIONS(12941), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4374), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192608] = 4, - ACTIONS(12259), 1, + [188016] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12451), 1, + ACTIONS(12943), 1, anon_sym_ATdefault, - ACTIONS(12453), 1, + ACTIONS(12945), 1, anon_sym_ATendswitch, - STATE(4362), 2, + STATE(4284), 2, sym__case, aux_sym_switch_repeat1, - [192622] = 4, - ACTIONS(12261), 1, + [188030] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12455), 1, + ACTIONS(12947), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4264), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192636] = 2, - ACTIONS(10476), 2, + [188044] = 2, + ACTIONS(11002), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10474), 3, - anon_sym_ATendbefore, + ACTIONS(11000), 3, + anon_sym_ATendafter, aux_sym__notification_token1, aux_sym__text_token3, - [192646] = 4, - ACTIONS(12261), 1, + [188054] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12457), 1, + ACTIONS(12949), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4464), 2, + STATE(4281), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192660] = 4, - ACTIONS(12261), 1, + [188068] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12459), 1, + ACTIONS(12951), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4285), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192674] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12461), 1, - anon_sym_ATdefault, - ACTIONS(12463), 1, - anon_sym_ATendswitch, - STATE(4326), 2, - sym__case, - aux_sym_switch_repeat1, - [192688] = 4, - ACTIONS(12261), 1, + [188082] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12465), 1, + ACTIONS(12953), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4416), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192702] = 4, - ACTIONS(6612), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12467), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [192716] = 2, - ACTIONS(10476), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10474), 3, - anon_sym_ATendfinished, - aux_sym__notification_token1, - aux_sym__text_token3, - [192726] = 2, - ACTIONS(10456), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10454), 3, - anon_sym_ATendfinished, - aux_sym__notification_token1, - aux_sym__text_token3, - [192736] = 4, - ACTIONS(5323), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12469), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [192750] = 4, - ACTIONS(12261), 1, + [188096] = 4, + ACTIONS(12837), 1, + anon_sym_RPAREN, + ACTIONS(12955), 1, aux_sym_parameter_token1, - ACTIONS(12471), 1, + STATE(5344), 1, + sym__text_with_parenthesis, + STATE(4292), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [188110] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(12958), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4310), 2, + STATE(4291), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192764] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12473), 1, - anon_sym_ATdefault, - ACTIONS(12475), 1, - anon_sym_ATendswitch, - STATE(4460), 2, - sym__case, - aux_sym_switch_repeat1, - [192778] = 2, - ACTIONS(10476), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10474), 3, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - aux_sym__text_token3, - [192788] = 4, - ACTIONS(6054), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12477), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [192802] = 4, - ACTIONS(12261), 1, + [188124] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12479), 1, + ACTIONS(12960), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192816] = 4, - ACTIONS(12259), 1, + [188138] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12481), 1, + ACTIONS(12962), 1, anon_sym_ATdefault, - ACTIONS(12483), 1, + ACTIONS(12964), 1, anon_sym_ATendswitch, - STATE(4393), 2, + STATE(4302), 2, sym__case, aux_sym_switch_repeat1, - [192830] = 2, - ACTIONS(10456), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10454), 3, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - aux_sym__text_token3, - [192840] = 4, - ACTIONS(12259), 1, + [188152] = 4, + ACTIONS(5307), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12485), 1, + ACTIONS(12966), 1, anon_sym_ATdefault, - ACTIONS(12487), 1, - anon_sym_ATendswitch, - STATE(4321), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192854] = 4, - ACTIONS(4504), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + [188166] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12489), 1, + ACTIONS(12968), 1, anon_sym_ATdefault, - STATE(4368), 2, + ACTIONS(12970), 1, + anon_sym_ATendswitch, + STATE(4316), 2, sym__case, aux_sym_switch_repeat1, - [192868] = 4, - ACTIONS(12261), 1, + [188180] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12491), 1, + ACTIONS(12972), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4394), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192882] = 4, - ACTIONS(12261), 1, + [188194] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12493), 1, + ACTIONS(12974), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4429), 2, + STATE(4294), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192896] = 4, - ACTIONS(12383), 1, - anon_sym_RPAREN2, - ACTIONS(12495), 1, + [188208] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - STATE(5544), 1, + ACTIONS(12976), 1, + anon_sym_RPAREN2, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192910] = 4, - ACTIONS(6080), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12498), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [192924] = 4, - ACTIONS(12259), 1, + [188222] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12500), 1, + ACTIONS(12978), 1, anon_sym_ATdefault, - ACTIONS(12502), 1, + ACTIONS(12980), 1, anon_sym_ATendswitch, - STATE(4422), 2, + STATE(4296), 2, sym__case, aux_sym_switch_repeat1, - [192938] = 4, - ACTIONS(12420), 1, - aux_sym_parameter_token1, - ACTIONS(12504), 1, - anon_sym_RPAREN, - STATE(5465), 1, - sym__text_with_parenthesis, - STATE(4367), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [192952] = 4, - ACTIONS(12259), 1, + [188236] = 4, + ACTIONS(6829), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12506), 1, + ACTIONS(12982), 1, anon_sym_ATdefault, - ACTIONS(12508), 1, - anon_sym_ATendswitch, - STATE(4373), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [192966] = 4, - ACTIONS(12261), 1, + [188250] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12510), 1, + ACTIONS(12984), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4419), 2, + STATE(4239), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [192980] = 2, - ACTIONS(10476), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10474), 3, - anon_sym_ATendafter, - aux_sym__notification_token1, - aux_sym__text_token3, - [192990] = 4, - ACTIONS(5397), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12512), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193004] = 2, - ACTIONS(10456), 2, + [188264] = 2, + ACTIONS(11002), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 3, - anon_sym_ATendafter, + ACTIONS(11000), 3, + anon_sym_ATendfinished, aux_sym__notification_token1, aux_sym__text_token3, - [193014] = 4, - ACTIONS(12261), 1, + [188274] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12514), 1, + ACTIONS(12986), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4298), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193028] = 4, - ACTIONS(12259), 1, + [188288] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12516), 1, + ACTIONS(12988), 1, anon_sym_ATdefault, - ACTIONS(12518), 1, - anon_sym_ATendswitch, - STATE(4408), 2, - sym__case, - aux_sym_switch_repeat1, - [193042] = 4, - ACTIONS(6436), 1, + ACTIONS(12990), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12520), 1, - anon_sym_ATdefault, - STATE(4368), 2, + STATE(4260), 2, sym__case, aux_sym_switch_repeat1, - [193056] = 4, - ACTIONS(12261), 1, + [188302] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12522), 1, + ACTIONS(12992), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4410), 2, + STATE(4300), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193070] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12524), 1, - anon_sym_ATdefault, - ACTIONS(12526), 1, - anon_sym_ATendswitch, - STATE(4436), 2, - sym__case, - aux_sym_switch_repeat1, - [193084] = 4, - ACTIONS(5928), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12528), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193098] = 4, - ACTIONS(12261), 1, + [188316] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12530), 1, + ACTIONS(12994), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193112] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12532), 1, - anon_sym_ATdefault, - ACTIONS(12534), 1, - anon_sym_ATendswitch, - STATE(4428), 2, - sym__case, - aux_sym_switch_repeat1, - [193126] = 4, - ACTIONS(12261), 1, + [188330] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12536), 1, + ACTIONS(12996), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4308), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193140] = 4, - ACTIONS(12261), 1, + [188344] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12538), 1, + ACTIONS(12998), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193154] = 4, - ACTIONS(12261), 1, + [188358] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12540), 1, + ACTIONS(13000), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4335), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193168] = 4, - ACTIONS(12261), 1, + [188372] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12542), 1, + ACTIONS(13002), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4461), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193182] = 4, - ACTIONS(5703), 1, + [188386] = 4, + ACTIONS(6280), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12544), 1, + ACTIONS(13004), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193196] = 2, - ACTIONS(12381), 2, + [188400] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(13006), 1, + anon_sym_RPAREN2, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4237), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [188414] = 2, + ACTIONS(12784), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12379), 3, - anon_sym_ATendafter, + ACTIONS(12782), 3, + anon_sym_ATenderror, aux_sym__notification_token1, aux_sym__text_token3, - [193206] = 2, - ACTIONS(10456), 2, + [188424] = 4, + ACTIONS(5909), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13008), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [188438] = 4, + ACTIONS(5345), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13010), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [188452] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(13012), 1, + anon_sym_RPAREN2, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4237), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [188466] = 2, + ACTIONS(10954), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 3, - anon_sym_ATenderror, + ACTIONS(10952), 3, + anon_sym_ATendfinished, aux_sym__notification_token1, aux_sym__text_token3, - [193216] = 4, - ACTIONS(5419), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + [188476] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12546), 1, + ACTIONS(13014), 1, anon_sym_ATdefault, - STATE(4368), 2, + ACTIONS(13016), 1, + anon_sym_ATendswitch, + STATE(4317), 2, sym__case, aux_sym_switch_repeat1, - [193230] = 2, - ACTIONS(10456), 2, + [188490] = 2, + ACTIONS(11002), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(10454), 3, - anon_sym_ATendbefore, + ACTIONS(11000), 3, + anon_sym_ATendsuccess, aux_sym__notification_token1, aux_sym__text_token3, - [193240] = 4, - ACTIONS(12261), 1, + [188500] = 2, + ACTIONS(10954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10952), 3, + anon_sym_ATendsuccess, + aux_sym__notification_token1, + aux_sym__text_token3, + [188510] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12548), 1, + ACTIONS(13018), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4305), 2, + STATE(4310), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193254] = 4, - ACTIONS(4482), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12550), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193268] = 4, - ACTIONS(12261), 1, + [188524] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12552), 1, + ACTIONS(13020), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4318), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193282] = 4, - ACTIONS(12261), 1, + [188538] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12554), 1, + ACTIONS(13022), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4237), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [188552] = 4, + ACTIONS(12765), 1, + aux_sym_parameter_token1, + ACTIONS(13024), 1, + anon_sym_RPAREN, + STATE(5344), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4292), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193296] = 4, - ACTIONS(4334), 1, + [188566] = 4, + ACTIONS(8422), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12556), 1, + ACTIONS(13026), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193310] = 4, - ACTIONS(12259), 1, + [188580] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12558), 1, + ACTIONS(13028), 1, anon_sym_ATdefault, - ACTIONS(12560), 1, + ACTIONS(13030), 1, anon_sym_ATendswitch, - STATE(4474), 2, + STATE(4337), 2, sym__case, aux_sym_switch_repeat1, - [193324] = 2, - ACTIONS(12381), 2, + [188594] = 2, + ACTIONS(11002), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12379), 3, - anon_sym_ATendfinished, + ACTIONS(11000), 3, + anon_sym_ATenderror, aux_sym__notification_token1, aux_sym__text_token3, - [193334] = 4, - ACTIONS(12261), 1, + [188604] = 2, + ACTIONS(10954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10952), 3, + anon_sym_ATendafter, + aux_sym__notification_token1, + aux_sym__text_token3, + [188614] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12562), 1, + ACTIONS(13032), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4383), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193348] = 4, - ACTIONS(12261), 1, + [188628] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12564), 1, + ACTIONS(13034), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4441), 2, + STATE(4360), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193362] = 4, - ACTIONS(6484), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12566), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193376] = 2, - ACTIONS(10476), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(10474), 3, - anon_sym_ATenderror, - aux_sym__notification_token1, - aux_sym__text_token3, - [193386] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12568), 1, - anon_sym_ATdefault, - ACTIONS(12570), 1, + [188642] = 4, + ACTIONS(5638), 1, anon_sym_ATendswitch, - STATE(4415), 2, - sym__case, - aux_sym_switch_repeat1, - [193400] = 4, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12572), 1, + ACTIONS(13036), 1, anon_sym_ATdefault, - ACTIONS(12574), 1, - anon_sym_ATendswitch, - STATE(4425), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193414] = 4, - ACTIONS(12259), 1, + [188656] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12576), 1, + ACTIONS(13038), 1, anon_sym_ATdefault, - ACTIONS(12578), 1, + ACTIONS(13040), 1, anon_sym_ATendswitch, - STATE(4443), 2, + STATE(4313), 2, sym__case, aux_sym_switch_repeat1, - [193428] = 4, - ACTIONS(12261), 1, + [188670] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12580), 1, + ACTIONS(13042), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193442] = 4, - ACTIONS(12261), 1, + [188684] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12582), 1, + ACTIONS(13044), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193456] = 4, - ACTIONS(5313), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12584), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193470] = 4, - ACTIONS(7067), 1, + [188698] = 4, + ACTIONS(6791), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12586), 1, + ACTIONS(13046), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193484] = 4, - ACTIONS(12261), 1, + [188712] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12588), 1, + ACTIONS(13048), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4204), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193498] = 2, - ACTIONS(12381), 2, + [188726] = 2, + ACTIONS(11002), 2, aux_sym__text_token1, aux_sym__text_token2, - ACTIONS(12379), 3, - anon_sym_ATenderror, + ACTIONS(11000), 3, + anon_sym_ATendbefore, aux_sym__notification_token1, aux_sym__text_token3, - [193508] = 4, - ACTIONS(12261), 1, + [188736] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13050), 1, + anon_sym_ATdefault, + ACTIONS(13052), 1, + anon_sym_ATendswitch, + STATE(4333), 2, + sym__case, + aux_sym_switch_repeat1, + [188750] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12590), 1, + ACTIONS(13054), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4366), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193522] = 4, - ACTIONS(12261), 1, + [188764] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13056), 1, + anon_sym_ATdefault, + ACTIONS(13058), 1, + anon_sym_ATendswitch, + STATE(4327), 2, + sym__case, + aux_sym_switch_repeat1, + [188778] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12592), 1, + ACTIONS(13060), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4430), 2, + STATE(4331), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193536] = 4, - ACTIONS(12261), 1, + [188792] = 4, + ACTIONS(12721), 1, + aux_sym_parameter_token1, + ACTIONS(13062), 1, + anon_sym_RPAREN2, + STATE(5409), 1, + sym__text_with_parenthesis, + STATE(4237), 2, + sym_parameter, + aux_sym__text_with_parenthesis_repeat1, + [188806] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12594), 1, + ACTIONS(13064), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4478), 2, + STATE(4336), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193550] = 4, - ACTIONS(12261), 1, + [188820] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12596), 1, + ACTIONS(13066), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4366), 2, + STATE(4359), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193564] = 4, - ACTIONS(12261), 1, + [188834] = 4, + ACTIONS(7256), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13068), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [188848] = 2, + ACTIONS(10954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10952), 3, + anon_sym_ATendbefore, + aux_sym__notification_token1, + aux_sym__text_token3, + [188858] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12598), 1, + ACTIONS(13070), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4455), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193578] = 4, - ACTIONS(12259), 1, + [188872] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12600), 1, + ACTIONS(13072), 1, anon_sym_ATdefault, - ACTIONS(12602), 1, + ACTIONS(13074), 1, anon_sym_ATendswitch, - STATE(4444), 2, + STATE(4347), 2, sym__case, aux_sym_switch_repeat1, - [193592] = 4, - ACTIONS(12259), 1, + [188886] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12604), 1, + ACTIONS(13076), 1, anon_sym_ATdefault, - ACTIONS(12606), 1, + ACTIONS(13078), 1, anon_sym_ATendswitch, - STATE(4456), 2, + STATE(4243), 2, sym__case, aux_sym_switch_repeat1, - [193606] = 4, - ACTIONS(7017), 1, + [188900] = 4, + ACTIONS(5676), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12608), 1, + ACTIONS(13080), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193620] = 4, - ACTIONS(12261), 1, + [188914] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12610), 1, + ACTIONS(13082), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193634] = 4, - ACTIONS(5707), 1, + [188928] = 4, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13084), 1, + anon_sym_ATdefault, + ACTIONS(13086), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + STATE(4352), 2, + sym__case, + aux_sym_switch_repeat1, + [188942] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12612), 1, + ACTIONS(13088), 1, anon_sym_ATdefault, - STATE(4368), 2, + ACTIONS(13090), 1, + anon_sym_ATendswitch, + STATE(4358), 2, sym__case, aux_sym_switch_repeat1, - [193648] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12614), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4420), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [193662] = 4, - ACTIONS(12261), 1, + [188956] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12616), 1, + ACTIONS(13092), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4471), 2, + STATE(4349), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193676] = 4, - ACTIONS(12261), 1, + [188970] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12618), 1, + ACTIONS(13094), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4475), 2, + STATE(4261), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193690] = 4, - ACTIONS(5649), 1, + [188984] = 4, + ACTIONS(6755), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12620), 1, + ACTIONS(13096), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193704] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12622), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4401), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [193718] = 2, - ACTIONS(12381), 2, - aux_sym__text_token1, - aux_sym__text_token2, - ACTIONS(12379), 3, - anon_sym_ATendsuccess, - aux_sym__notification_token1, - aux_sym__text_token3, - [193728] = 4, - ACTIONS(12261), 1, + [188998] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12624), 1, + ACTIONS(13098), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193742] = 4, - ACTIONS(12261), 1, + [189012] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12626), 1, + ACTIONS(13100), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193756] = 4, - ACTIONS(12259), 1, + [189026] = 2, + ACTIONS(10954), 2, + aux_sym__text_token1, + aux_sym__text_token2, + ACTIONS(10952), 3, + anon_sym_ATenderror, + aux_sym__notification_token1, + aux_sym__text_token3, + [189036] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12628), 1, + ACTIONS(13102), 1, anon_sym_ATdefault, - ACTIONS(12630), 1, + ACTIONS(13104), 1, anon_sym_ATendswitch, - STATE(4477), 2, + STATE(4364), 2, sym__case, aux_sym_switch_repeat1, - [193770] = 4, - ACTIONS(12261), 1, + [189050] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12632), 1, + ACTIONS(13106), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4463), 2, + STATE(4353), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193784] = 4, - ACTIONS(5675), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12634), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193798] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12636), 1, - anon_sym_ATdefault, - ACTIONS(12638), 1, - anon_sym_ATendswitch, - STATE(4470), 2, - sym__case, - aux_sym_switch_repeat1, - [193812] = 4, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12640), 1, - anon_sym_ATdefault, - ACTIONS(12642), 1, + [189064] = 4, + ACTIONS(5917), 1, anon_sym_ATendswitch, - STATE(4402), 2, - sym__case, - aux_sym_switch_repeat1, - [193826] = 4, - ACTIONS(6460), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12644), 1, + ACTIONS(13108), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193840] = 4, - ACTIONS(12261), 1, - aux_sym_parameter_token1, - ACTIONS(12646), 1, - anon_sym_RPAREN2, - STATE(5544), 1, - sym__text_with_parenthesis, - STATE(4401), 2, - sym_parameter, - aux_sym__text_with_parenthesis_repeat1, - [193854] = 4, - ACTIONS(12261), 1, + [189078] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12648), 1, + ACTIONS(13110), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4314), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193868] = 4, - ACTIONS(12261), 1, + [189092] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12650), 1, + ACTIONS(13112), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4447), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193882] = 4, - ACTIONS(6410), 1, - anon_sym_ATendswitch, - ACTIONS(12259), 1, - anon_sym_ATcase, - ACTIONS(12652), 1, - anon_sym_ATdefault, - STATE(4368), 2, - sym__case, - aux_sym_switch_repeat1, - [193896] = 4, - ACTIONS(12261), 1, + [189106] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12654), 1, + ACTIONS(13114), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4258), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193910] = 4, - ACTIONS(12259), 1, + [189120] = 4, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12656), 1, + ACTIONS(13116), 1, anon_sym_ATdefault, - ACTIONS(12658), 1, + ACTIONS(13118), 1, anon_sym_ATendswitch, - STATE(4467), 2, + STATE(4371), 2, sym__case, aux_sym_switch_repeat1, - [193924] = 4, - ACTIONS(6440), 1, + [189134] = 4, + ACTIONS(6522), 1, anon_sym_ATendswitch, - ACTIONS(12259), 1, + ACTIONS(12719), 1, anon_sym_ATcase, - ACTIONS(12660), 1, + ACTIONS(13120), 1, anon_sym_ATdefault, - STATE(4368), 2, + STATE(4217), 2, sym__case, aux_sym_switch_repeat1, - [193938] = 4, - ACTIONS(12261), 1, + [189148] = 4, + ACTIONS(12721), 1, aux_sym_parameter_token1, - ACTIONS(12662), 1, + ACTIONS(13122), 1, anon_sym_RPAREN2, - STATE(5544), 1, + STATE(5409), 1, sym__text_with_parenthesis, - STATE(4401), 2, + STATE(4237), 2, sym_parameter, aux_sym__text_with_parenthesis_repeat1, - [193952] = 3, - ACTIONS(10606), 1, + [189162] = 4, + ACTIONS(5871), 1, + anon_sym_ATendswitch, + ACTIONS(12719), 1, + anon_sym_ATcase, + ACTIONS(13124), 1, + anon_sym_ATdefault, + STATE(4217), 2, + sym__case, + aux_sym_switch_repeat1, + [189176] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6356), 1, - sym__directive_body_with_parameter, - [193962] = 3, - ACTIONS(10564), 1, + STATE(6216), 1, + sym__if_statement_directive_body, + [189186] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(647), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5868), 1, + STATE(6673), 1, sym__directive_body_with_parameter, - [193972] = 3, - ACTIONS(10582), 1, + [189196] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5731), 1, + STATE(5866), 1, sym__directive_body_with_parameter, - [193982] = 3, - ACTIONS(10588), 1, + [189206] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5730), 1, + STATE(5867), 1, sym__directive_body_with_parameter, - [193992] = 3, - ACTIONS(10594), 1, + [189216] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5729), 1, + STATE(5869), 1, sym__directive_body_with_parameter, - [194002] = 3, - ACTIONS(10600), 1, + [189226] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5724), 1, + STATE(5870), 1, sym__directive_body_with_parameter, - [194012] = 3, - ACTIONS(10606), 1, + [189236] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5723), 1, + STATE(5871), 1, sym__directive_body_with_parameter, - [194022] = 3, - ACTIONS(10612), 1, + [189246] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5721), 1, + STATE(5873), 1, sym__directive_body_with_parameter, - [194032] = 3, - ACTIONS(10618), 1, + [189256] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5720), 1, + STATE(5589), 1, sym__directive_body_with_parameter, - [194042] = 3, - ACTIONS(10620), 1, + [189266] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(122), 1, sym__directive_parameter, - STATE(5719), 1, - sym__directive_body_with_parameter, - [194052] = 3, - ACTIONS(10622), 1, + STATE(5874), 1, + sym__if_statement_directive_body, + [189276] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5718), 1, - sym__directive_body_with_parameter, - [194062] = 3, - ACTIONS(9978), 1, + STATE(5875), 1, + sym__if_statement_directive_body, + [189286] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5716), 1, + STATE(5876), 1, sym__if_statement_directive_body, - [194072] = 3, - ACTIONS(9972), 1, + [189296] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(115), 1, sym__directive_parameter, - STATE(5715), 1, + STATE(5877), 1, sym__if_statement_directive_body, - [194082] = 3, - ACTIONS(9944), 1, + [189306] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5714), 1, + STATE(5878), 1, sym__if_statement_directive_body, - [194092] = 3, - ACTIONS(10040), 1, + [189316] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5713), 1, + STATE(5881), 1, sym__if_statement_directive_body, - [194102] = 3, - ACTIONS(10068), 1, + [189326] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5712), 1, + STATE(5882), 1, sym__if_statement_directive_body, - [194112] = 3, - ACTIONS(10026), 1, + [189336] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5709), 1, + STATE(5886), 1, sym__if_statement_directive_body, - [194122] = 3, - ACTIONS(10026), 1, + [189346] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5708), 1, + STATE(5788), 1, sym__if_statement_directive_body, - [194132] = 3, - ACTIONS(9970), 1, + [189356] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5707), 1, + STATE(5787), 1, sym__if_statement_directive_body, - [194142] = 3, - ACTIONS(9988), 1, + [189366] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5702), 1, + STATE(5979), 1, + sym__directive_body_with_parameter, + [189376] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(5890), 1, sym__if_statement_directive_body, - [194152] = 3, - ACTIONS(10008), 1, + [189386] = 3, + ACTIONS(11130), 1, + anon_sym_LPAREN2, + STATE(641), 1, + sym__directive_parameter, + STATE(5588), 1, + sym__directive_body_with_parameter, + [189396] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5701), 1, + STATE(5587), 1, + sym__directive_body_with_parameter, + [189406] = 3, + ACTIONS(10566), 1, + anon_sym_LPAREN2, + STATE(78), 1, + sym__directive_parameter, + STATE(5891), 1, sym__if_statement_directive_body, - [194162] = 3, - ACTIONS(10026), 1, + [189416] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5700), 1, + STATE(5892), 1, sym__if_statement_directive_body, - [194172] = 3, - ACTIONS(10650), 1, + [189426] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5699), 1, + STATE(5893), 1, sym__directive_body_with_parameter, - [194182] = 3, - ACTIONS(10638), 1, + [189436] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5698), 1, + STATE(5894), 1, sym__directive_body_with_parameter, - [194192] = 3, - ACTIONS(10624), 1, + [189446] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5697), 1, + STATE(5895), 1, sym__directive_body_with_parameter, - [194202] = 3, - ACTIONS(10478), 1, + [189456] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5696), 1, + STATE(5896), 1, sym__directive_body_with_parameter, - [194212] = 3, - ACTIONS(10326), 1, + [189466] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5695), 1, + STATE(5897), 1, sym__directive_body_with_parameter, - [194222] = 3, - ACTIONS(10630), 1, + [189476] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5692), 1, + STATE(5899), 1, sym__directive_body_with_parameter, - [194232] = 3, - ACTIONS(10582), 1, + [189486] = 3, + ACTIONS(11144), 1, + anon_sym_LPAREN2, + STATE(633), 1, + sym__directive_parameter, + STATE(5582), 1, + sym__directive_body_with_parameter, + [189496] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5658), 1, + STATE(5920), 1, sym__directive_body_with_parameter, - [194242] = 3, - ACTIONS(10588), 1, + [189506] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5657), 1, + STATE(5581), 1, sym__directive_body_with_parameter, - [194252] = 3, - ACTIONS(10594), 1, + [189516] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5656), 1, + STATE(5579), 1, sym__directive_body_with_parameter, - [194262] = 3, - ACTIONS(10600), 1, + [189526] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5651), 1, + STATE(5921), 1, sym__directive_body_with_parameter, - [194272] = 3, - ACTIONS(10606), 1, + [189536] = 3, + ACTIONS(11136), 1, + anon_sym_LPAREN2, + STATE(637), 1, + sym__directive_parameter, + STATE(5922), 1, + sym__directive_body_with_parameter, + [189546] = 3, + ACTIONS(11144), 1, + anon_sym_LPAREN2, + STATE(633), 1, + sym__directive_parameter, + STATE(5925), 1, + sym__directive_body_with_parameter, + [189556] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5650), 1, + STATE(5926), 1, sym__directive_body_with_parameter, - [194282] = 3, - ACTIONS(10612), 1, + [189566] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5648), 1, + STATE(5928), 1, sym__directive_body_with_parameter, - [194292] = 3, - ACTIONS(10618), 1, + [189576] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5647), 1, + STATE(5929), 1, sym__directive_body_with_parameter, - [194302] = 3, - ACTIONS(10620), 1, + [189586] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5646), 1, + STATE(5930), 1, + sym__directive_body_with_parameter, + [189596] = 3, + ACTIONS(11180), 1, + anon_sym_LPAREN2, + STATE(621), 1, + sym__directive_parameter, + STATE(5931), 1, sym__directive_body_with_parameter, - [194312] = 3, - ACTIONS(10622), 1, + [189606] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5645), 1, + STATE(5578), 1, sym__directive_body_with_parameter, - [194322] = 3, - ACTIONS(9978), 1, + [189616] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5643), 1, + STATE(5932), 1, sym__if_statement_directive_body, - [194332] = 3, - ACTIONS(9972), 1, + [189626] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5642), 1, + STATE(5933), 1, sym__if_statement_directive_body, - [194342] = 3, - ACTIONS(9944), 1, + [189636] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5641), 1, + STATE(5934), 1, sym__if_statement_directive_body, - [194352] = 3, - ACTIONS(10040), 1, + [189646] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5640), 1, + STATE(5935), 1, sym__if_statement_directive_body, - [194362] = 3, - ACTIONS(10068), 1, + [189656] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5639), 1, + STATE(5937), 1, sym__if_statement_directive_body, - [194372] = 3, - ACTIONS(10026), 1, + [189666] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5636), 1, + STATE(5940), 1, sym__if_statement_directive_body, - [194382] = 3, - ACTIONS(10026), 1, + [189676] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5635), 1, + STATE(5941), 1, sym__if_statement_directive_body, - [194392] = 3, - ACTIONS(9970), 1, + [189686] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5634), 1, + STATE(5942), 1, sym__if_statement_directive_body, - [194402] = 3, - ACTIONS(9988), 1, + [189696] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5629), 1, + STATE(5577), 1, + sym__directive_body_with_parameter, + [189706] = 3, + ACTIONS(11180), 1, + anon_sym_LPAREN2, + STATE(621), 1, + sym__directive_parameter, + STATE(5725), 1, + sym__directive_body_with_parameter, + [189716] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(5950), 1, sym__if_statement_directive_body, - [194412] = 3, - ACTIONS(10008), 1, + [189726] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5628), 1, + STATE(5951), 1, sym__if_statement_directive_body, - [194422] = 3, - ACTIONS(10026), 1, + [189736] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5627), 1, + STATE(5952), 1, sym__if_statement_directive_body, - [194432] = 3, - ACTIONS(10650), 1, + [189746] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5626), 1, + STATE(5953), 1, sym__directive_body_with_parameter, - [194442] = 3, - ACTIONS(10638), 1, + [189756] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5625), 1, + STATE(5954), 1, sym__directive_body_with_parameter, - [194452] = 3, - ACTIONS(10624), 1, + [189766] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5624), 1, + STATE(5955), 1, sym__directive_body_with_parameter, - [194462] = 3, - ACTIONS(10478), 1, + [189776] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5623), 1, + STATE(5956), 1, + sym__directive_body_with_parameter, + [189786] = 3, + ACTIONS(10840), 1, + anon_sym_LPAREN2, + STATE(246), 1, + sym__directive_parameter, + STATE(5957), 1, sym__directive_body_with_parameter, - [194472] = 3, - ACTIONS(10326), 1, + [189796] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5622), 1, + STATE(5960), 1, sym__directive_body_with_parameter, - [194482] = 3, - ACTIONS(10630), 1, + [189806] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5620), 1, + STATE(5576), 1, sym__directive_body_with_parameter, - [194492] = 3, - ACTIONS(10582), 1, + [189816] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5589), 1, + STATE(5986), 1, sym__directive_body_with_parameter, - [194502] = 3, - ACTIONS(10588), 1, + [189826] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5588), 1, + STATE(5987), 1, sym__directive_body_with_parameter, - [194512] = 3, - ACTIONS(10594), 1, + [189836] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5587), 1, + STATE(5988), 1, sym__directive_body_with_parameter, - [194522] = 3, - ACTIONS(10600), 1, + [189846] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5582), 1, + STATE(5811), 1, + sym__if_statement_directive_body, + [189856] = 3, + ACTIONS(11144), 1, + anon_sym_LPAREN2, + STATE(633), 1, + sym__directive_parameter, + STATE(5992), 1, sym__directive_body_with_parameter, - [194532] = 3, - ACTIONS(10606), 1, + [189866] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5581), 1, + STATE(5993), 1, sym__directive_body_with_parameter, - [194542] = 3, - ACTIONS(10612), 1, + [189876] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5579), 1, + STATE(5995), 1, sym__directive_body_with_parameter, - [194552] = 3, - ACTIONS(10618), 1, + [189886] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5578), 1, + STATE(5996), 1, sym__directive_body_with_parameter, - [194562] = 3, - ACTIONS(10620), 1, + [189896] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5577), 1, + STATE(5997), 1, sym__directive_body_with_parameter, - [194572] = 3, - ACTIONS(10622), 1, + [189906] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5576), 1, + STATE(5998), 1, sym__directive_body_with_parameter, - [194582] = 3, - ACTIONS(9978), 1, + [189916] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, STATE(5574), 1, sym__if_statement_directive_body, - [194592] = 3, - ACTIONS(9972), 1, + [189926] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(122), 1, sym__directive_parameter, - STATE(5573), 1, + STATE(5999), 1, sym__if_statement_directive_body, - [194602] = 3, - ACTIONS(9944), 1, + [189936] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5572), 1, + STATE(6000), 1, sym__if_statement_directive_body, - [194612] = 3, - ACTIONS(10040), 1, + [189946] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5571), 1, + STATE(6001), 1, sym__if_statement_directive_body, - [194622] = 3, - ACTIONS(10068), 1, + [189956] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(115), 1, sym__directive_parameter, - STATE(5570), 1, + STATE(6002), 1, sym__if_statement_directive_body, - [194632] = 3, - ACTIONS(10026), 1, + [189966] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5567), 1, + STATE(6003), 1, sym__if_statement_directive_body, - [194642] = 3, - ACTIONS(10026), 1, + [189976] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5566), 1, + STATE(6006), 1, sym__if_statement_directive_body, - [194652] = 3, - ACTIONS(9970), 1, + [189986] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5565), 1, + STATE(6007), 1, sym__if_statement_directive_body, - [194662] = 3, - ACTIONS(10630), 1, - anon_sym_LPAREN2, - STATE(526), 1, - sym__directive_parameter, - STATE(6155), 1, - sym__directive_body_with_parameter, - [194672] = 3, - ACTIONS(10326), 1, + [189996] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6122), 1, + STATE(5860), 1, sym__directive_body_with_parameter, - [194682] = 3, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - STATE(100), 1, - sym__directive_parameter, - STATE(5560), 1, - sym__if_statement_directive_body, - [194692] = 3, - ACTIONS(10008), 1, - anon_sym_LPAREN2, - STATE(138), 1, - sym__directive_parameter, - STATE(5559), 1, - sym__if_statement_directive_body, - [194702] = 3, - ACTIONS(10026), 1, + [190006] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5558), 1, + STATE(6008), 1, sym__if_statement_directive_body, - [194712] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(5557), 1, - sym__directive_body_with_parameter, - [194722] = 3, - ACTIONS(10638), 1, - anon_sym_LPAREN2, - STATE(544), 1, - sym__directive_parameter, - STATE(5556), 1, - sym__directive_body_with_parameter, - [194732] = 3, - ACTIONS(10624), 1, - anon_sym_LPAREN2, - STATE(448), 1, - sym__directive_parameter, - STATE(5555), 1, - sym__directive_body_with_parameter, - [194742] = 3, - ACTIONS(10478), 1, + [190016] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5554), 1, + STATE(5724), 1, sym__directive_body_with_parameter, - [194752] = 3, - ACTIONS(10326), 1, + [190026] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5553), 1, + STATE(5723), 1, sym__directive_body_with_parameter, - [194762] = 3, - ACTIONS(10630), 1, + [190036] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5659), 1, + STATE(5859), 1, sym__directive_body_with_parameter, - [194772] = 1, - ACTIONS(10474), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [194778] = 3, - ACTIONS(10582), 1, + [190046] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5948), 1, + STATE(5693), 1, sym__directive_body_with_parameter, - [194788] = 3, - ACTIONS(10588), 1, + [190056] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5951), 1, - sym__directive_body_with_parameter, - [194798] = 3, - ACTIONS(10594), 1, + STATE(6016), 1, + sym__if_statement_directive_body, + [190066] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5855), 1, - sym__directive_body_with_parameter, - [194808] = 3, - ACTIONS(10600), 1, + STATE(6017), 1, + sym__if_statement_directive_body, + [190076] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6036), 1, - sym__directive_body_with_parameter, - [194818] = 3, - ACTIONS(10606), 1, + STATE(6018), 1, + sym__if_statement_directive_body, + [190086] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6038), 1, + STATE(6019), 1, sym__directive_body_with_parameter, - [194828] = 3, - ACTIONS(10612), 1, + [190096] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6046), 1, + STATE(6020), 1, sym__directive_body_with_parameter, - [194838] = 3, - ACTIONS(10618), 1, + [190106] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6047), 1, + STATE(6021), 1, sym__directive_body_with_parameter, - [194848] = 3, - ACTIONS(10620), 1, + [190116] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6055), 1, + STATE(6022), 1, sym__directive_body_with_parameter, - [194858] = 3, - ACTIONS(10622), 1, + [190126] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6062), 1, + STATE(6023), 1, sym__directive_body_with_parameter, - [194868] = 3, - ACTIONS(9978), 1, + [190136] = 1, + ACTIONS(10952), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [190142] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6069), 1, + STATE(5573), 1, sym__if_statement_directive_body, - [194878] = 3, - ACTIONS(9972), 1, + [190152] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6079), 1, - sym__if_statement_directive_body, - [194888] = 3, - ACTIONS(9944), 1, + STATE(6026), 1, + sym__directive_body_with_parameter, + [190162] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5972), 1, - sym__if_statement_directive_body, - [194898] = 3, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6111), 1, - sym__if_statement_directive_body, - [194908] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(6119), 1, - sym__if_statement_directive_body, - [194918] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(6128), 1, - sym__if_statement_directive_body, - [194928] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(6129), 1, - sym__if_statement_directive_body, - [194938] = 3, - ACTIONS(9970), 1, - anon_sym_LPAREN2, - STATE(139), 1, - sym__directive_parameter, - STATE(6132), 1, + STATE(5572), 1, sym__if_statement_directive_body, - [194948] = 3, - ACTIONS(10478), 1, - anon_sym_LPAREN2, - STATE(352), 1, - sym__directive_parameter, - STATE(6121), 1, - sym__directive_body_with_parameter, - [194958] = 3, - ACTIONS(10624), 1, + [190172] = 2, + ACTIONS(13128), 1, + aux_sym__section_parameter_token1, + ACTIONS(13126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [190180] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6091), 1, + STATE(5835), 1, sym__directive_body_with_parameter, - [194968] = 3, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - STATE(100), 1, - sym__directive_parameter, - STATE(6214), 1, - sym__if_statement_directive_body, - [194978] = 3, - ACTIONS(10008), 1, + [190190] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6196), 1, + STATE(5571), 1, sym__if_statement_directive_body, - [194988] = 3, - ACTIONS(10026), 1, + [190200] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6207), 1, - sym__if_statement_directive_body, - [194998] = 3, - ACTIONS(10650), 1, + STATE(5832), 1, + sym__directive_body_with_parameter, + [190210] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6100), 1, + STATE(5831), 1, sym__directive_body_with_parameter, - [195008] = 3, - ACTIONS(10638), 1, + [190220] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6217), 1, + STATE(6046), 1, sym__directive_body_with_parameter, - [195018] = 3, - ACTIONS(10624), 1, + [190230] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6220), 1, + STATE(5830), 1, sym__directive_body_with_parameter, - [195028] = 3, - ACTIONS(10478), 1, + [190240] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6228), 1, + STATE(6047), 1, sym__directive_body_with_parameter, - [195038] = 3, - ACTIONS(10326), 1, + [190250] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6239), 1, + STATE(6048), 1, sym__directive_body_with_parameter, - [195048] = 3, - ACTIONS(10630), 1, + [190260] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6292), 1, + STATE(6053), 1, sym__directive_body_with_parameter, - [195058] = 3, - ACTIONS(10582), 1, + [190270] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6527), 1, + STATE(6054), 1, sym__directive_body_with_parameter, - [195068] = 3, - ACTIONS(10588), 1, + [190280] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6533), 1, + STATE(5829), 1, sym__directive_body_with_parameter, - [195078] = 3, - ACTIONS(10594), 1, + [190290] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6548), 1, + STATE(6056), 1, sym__directive_body_with_parameter, - [195088] = 3, - ACTIONS(10600), 1, + [190300] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6572), 1, + STATE(6057), 1, sym__directive_body_with_parameter, - [195098] = 3, - ACTIONS(10606), 1, + [190310] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6580), 1, + STATE(5828), 1, sym__directive_body_with_parameter, - [195108] = 3, - ACTIONS(10612), 1, + [190320] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6481), 1, - sym__directive_body_with_parameter, - [195118] = 3, - ACTIONS(10618), 1, + STATE(5570), 1, + sym__if_statement_directive_body, + [190330] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6623), 1, + STATE(6058), 1, sym__directive_body_with_parameter, - [195128] = 3, - ACTIONS(10620), 1, + [190340] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6644), 1, + STATE(6059), 1, sym__directive_body_with_parameter, - [195138] = 3, - ACTIONS(10622), 1, + [190350] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6647), 1, - sym__directive_body_with_parameter, - [195148] = 3, - ACTIONS(9978), 1, + STATE(5567), 1, + sym__if_statement_directive_body, + [190360] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6655), 1, + STATE(6060), 1, sym__if_statement_directive_body, - [195158] = 3, - ACTIONS(9972), 1, + [190370] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6671), 1, + STATE(6061), 1, sym__if_statement_directive_body, - [195168] = 3, - ACTIONS(9944), 1, + [190380] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6672), 1, + STATE(6062), 1, sym__if_statement_directive_body, - [195178] = 3, - ACTIONS(10040), 1, + [190390] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6674), 1, - sym__if_statement_directive_body, - [195188] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(6676), 1, - sym__if_statement_directive_body, - [195198] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(6698), 1, - sym__if_statement_directive_body, - [195208] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(6708), 1, + STATE(6063), 1, sym__if_statement_directive_body, - [195218] = 3, - ACTIONS(9970), 1, + [190400] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6719), 1, + STATE(6065), 1, sym__if_statement_directive_body, - [195228] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(5961), 1, - sym__directive_body_with_parameter, - [195238] = 3, - ACTIONS(10026), 1, + [190410] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6059), 1, + STATE(6068), 1, sym__if_statement_directive_body, - [195248] = 3, - ACTIONS(10008), 1, + [190420] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6058), 1, + STATE(6069), 1, sym__if_statement_directive_body, - [195258] = 3, - ACTIONS(9988), 1, + [190430] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6751), 1, + STATE(6070), 1, sym__if_statement_directive_body, - [195268] = 3, - ACTIONS(10008), 1, + [190440] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6772), 1, + STATE(5566), 1, sym__if_statement_directive_body, - [195278] = 3, - ACTIONS(10026), 1, + [190450] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6783), 1, + STATE(5827), 1, sym__if_statement_directive_body, - [195288] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(6793), 1, - sym__directive_body_with_parameter, - [195298] = 3, - ACTIONS(10638), 1, - anon_sym_LPAREN2, - STATE(544), 1, - sym__directive_parameter, - STATE(6794), 1, - sym__directive_body_with_parameter, - [195308] = 3, - ACTIONS(10624), 1, + [190460] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6804), 1, + STATE(5661), 1, sym__directive_body_with_parameter, - [195318] = 3, - ACTIONS(10478), 1, + [190470] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6808), 1, + STATE(5660), 1, sym__directive_body_with_parameter, - [195328] = 3, - ACTIONS(10326), 1, + [190480] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6809), 1, - sym__directive_body_with_parameter, - [195338] = 3, - ACTIONS(10630), 1, + STATE(6078), 1, + sym__if_statement_directive_body, + [190490] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6836), 1, - sym__directive_body_with_parameter, - [195348] = 3, - ACTIONS(10582), 1, + STATE(5826), 1, + sym__if_statement_directive_body, + [190500] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5795), 1, - sym__directive_body_with_parameter, - [195358] = 3, - ACTIONS(10588), 1, + STATE(6079), 1, + sym__if_statement_directive_body, + [190510] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5796), 1, - sym__directive_body_with_parameter, - [195368] = 3, - ACTIONS(10594), 1, + STATE(6080), 1, + sym__if_statement_directive_body, + [190520] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5797), 1, + STATE(6081), 1, sym__directive_body_with_parameter, - [195378] = 3, - ACTIONS(10600), 1, + [190530] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5805), 1, + STATE(6082), 1, sym__directive_body_with_parameter, - [195388] = 3, - ACTIONS(10606), 1, + [190540] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5806), 1, + STATE(6083), 1, sym__directive_body_with_parameter, - [195398] = 3, - ACTIONS(10612), 1, + [190550] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5808), 1, - sym__directive_body_with_parameter, - [195408] = 3, - ACTIONS(10618), 1, + STATE(5825), 1, + sym__if_statement_directive_body, + [190560] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5809), 1, + STATE(6084), 1, sym__directive_body_with_parameter, - [195418] = 3, - ACTIONS(10620), 1, + [190570] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5810), 1, + STATE(6085), 1, sym__directive_body_with_parameter, - [195428] = 3, - ACTIONS(10622), 1, + [190580] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5811), 1, + STATE(6088), 1, sym__directive_body_with_parameter, - [195438] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(5814), 1, - sym__if_statement_directive_body, - [195448] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(5815), 1, - sym__if_statement_directive_body, - [195458] = 3, - ACTIONS(9944), 1, + [190590] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5816), 1, + STATE(5565), 1, sym__if_statement_directive_body, - [195468] = 3, - ACTIONS(10040), 1, + [190600] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5817), 1, - sym__if_statement_directive_body, - [195478] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(5818), 1, - sym__if_statement_directive_body, - [195488] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(5821), 1, - sym__if_statement_directive_body, - [195498] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(5782), 1, - sym__if_statement_directive_body, - [195508] = 3, - ACTIONS(9970), 1, - anon_sym_LPAREN2, - STATE(139), 1, - sym__directive_parameter, - STATE(5825), 1, + STATE(5789), 1, sym__if_statement_directive_body, - [195518] = 3, - ACTIONS(9988), 1, + [190610] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6057), 1, - sym__if_statement_directive_body, - [195528] = 3, - ACTIONS(9970), 1, + STATE(6112), 1, + sym__directive_body_with_parameter, + [190620] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5994), 1, - sym__if_statement_directive_body, - [195538] = 3, - ACTIONS(10026), 1, + STATE(6113), 1, + sym__directive_body_with_parameter, + [190630] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5993), 1, + STATE(5691), 1, sym__if_statement_directive_body, - [195548] = 3, - ACTIONS(9988), 1, + [190640] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5830), 1, - sym__if_statement_directive_body, - [195558] = 3, - ACTIONS(10008), 1, + STATE(6114), 1, + sym__directive_body_with_parameter, + [190650] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5831), 1, - sym__if_statement_directive_body, - [195568] = 3, - ACTIONS(10026), 1, + STATE(6119), 1, + sym__directive_body_with_parameter, + [190660] = 1, + ACTIONS(11000), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [190666] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5832), 1, - sym__if_statement_directive_body, - [195578] = 3, - ACTIONS(10650), 1, + STATE(6120), 1, + sym__directive_body_with_parameter, + [190676] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5836), 1, + STATE(6122), 1, sym__directive_body_with_parameter, - [195588] = 3, - ACTIONS(10638), 1, + [190686] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5837), 1, + STATE(6123), 1, sym__directive_body_with_parameter, - [195598] = 3, - ACTIONS(10624), 1, + [190696] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5838), 1, - sym__directive_body_with_parameter, - [195608] = 3, - ACTIONS(10478), 1, + STATE(5818), 1, + sym__if_statement_directive_body, + [190706] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5839), 1, - sym__directive_body_with_parameter, - [195618] = 3, - ACTIONS(10326), 1, + STATE(5817), 1, + sym__if_statement_directive_body, + [190716] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5840), 1, + STATE(6124), 1, sym__directive_body_with_parameter, - [195628] = 3, - ACTIONS(10630), 1, + [190726] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5842), 1, + STATE(6125), 1, sym__directive_body_with_parameter, - [195638] = 3, - ACTIONS(10582), 1, + [190736] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5883), 1, - sym__directive_body_with_parameter, - [195648] = 3, - ACTIONS(10588), 1, + STATE(5816), 1, + sym__if_statement_directive_body, + [190746] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5884), 1, - sym__directive_body_with_parameter, - [195658] = 3, - ACTIONS(10594), 1, + STATE(5560), 1, + sym__if_statement_directive_body, + [190756] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(122), 1, sym__directive_parameter, - STATE(5885), 1, - sym__directive_body_with_parameter, - [195668] = 3, - ACTIONS(10600), 1, + STATE(6126), 1, + sym__if_statement_directive_body, + [190766] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5892), 1, - sym__directive_body_with_parameter, - [195678] = 1, - ACTIONS(10454), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [195684] = 3, - ACTIONS(10606), 1, + STATE(6127), 1, + sym__if_statement_directive_body, + [190776] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5893), 1, - sym__directive_body_with_parameter, - [195694] = 3, - ACTIONS(10612), 1, + STATE(6129), 1, + sym__if_statement_directive_body, + [190786] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(115), 1, sym__directive_parameter, - STATE(5895), 1, - sym__directive_body_with_parameter, - [195704] = 3, - ACTIONS(10618), 1, + STATE(6130), 1, + sym__if_statement_directive_body, + [190796] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5896), 1, - sym__directive_body_with_parameter, - [195714] = 3, - ACTIONS(10620), 1, + STATE(6131), 1, + sym__if_statement_directive_body, + [190806] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5900), 1, - sym__directive_body_with_parameter, - [195724] = 3, - ACTIONS(10622), 1, + STATE(6133), 1, + sym__if_statement_directive_body, + [190816] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5901), 1, - sym__directive_body_with_parameter, - [195734] = 3, - ACTIONS(9978), 1, + STATE(6135), 1, + sym__if_statement_directive_body, + [190826] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5903), 1, + STATE(6136), 1, sym__if_statement_directive_body, - [195744] = 3, - ACTIONS(9972), 1, + [190836] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, STATE(119), 1, sym__directive_parameter, - STATE(5904), 1, + STATE(5814), 1, sym__if_statement_directive_body, - [195754] = 3, - ACTIONS(9944), 1, + [190846] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(115), 1, sym__directive_parameter, - STATE(5905), 1, + STATE(5813), 1, sym__if_statement_directive_body, - [195764] = 3, - ACTIONS(10040), 1, + [190856] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5906), 1, + STATE(5812), 1, sym__if_statement_directive_body, - [195774] = 3, - ACTIONS(10068), 1, + [190866] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5907), 1, + STATE(5559), 1, sym__if_statement_directive_body, - [195784] = 3, - ACTIONS(10026), 1, + [190876] = 2, + ACTIONS(13130), 1, + anon_sym_LPAREN, + ACTIONS(13132), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [190884] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5911), 1, + STATE(5558), 1, sym__if_statement_directive_body, - [195794] = 3, - ACTIONS(10026), 1, + [190894] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5912), 1, - sym__if_statement_directive_body, - [195804] = 3, - ACTIONS(9970), 1, + STATE(5557), 1, + sym__directive_body_with_parameter, + [190904] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(122), 1, sym__directive_parameter, - STATE(5913), 1, + STATE(5757), 1, sym__if_statement_directive_body, - [195814] = 3, - ACTIONS(10026), 1, + [190914] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5963), 1, + STATE(5762), 1, sym__if_statement_directive_body, - [195824] = 3, - ACTIONS(10068), 1, + [190924] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5929), 1, + STATE(6143), 1, sym__if_statement_directive_body, - [195834] = 3, - ACTIONS(9988), 1, + [190934] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5920), 1, + STATE(6144), 1, sym__if_statement_directive_body, - [195844] = 3, - ACTIONS(10008), 1, + [190944] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5921), 1, + STATE(6145), 1, sym__if_statement_directive_body, - [195854] = 3, - ACTIONS(10026), 1, + [190954] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5922), 1, + STATE(6146), 1, + sym__directive_body_with_parameter, + [190964] = 3, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + STATE(533), 1, + sym__directive_parameter, + STATE(6147), 1, + sym__directive_body_with_parameter, + [190974] = 3, + ACTIONS(11138), 1, + anon_sym_LPAREN2, + STATE(439), 1, + sym__directive_parameter, + STATE(6148), 1, + sym__directive_body_with_parameter, + [190984] = 3, + ACTIONS(10524), 1, + anon_sym_LPAREN2, + STATE(122), 1, + sym__directive_parameter, + STATE(5748), 1, sym__if_statement_directive_body, - [195864] = 3, - ACTIONS(10650), 1, + [190994] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5923), 1, + STATE(6149), 1, sym__directive_body_with_parameter, - [195874] = 3, - ACTIONS(10638), 1, + [191004] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5924), 1, + STATE(6150), 1, sym__directive_body_with_parameter, - [195884] = 3, - ACTIONS(10624), 1, + [191014] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5925), 1, + STATE(6153), 1, sym__directive_body_with_parameter, - [195894] = 3, - ACTIONS(10478), 1, + [191024] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5926), 1, + STATE(5556), 1, sym__directive_body_with_parameter, - [195904] = 3, - ACTIONS(10326), 1, + [191034] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5927), 1, + STATE(5555), 1, sym__directive_body_with_parameter, - [195914] = 3, - ACTIONS(10630), 1, + [191044] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5932), 1, + STATE(5809), 1, sym__directive_body_with_parameter, - [195924] = 3, - ACTIONS(10582), 1, + [191054] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5973), 1, + STATE(6170), 1, sym__directive_body_with_parameter, - [195934] = 3, - ACTIONS(10588), 1, + [191064] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5974), 1, + STATE(5443), 1, sym__directive_body_with_parameter, - [195944] = 3, - ACTIONS(10594), 1, + [191074] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5975), 1, + STATE(6175), 1, sym__directive_body_with_parameter, - [195954] = 3, - ACTIONS(10600), 1, + [191084] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5980), 1, + STATE(6180), 1, sym__directive_body_with_parameter, - [195964] = 3, - ACTIONS(10606), 1, + [191094] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5981), 1, + STATE(6181), 1, sym__directive_body_with_parameter, - [195974] = 3, - ACTIONS(10612), 1, + [191104] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5985), 1, + STATE(6183), 1, sym__directive_body_with_parameter, - [195984] = 3, - ACTIONS(10618), 1, + [191114] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5986), 1, + STATE(6184), 1, sym__directive_body_with_parameter, - [195994] = 3, - ACTIONS(10620), 1, + [191124] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5987), 1, + STATE(6185), 1, sym__directive_body_with_parameter, - [196004] = 3, - ACTIONS(10622), 1, + [191134] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5988), 1, + STATE(6186), 1, sym__directive_body_with_parameter, - [196014] = 3, - ACTIONS(9978), 1, + [191144] = 3, + ACTIONS(11004), 1, + anon_sym_LPAREN2, + STATE(345), 1, + sym__directive_parameter, + STATE(5554), 1, + sym__directive_body_with_parameter, + [191154] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5990), 1, + STATE(6187), 1, sym__if_statement_directive_body, - [196024] = 3, - ACTIONS(9972), 1, + [191164] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5991), 1, + STATE(6188), 1, sym__if_statement_directive_body, - [196034] = 3, - ACTIONS(9944), 1, + [191174] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5992), 1, + STATE(6189), 1, sym__if_statement_directive_body, - [196044] = 3, - ACTIONS(10040), 1, + [191184] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5996), 1, + STATE(6190), 1, sym__if_statement_directive_body, - [196054] = 3, - ACTIONS(10068), 1, + [191194] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5997), 1, + STATE(6191), 1, sym__if_statement_directive_body, - [196064] = 3, - ACTIONS(10026), 1, + [191204] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6000), 1, + STATE(6089), 1, sym__if_statement_directive_body, - [196074] = 3, - ACTIONS(10026), 1, + [191214] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6001), 1, + STATE(6195), 1, sym__if_statement_directive_body, - [196084] = 3, - ACTIONS(9970), 1, + [191224] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6002), 1, + STATE(6196), 1, sym__if_statement_directive_body, - [196094] = 3, - ACTIONS(10040), 1, + [191234] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5899), 1, - sym__if_statement_directive_body, - [196104] = 3, - ACTIONS(9944), 1, + STATE(5807), 1, + sym__directive_body_with_parameter, + [191244] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5898), 1, - sym__if_statement_directive_body, - [196114] = 3, - ACTIONS(10638), 1, + STATE(5597), 1, + sym__directive_body_with_parameter, + [191254] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6090), 1, + STATE(5806), 1, sym__directive_body_with_parameter, - [196124] = 3, - ACTIONS(9988), 1, + [191264] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6008), 1, + STATE(5595), 1, + sym__directive_body_with_parameter, + [191274] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(6201), 1, sym__if_statement_directive_body, - [196134] = 3, - ACTIONS(10008), 1, + [191284] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6009), 1, + STATE(6202), 1, sym__if_statement_directive_body, - [196144] = 3, - ACTIONS(10026), 1, + [191294] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6010), 1, + STATE(6203), 1, sym__if_statement_directive_body, - [196154] = 3, - ACTIONS(10650), 1, + [191304] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6011), 1, + STATE(6205), 1, sym__directive_body_with_parameter, - [196164] = 3, - ACTIONS(10638), 1, + [191314] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6012), 1, + STATE(6206), 1, sym__directive_body_with_parameter, - [196174] = 3, - ACTIONS(10624), 1, + [191324] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6013), 1, + STATE(6207), 1, sym__directive_body_with_parameter, - [196184] = 3, - ACTIONS(10478), 1, + [191334] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6016), 1, + STATE(6208), 1, sym__directive_body_with_parameter, - [196194] = 3, - ACTIONS(10326), 1, + [191344] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6017), 1, + STATE(6209), 1, sym__directive_body_with_parameter, - [196204] = 3, - ACTIONS(10630), 1, + [191354] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6020), 1, + STATE(6212), 1, sym__directive_body_with_parameter, - [196214] = 3, - ACTIONS(10582), 1, + [191364] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6063), 1, + STATE(5553), 1, sym__directive_body_with_parameter, - [196224] = 3, - ACTIONS(10588), 1, + [191374] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6064), 1, + STATE(5805), 1, sym__directive_body_with_parameter, - [196234] = 3, - ACTIONS(10594), 1, + [191384] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6065), 1, + STATE(6232), 1, sym__directive_body_with_parameter, - [196244] = 3, - ACTIONS(10600), 1, + [191394] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6071), 1, + STATE(6233), 1, sym__directive_body_with_parameter, - [196254] = 3, - ACTIONS(10606), 1, + [191404] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6072), 1, + STATE(5803), 1, sym__directive_body_with_parameter, - [196264] = 3, - ACTIONS(10612), 1, + [191414] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6074), 1, + STATE(6234), 1, sym__directive_body_with_parameter, - [196274] = 3, - ACTIONS(10618), 1, + [191424] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6075), 1, + STATE(6239), 1, sym__directive_body_with_parameter, - [196284] = 3, - ACTIONS(10620), 1, + [191434] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6076), 1, + STATE(6240), 1, sym__directive_body_with_parameter, - [196294] = 3, - ACTIONS(10622), 1, + [191444] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6077), 1, + STATE(5802), 1, sym__directive_body_with_parameter, - [196304] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6081), 1, - sym__if_statement_directive_body, - [196314] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6082), 1, - sym__if_statement_directive_body, - [196324] = 3, - ACTIONS(9944), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(6083), 1, - sym__if_statement_directive_body, - [196334] = 3, - ACTIONS(10040), 1, + [191454] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6084), 1, - sym__if_statement_directive_body, - [196344] = 3, - ACTIONS(10068), 1, + STATE(6242), 1, + sym__directive_body_with_parameter, + [191464] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6085), 1, - sym__if_statement_directive_body, - [196354] = 3, - ACTIONS(10026), 1, + STATE(6243), 1, + sym__directive_body_with_parameter, + [191474] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6088), 1, - sym__if_statement_directive_body, - [196364] = 3, - ACTIONS(10026), 1, + STATE(6244), 1, + sym__directive_body_with_parameter, + [191484] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6092), 1, - sym__if_statement_directive_body, - [196374] = 3, - ACTIONS(9970), 1, + STATE(6245), 1, + sym__directive_body_with_parameter, + [191494] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6093), 1, - sym__if_statement_directive_body, - [196384] = 3, - ACTIONS(9978), 1, + STATE(5550), 1, + sym__directive_body_with_parameter, + [191504] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5867), 1, + STATE(6246), 1, sym__if_statement_directive_body, - [196394] = 3, - ACTIONS(9988), 1, + [191514] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6098), 1, + STATE(6247), 1, sym__if_statement_directive_body, - [196404] = 3, - ACTIONS(10008), 1, + [191524] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6099), 1, + STATE(6248), 1, sym__if_statement_directive_body, - [196414] = 3, - ACTIONS(10026), 1, + [191534] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6101), 1, + STATE(6249), 1, sym__if_statement_directive_body, - [196424] = 3, - ACTIONS(10650), 1, + [191544] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6102), 1, + STATE(5800), 1, sym__directive_body_with_parameter, - [196434] = 3, - ACTIONS(10638), 1, + [191554] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6103), 1, + STATE(5799), 1, sym__directive_body_with_parameter, - [196444] = 3, - ACTIONS(10624), 1, + [191564] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6104), 1, + STATE(5798), 1, sym__directive_body_with_parameter, - [196454] = 3, - ACTIONS(10478), 1, + [191574] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6105), 1, + STATE(5518), 1, sym__directive_body_with_parameter, - [196464] = 3, - ACTIONS(10326), 1, + [191584] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6106), 1, + STATE(5517), 1, sym__directive_body_with_parameter, - [196474] = 3, - ACTIONS(10630), 1, + [191594] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6109), 1, - sym__directive_body_with_parameter, - [196484] = 3, - ACTIONS(10582), 1, + STATE(6250), 1, + sym__if_statement_directive_body, + [191604] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6151), 1, - sym__directive_body_with_parameter, - [196494] = 3, - ACTIONS(10588), 1, + STATE(6252), 1, + sym__if_statement_directive_body, + [191614] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6152), 1, + STATE(5516), 1, sym__directive_body_with_parameter, - [196504] = 3, - ACTIONS(10594), 1, + [191624] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6156), 1, + STATE(5775), 1, sym__directive_body_with_parameter, - [196514] = 3, - ACTIONS(10600), 1, + [191634] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6161), 1, + STATE(5511), 1, sym__directive_body_with_parameter, - [196524] = 3, - ACTIONS(10606), 1, + [191644] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6162), 1, - sym__directive_body_with_parameter, - [196534] = 3, - ACTIONS(10612), 1, - anon_sym_LPAREN2, - STATE(619), 1, - sym__directive_parameter, - STATE(5551), 1, - sym__directive_body_with_parameter, - [196544] = 3, - ACTIONS(10618), 1, - anon_sym_LPAREN2, - STATE(549), 1, - sym__directive_parameter, - STATE(6166), 1, + STATE(5510), 1, sym__directive_body_with_parameter, - [196554] = 3, - ACTIONS(10620), 1, + [191654] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6167), 1, + STATE(5773), 1, sym__directive_body_with_parameter, - [196564] = 3, - ACTIONS(10622), 1, + [191664] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6168), 1, + STATE(5772), 1, sym__directive_body_with_parameter, - [196574] = 3, - ACTIONS(9978), 1, + [191674] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6171), 1, + STATE(6253), 1, sym__if_statement_directive_body, - [196584] = 3, - ACTIONS(9972), 1, + [191684] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6172), 1, + STATE(6254), 1, sym__if_statement_directive_body, - [196594] = 3, - ACTIONS(9944), 1, + [191694] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6173), 1, - sym__if_statement_directive_body, - [196604] = 3, - ACTIONS(10040), 1, + STATE(5771), 1, + sym__directive_body_with_parameter, + [191704] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6176), 1, - sym__if_statement_directive_body, - [196614] = 3, - ACTIONS(10068), 1, + STATE(5593), 1, + sym__directive_body_with_parameter, + [191714] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6177), 1, - sym__if_statement_directive_body, - [196624] = 3, - ACTIONS(10026), 1, + STATE(5770), 1, + sym__directive_body_with_parameter, + [191724] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6180), 1, + STATE(6258), 1, sym__if_statement_directive_body, - [196634] = 3, - ACTIONS(10026), 1, + [191734] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6181), 1, + STATE(6259), 1, sym__if_statement_directive_body, - [196644] = 3, - ACTIONS(9970), 1, + [191744] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6182), 1, + STATE(6260), 1, sym__if_statement_directive_body, - [196654] = 3, - ACTIONS(10622), 1, + [191754] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5835), 1, + STATE(6261), 1, sym__directive_body_with_parameter, - [196664] = 3, - ACTIONS(10620), 1, + [191764] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5834), 1, + STATE(6262), 1, sym__directive_body_with_parameter, - [196674] = 3, - ACTIONS(10618), 1, + [191774] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5693), 1, + STATE(6263), 1, sym__directive_body_with_parameter, - [196684] = 3, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - STATE(100), 1, - sym__directive_parameter, - STATE(6189), 1, - sym__if_statement_directive_body, - [196694] = 3, - ACTIONS(10008), 1, + [191784] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6190), 1, - sym__if_statement_directive_body, - [196704] = 3, - ACTIONS(10026), 1, + STATE(6264), 1, + sym__directive_body_with_parameter, + [191794] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6191), 1, - sym__if_statement_directive_body, - [196714] = 3, - ACTIONS(10650), 1, + STATE(6265), 1, + sym__directive_body_with_parameter, + [191804] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6192), 1, + STATE(6269), 1, sym__directive_body_with_parameter, - [196724] = 3, - ACTIONS(10638), 1, + [191814] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6193), 1, + STATE(5508), 1, sym__directive_body_with_parameter, - [196734] = 3, - ACTIONS(10624), 1, + [191824] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6194), 1, + STATE(5769), 1, sym__directive_body_with_parameter, - [196744] = 3, - ACTIONS(10478), 1, + [191834] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6195), 1, + STATE(6287), 1, sym__directive_body_with_parameter, - [196754] = 3, - ACTIONS(10326), 1, + [191844] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6197), 1, + STATE(6288), 1, sym__directive_body_with_parameter, - [196764] = 3, - ACTIONS(10630), 1, + [191854] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6200), 1, - sym__directive_body_with_parameter, - [196774] = 3, - ACTIONS(10582), 1, + STATE(5768), 1, + sym__if_statement_directive_body, + [191864] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6242), 1, + STATE(6289), 1, sym__directive_body_with_parameter, - [196784] = 3, - ACTIONS(10588), 1, + [191874] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6243), 1, + STATE(6294), 1, sym__directive_body_with_parameter, - [196794] = 3, - ACTIONS(10594), 1, + [191884] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6244), 1, + STATE(6295), 1, sym__directive_body_with_parameter, - [196804] = 3, - ACTIONS(10600), 1, + [191894] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6252), 1, + STATE(6297), 1, sym__directive_body_with_parameter, - [196814] = 3, - ACTIONS(10606), 1, + [191904] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6208), 1, + STATE(6484), 1, sym__directive_body_with_parameter, - [196824] = 3, - ACTIONS(10612), 1, + [191914] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6255), 1, + STATE(6298), 1, sym__directive_body_with_parameter, - [196834] = 3, - ACTIONS(10618), 1, + [191924] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6256), 1, + STATE(6198), 1, sym__directive_body_with_parameter, - [196844] = 3, - ACTIONS(10620), 1, + [191934] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6257), 1, + STATE(6300), 1, sym__directive_body_with_parameter, - [196854] = 3, - ACTIONS(10622), 1, + [191944] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6258), 1, + STATE(5507), 1, sym__directive_body_with_parameter, - [196864] = 3, - ACTIONS(9978), 1, + [191954] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6261), 1, + STATE(6301), 1, sym__if_statement_directive_body, - [196874] = 3, - ACTIONS(9972), 1, + [191964] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6262), 1, + STATE(5767), 1, sym__if_statement_directive_body, - [196884] = 3, - ACTIONS(9944), 1, + [191974] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6263), 1, + STATE(6302), 1, sym__if_statement_directive_body, - [196894] = 3, - ACTIONS(10040), 1, + [191984] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6264), 1, + STATE(6303), 1, sym__if_statement_directive_body, - [196904] = 3, - ACTIONS(10068), 1, + [191994] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6265), 1, + STATE(6304), 1, sym__if_statement_directive_body, - [196914] = 3, - ACTIONS(10026), 1, + [192004] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6268), 1, + STATE(6305), 1, sym__if_statement_directive_body, - [196924] = 3, - ACTIONS(10026), 1, + [192014] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6269), 1, + STATE(6308), 1, sym__if_statement_directive_body, - [196934] = 3, - ACTIONS(9970), 1, + [192024] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6272), 1, + STATE(6309), 1, sym__if_statement_directive_body, - [196944] = 3, - ACTIONS(10612), 1, - anon_sym_LPAREN2, - STATE(619), 1, - sym__directive_parameter, - STATE(5803), 1, - sym__directive_body_with_parameter, - [196954] = 3, - ACTIONS(10606), 1, - anon_sym_LPAREN2, - STATE(625), 1, - sym__directive_parameter, - STATE(5771), 1, - sym__directive_body_with_parameter, - [196964] = 3, - ACTIONS(9988), 1, + [192034] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6277), 1, + STATE(6310), 1, sym__if_statement_directive_body, - [196974] = 3, - ACTIONS(10008), 1, + [192044] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6278), 1, + STATE(5766), 1, sym__if_statement_directive_body, - [196984] = 3, - ACTIONS(10026), 1, + [192054] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6279), 1, + STATE(5853), 1, sym__if_statement_directive_body, - [196994] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(6280), 1, - sym__directive_body_with_parameter, - [197004] = 3, - ACTIONS(10638), 1, - anon_sym_LPAREN2, - STATE(544), 1, - sym__directive_parameter, - STATE(6284), 1, - sym__directive_body_with_parameter, - [197014] = 3, - ACTIONS(10624), 1, + [192064] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6285), 1, + STATE(5506), 1, sym__directive_body_with_parameter, - [197024] = 3, - ACTIONS(10478), 1, + [192074] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6286), 1, - sym__directive_body_with_parameter, - [197034] = 3, - ACTIONS(10326), 1, + STATE(6315), 1, + sym__if_statement_directive_body, + [192084] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6287), 1, - sym__directive_body_with_parameter, - [197044] = 3, - ACTIONS(10630), 1, + STATE(6316), 1, + sym__if_statement_directive_body, + [192094] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6290), 1, - sym__directive_body_with_parameter, - [197054] = 3, - ACTIONS(10582), 1, + STATE(6317), 1, + sym__if_statement_directive_body, + [192104] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6331), 1, + STATE(6318), 1, sym__directive_body_with_parameter, - [197064] = 3, - ACTIONS(10588), 1, + [192114] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6332), 1, - sym__directive_body_with_parameter, - [197074] = 3, - ACTIONS(10594), 1, + STATE(5883), 1, + sym__if_statement_directive_body, + [192124] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6333), 1, + STATE(5505), 1, sym__directive_body_with_parameter, - [197084] = 3, - ACTIONS(10600), 1, + [192134] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6340), 1, + STATE(6319), 1, sym__directive_body_with_parameter, - [197094] = 3, - ACTIONS(10606), 1, + [192144] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6341), 1, + STATE(6320), 1, sym__directive_body_with_parameter, - [197104] = 3, - ACTIONS(10612), 1, + [192154] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6343), 1, - sym__directive_body_with_parameter, - [197114] = 3, - ACTIONS(10618), 1, + STATE(5884), 1, + sym__if_statement_directive_body, + [192164] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6344), 1, + STATE(6321), 1, sym__directive_body_with_parameter, - [197124] = 3, - ACTIONS(10620), 1, + [192174] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6348), 1, + STATE(6299), 1, sym__directive_body_with_parameter, - [197134] = 3, - ACTIONS(10622), 1, + [192184] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6349), 1, + STATE(6324), 1, sym__directive_body_with_parameter, - [197144] = 3, - ACTIONS(9978), 1, + [192194] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6351), 1, + STATE(5503), 1, sym__if_statement_directive_body, - [197154] = 3, - ACTIONS(9972), 1, + [192204] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6352), 1, + STATE(5705), 1, sym__if_statement_directive_body, - [197164] = 3, - ACTIONS(9944), 1, + [192214] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6353), 1, + STATE(5502), 1, sym__if_statement_directive_body, - [197174] = 3, - ACTIONS(10040), 1, + [192224] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6354), 1, + STATE(5501), 1, sym__if_statement_directive_body, - [197184] = 3, - ACTIONS(10068), 1, + [192234] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6355), 1, - sym__if_statement_directive_body, - [197194] = 3, - ACTIONS(10026), 1, + STATE(6346), 1, + sym__directive_body_with_parameter, + [192244] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6359), 1, - sym__if_statement_directive_body, - [197204] = 3, - ACTIONS(10026), 1, + STATE(6347), 1, + sym__directive_body_with_parameter, + [192254] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6360), 1, + STATE(5761), 1, sym__if_statement_directive_body, - [197214] = 3, - ACTIONS(9970), 1, + [192264] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6361), 1, + STATE(5760), 1, sym__if_statement_directive_body, - [197224] = 3, - ACTIONS(10600), 1, + [192274] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5770), 1, + STATE(6348), 1, sym__directive_body_with_parameter, - [197234] = 3, - ACTIONS(9972), 1, + [192284] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(115), 1, sym__directive_parameter, - STATE(5897), 1, + STATE(5500), 1, sym__if_statement_directive_body, - [197244] = 3, - ACTIONS(9988), 1, + [192294] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6368), 1, + STATE(5499), 1, sym__if_statement_directive_body, - [197254] = 3, - ACTIONS(10008), 1, + [192304] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6369), 1, - sym__if_statement_directive_body, - [197264] = 3, - ACTIONS(10026), 1, + STATE(6351), 1, + sym__directive_body_with_parameter, + [192314] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6370), 1, + STATE(5756), 1, sym__if_statement_directive_body, - [197274] = 3, - ACTIONS(10650), 1, + [192324] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6371), 1, + STATE(6352), 1, sym__directive_body_with_parameter, - [197284] = 3, - ACTIONS(10638), 1, + [192334] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6372), 1, - sym__directive_body_with_parameter, - [197294] = 3, - ACTIONS(10624), 1, + STATE(5754), 1, + sym__if_statement_directive_body, + [192344] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6373), 1, + STATE(6354), 1, sym__directive_body_with_parameter, - [197304] = 3, - ACTIONS(10478), 1, + [192354] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6374), 1, + STATE(6355), 1, sym__directive_body_with_parameter, - [197314] = 3, - ACTIONS(10326), 1, + [192364] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6375), 1, + STATE(6356), 1, sym__directive_body_with_parameter, - [197324] = 3, - ACTIONS(10630), 1, + [192374] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6381), 1, + STATE(6357), 1, sym__directive_body_with_parameter, - [197334] = 3, - ACTIONS(10582), 1, + [192384] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6419), 1, - sym__directive_body_with_parameter, - [197344] = 3, - ACTIONS(10588), 1, + STATE(5496), 1, + sym__if_statement_directive_body, + [192394] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6421), 1, - sym__directive_body_with_parameter, - [197354] = 3, + STATE(6358), 1, + sym__if_statement_directive_body, + [192404] = 3, ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(635), 1, - sym__directive_parameter, - STATE(6422), 1, - sym__directive_body_with_parameter, - [197364] = 3, - ACTIONS(10600), 1, - anon_sym_LPAREN2, - STATE(631), 1, - sym__directive_parameter, - STATE(6427), 1, - sym__directive_body_with_parameter, - [197374] = 3, - ACTIONS(10606), 1, - anon_sym_LPAREN2, - STATE(625), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6428), 1, - sym__directive_body_with_parameter, - [197384] = 3, - ACTIONS(10612), 1, + STATE(5753), 1, + sym__if_statement_directive_body, + [192414] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6432), 1, - sym__directive_body_with_parameter, - [197394] = 3, - ACTIONS(10618), 1, + STATE(6359), 1, + sym__if_statement_directive_body, + [192424] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6433), 1, - sym__directive_body_with_parameter, - [197404] = 3, - ACTIONS(10620), 1, + STATE(6360), 1, + sym__if_statement_directive_body, + [192434] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6434), 1, - sym__directive_body_with_parameter, - [197414] = 3, - ACTIONS(10622), 1, + STATE(6361), 1, + sym__if_statement_directive_body, + [192444] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6435), 1, - sym__directive_body_with_parameter, - [197424] = 3, - ACTIONS(9978), 1, + STATE(6362), 1, + sym__if_statement_directive_body, + [192454] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6437), 1, + STATE(6364), 1, sym__if_statement_directive_body, - [197434] = 3, - ACTIONS(9972), 1, + [192464] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6438), 1, + STATE(6365), 1, sym__if_statement_directive_body, - [197444] = 3, - ACTIONS(9944), 1, + [192474] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6439), 1, + STATE(6366), 1, sym__if_statement_directive_body, - [197454] = 3, - ACTIONS(10040), 1, + [192484] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6440), 1, + STATE(5752), 1, sym__if_statement_directive_body, - [197464] = 3, - ACTIONS(10068), 1, + [192494] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6441), 1, + STATE(5751), 1, sym__if_statement_directive_body, - [197474] = 3, - ACTIONS(10026), 1, + [192504] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6446), 1, + STATE(6370), 1, sym__if_statement_directive_body, - [197484] = 3, - ACTIONS(10026), 1, + [192514] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6447), 1, + STATE(6371), 1, sym__if_statement_directive_body, - [197494] = 3, - ACTIONS(9970), 1, + [192524] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6448), 1, + STATE(6372), 1, sym__if_statement_directive_body, - [197504] = 3, - ACTIONS(10594), 1, + [192534] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5733), 1, + STATE(6373), 1, sym__directive_body_with_parameter, - [197514] = 3, - ACTIONS(9988), 1, + [192544] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6454), 1, - sym__if_statement_directive_body, - [197524] = 3, - ACTIONS(10008), 1, + STATE(6374), 1, + sym__directive_body_with_parameter, + [192554] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6455), 1, - sym__if_statement_directive_body, - [197534] = 3, - ACTIONS(10026), 1, + STATE(6375), 1, + sym__directive_body_with_parameter, + [192564] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6456), 1, - sym__if_statement_directive_body, - [197544] = 3, - ACTIONS(10650), 1, + STATE(6376), 1, + sym__directive_body_with_parameter, + [192574] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6457), 1, + STATE(6377), 1, sym__directive_body_with_parameter, - [197554] = 3, - ACTIONS(10638), 1, + [192584] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6458), 1, + STATE(6378), 1, sym__directive_body_with_parameter, - [197564] = 3, - ACTIONS(10624), 1, + [192594] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6459), 1, - sym__directive_body_with_parameter, - [197574] = 3, - ACTIONS(10478), 1, + STATE(5495), 1, + sym__if_statement_directive_body, + [192604] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6460), 1, - sym__directive_body_with_parameter, - [197584] = 3, - ACTIONS(10326), 1, + STATE(5494), 1, + sym__if_statement_directive_body, + [192614] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6461), 1, + STATE(6400), 1, sym__directive_body_with_parameter, - [197594] = 3, - ACTIONS(10630), 1, + [192624] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6466), 1, + STATE(6401), 1, sym__directive_body_with_parameter, - [197604] = 3, - ACTIONS(10582), 1, + [192634] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6504), 1, + STATE(6402), 1, sym__directive_body_with_parameter, - [197614] = 3, - ACTIONS(10588), 1, + [192644] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6505), 1, + STATE(6407), 1, sym__directive_body_with_parameter, - [197624] = 3, - ACTIONS(10594), 1, + [192654] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6507), 1, + STATE(6408), 1, sym__directive_body_with_parameter, - [197634] = 3, - ACTIONS(10600), 1, + [192664] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6512), 1, + STATE(6410), 1, sym__directive_body_with_parameter, - [197644] = 3, - ACTIONS(10606), 1, + [192674] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6513), 1, + STATE(5750), 1, sym__directive_body_with_parameter, - [197654] = 3, - ACTIONS(10612), 1, + [192684] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6515), 1, + STATE(6411), 1, sym__directive_body_with_parameter, - [197664] = 3, - ACTIONS(10618), 1, + [192694] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6517), 1, + STATE(6412), 1, sym__directive_body_with_parameter, - [197674] = 3, - ACTIONS(10620), 1, + [192704] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6518), 1, + STATE(6413), 1, sym__directive_body_with_parameter, - [197684] = 3, - ACTIONS(10622), 1, + [192714] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6519), 1, + STATE(6172), 1, sym__directive_body_with_parameter, - [197694] = 3, - ACTIONS(9978), 1, + [192724] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6521), 1, + STATE(6414), 1, sym__if_statement_directive_body, - [197704] = 3, - ACTIONS(9972), 1, + [192734] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6522), 1, + STATE(6415), 1, sym__if_statement_directive_body, - [197714] = 3, - ACTIONS(9944), 1, + [192744] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6523), 1, + STATE(6416), 1, sym__if_statement_directive_body, - [197724] = 3, - ACTIONS(10040), 1, + [192754] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6524), 1, + STATE(6417), 1, sym__if_statement_directive_body, - [197734] = 3, - ACTIONS(10068), 1, + [192764] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6525), 1, + STATE(6418), 1, sym__if_statement_directive_body, - [197744] = 3, - ACTIONS(10026), 1, + [192774] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6530), 1, + STATE(6421), 1, sym__if_statement_directive_body, - [197754] = 3, - ACTIONS(10026), 1, + [192784] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6531), 1, + STATE(6422), 1, sym__if_statement_directive_body, - [197764] = 3, - ACTIONS(9970), 1, + [192794] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6532), 1, + STATE(6423), 1, sym__if_statement_directive_body, - [197774] = 3, - ACTIONS(10588), 1, - anon_sym_LPAREN2, - STATE(639), 1, - sym__directive_parameter, - STATE(5706), 1, - sym__directive_body_with_parameter, - [197784] = 3, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(644), 1, - sym__directive_parameter, - STATE(5694), 1, - sym__directive_body_with_parameter, - [197794] = 3, - ACTIONS(9988), 1, + [192804] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6537), 1, + STATE(6428), 1, sym__if_statement_directive_body, - [197804] = 3, - ACTIONS(10008), 1, + [192814] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6538), 1, + STATE(6429), 1, sym__if_statement_directive_body, - [197814] = 3, - ACTIONS(10026), 1, + [192824] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6539), 1, - sym__if_statement_directive_body, - [197824] = 3, - ACTIONS(10650), 1, + STATE(5749), 1, + sym__directive_body_with_parameter, + [192834] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6540), 1, - sym__directive_body_with_parameter, - [197834] = 3, - ACTIONS(10638), 1, + STATE(6430), 1, + sym__if_statement_directive_body, + [192844] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6541), 1, + STATE(6431), 1, sym__directive_body_with_parameter, - [197844] = 3, - ACTIONS(10624), 1, + [192854] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6542), 1, + STATE(6432), 1, sym__directive_body_with_parameter, - [197854] = 3, - ACTIONS(10478), 1, + [192864] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6543), 1, + STATE(5682), 1, sym__directive_body_with_parameter, - [197864] = 3, - ACTIONS(10326), 1, + [192874] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6544), 1, + STATE(6433), 1, sym__directive_body_with_parameter, - [197874] = 3, - ACTIONS(10630), 1, + [192884] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6547), 1, + STATE(6434), 1, sym__directive_body_with_parameter, - [197884] = 3, - ACTIONS(10582), 1, + [192894] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6587), 1, + STATE(6435), 1, sym__directive_body_with_parameter, - [197894] = 3, - ACTIONS(10588), 1, + [192904] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6588), 1, + STATE(5747), 1, sym__directive_body_with_parameter, - [197904] = 3, - ACTIONS(10594), 1, + [192914] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6589), 1, + STATE(6438), 1, sym__directive_body_with_parameter, - [197914] = 3, - ACTIONS(10600), 1, + [192924] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6596), 1, + STATE(6160), 1, sym__directive_body_with_parameter, - [197924] = 3, - ACTIONS(10606), 1, + [192934] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6597), 1, + STATE(5745), 1, sym__directive_body_with_parameter, - [197934] = 3, - ACTIONS(10612), 1, + [192944] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6599), 1, + STATE(6456), 1, sym__directive_body_with_parameter, - [197944] = 3, - ACTIONS(10618), 1, + [192954] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6600), 1, + STATE(6140), 1, sym__directive_body_with_parameter, - [197954] = 3, - ACTIONS(10620), 1, + [192964] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6601), 1, + STATE(5743), 1, sym__directive_body_with_parameter, - [197964] = 3, - ACTIONS(10622), 1, + [192974] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6602), 1, + STATE(5738), 1, sym__directive_body_with_parameter, - [197974] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6604), 1, - sym__if_statement_directive_body, - [197984] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6605), 1, - sym__if_statement_directive_body, - [197994] = 3, - ACTIONS(9944), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(6606), 1, - sym__if_statement_directive_body, - [198004] = 3, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6607), 1, - sym__if_statement_directive_body, - [198014] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(6608), 1, - sym__if_statement_directive_body, - [198024] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(6611), 1, - sym__if_statement_directive_body, - [198034] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(6613), 1, - sym__if_statement_directive_body, - [198044] = 3, - ACTIONS(9970), 1, - anon_sym_LPAREN2, - STATE(139), 1, - sym__directive_parameter, - STATE(6614), 1, - sym__if_statement_directive_body, - [198054] = 3, - ACTIONS(9988), 1, + [192984] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6619), 1, - sym__if_statement_directive_body, - [198064] = 3, - ACTIONS(10008), 1, + STATE(6134), 1, + sym__directive_body_with_parameter, + [192994] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6620), 1, - sym__if_statement_directive_body, - [198074] = 3, - ACTIONS(10026), 1, + STATE(6128), 1, + sym__directive_body_with_parameter, + [193004] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6621), 1, - sym__if_statement_directive_body, - [198084] = 3, - ACTIONS(10650), 1, + STATE(6109), 1, + sym__directive_body_with_parameter, + [193014] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6624), 1, + STATE(5737), 1, sym__directive_body_with_parameter, - [198094] = 3, - ACTIONS(10638), 1, + [193024] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6625), 1, + STATE(5736), 1, sym__directive_body_with_parameter, - [198104] = 3, - ACTIONS(10624), 1, + [193034] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6626), 1, + STATE(6457), 1, sym__directive_body_with_parameter, - [198114] = 3, - ACTIONS(10478), 1, + [193044] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6627), 1, - sym__directive_body_with_parameter, - [198124] = 3, - ACTIONS(10326), 1, + STATE(6107), 1, + sym__if_statement_directive_body, + [193054] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6628), 1, + STATE(6458), 1, sym__directive_body_with_parameter, - [198134] = 3, - ACTIONS(10630), 1, + [193064] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6631), 1, + STATE(5714), 1, sym__directive_body_with_parameter, - [198144] = 3, - ACTIONS(10582), 1, + [193074] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6668), 1, + STATE(5710), 1, sym__directive_body_with_parameter, - [198154] = 3, - ACTIONS(10588), 1, + [193084] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6669), 1, + STATE(6460), 1, sym__directive_body_with_parameter, - [198164] = 3, - ACTIONS(10594), 1, + [193094] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6670), 1, + STATE(6461), 1, sym__directive_body_with_parameter, - [198174] = 3, - ACTIONS(10600), 1, + [193104] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6675), 1, + STATE(6463), 1, sym__directive_body_with_parameter, - [198184] = 3, - ACTIONS(10606), 1, + [193114] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6677), 1, + STATE(5709), 1, sym__directive_body_with_parameter, - [198194] = 3, - ACTIONS(10612), 1, + [193124] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6679), 1, + STATE(6464), 1, sym__directive_body_with_parameter, - [198204] = 3, - ACTIONS(10618), 1, + [193134] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6680), 1, + STATE(6465), 1, sym__directive_body_with_parameter, - [198214] = 3, - ACTIONS(10620), 1, + [193144] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6681), 1, + STATE(6466), 1, sym__directive_body_with_parameter, - [198224] = 3, - ACTIONS(10622), 1, + [193154] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6682), 1, - sym__directive_body_with_parameter, - [198234] = 3, - ACTIONS(9978), 1, + STATE(6096), 1, + sym__if_statement_directive_body, + [193164] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6684), 1, + STATE(6467), 1, sym__if_statement_directive_body, - [198244] = 3, - ACTIONS(9972), 1, + [193174] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6685), 1, + STATE(6468), 1, sym__if_statement_directive_body, - [198254] = 3, - ACTIONS(9944), 1, + [193184] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6688), 1, + STATE(6469), 1, sym__if_statement_directive_body, - [198264] = 3, - ACTIONS(10040), 1, + [193194] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6689), 1, + STATE(6470), 1, sym__if_statement_directive_body, - [198274] = 3, - ACTIONS(10068), 1, + [193204] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6690), 1, + STATE(6471), 1, sym__if_statement_directive_body, - [198284] = 3, - ACTIONS(10026), 1, + [193214] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6693), 1, + STATE(6474), 1, sym__if_statement_directive_body, - [198294] = 3, - ACTIONS(10026), 1, + [193224] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6694), 1, + STATE(6475), 1, sym__if_statement_directive_body, - [198304] = 3, - ACTIONS(9970), 1, + [193234] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6695), 1, + STATE(6476), 1, sym__if_statement_directive_body, - [198314] = 3, - ACTIONS(9988), 1, + [193244] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6700), 1, + STATE(5708), 1, + sym__directive_body_with_parameter, + [193254] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(6480), 1, sym__if_statement_directive_body, - [198324] = 3, - ACTIONS(10008), 1, + [193264] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6701), 1, + STATE(6481), 1, sym__if_statement_directive_body, - [198334] = 3, - ACTIONS(10026), 1, + [193274] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6702), 1, + STATE(6482), 1, sym__if_statement_directive_body, - [198344] = 3, - ACTIONS(10650), 1, + [193284] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6703), 1, + STATE(6483), 1, sym__directive_body_with_parameter, - [198354] = 3, - ACTIONS(10638), 1, + [193294] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6704), 1, + STATE(6485), 1, sym__directive_body_with_parameter, - [198364] = 3, - ACTIONS(10624), 1, + [193304] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6705), 1, + STATE(6486), 1, sym__directive_body_with_parameter, - [198374] = 3, - ACTIONS(10478), 1, + [193314] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6706), 1, + STATE(6487), 1, sym__directive_body_with_parameter, - [198384] = 3, - ACTIONS(10326), 1, + [193324] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6707), 1, + STATE(5707), 1, sym__directive_body_with_parameter, - [198394] = 3, - ACTIONS(10630), 1, + [193334] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6711), 1, + STATE(6490), 1, sym__directive_body_with_parameter, - [198404] = 3, - ACTIONS(10582), 1, + [193344] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(6076), 1, + sym__if_statement_directive_body, + [193354] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6749), 1, + STATE(6514), 1, sym__directive_body_with_parameter, - [198414] = 3, - ACTIONS(10588), 1, + [193364] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6750), 1, + STATE(6515), 1, sym__directive_body_with_parameter, - [198424] = 3, - ACTIONS(10594), 1, + [193374] = 3, + ACTIONS(11136), 1, + anon_sym_LPAREN2, + STATE(637), 1, + sym__directive_parameter, + STATE(6516), 1, + sym__directive_body_with_parameter, + [193384] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6752), 1, + STATE(5706), 1, sym__directive_body_with_parameter, - [198434] = 3, - ACTIONS(10600), 1, + [193394] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6757), 1, + STATE(6520), 1, sym__directive_body_with_parameter, - [198444] = 3, - ACTIONS(10606), 1, + [193404] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6758), 1, + STATE(6521), 1, + sym__directive_body_with_parameter, + [193414] = 3, + ACTIONS(11160), 1, + anon_sym_LPAREN2, + STATE(611), 1, + sym__directive_parameter, + STATE(6523), 1, sym__directive_body_with_parameter, - [198454] = 3, - ACTIONS(10612), 1, + [193424] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6760), 1, + STATE(6524), 1, sym__directive_body_with_parameter, - [198464] = 3, - ACTIONS(10618), 1, + [193434] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6761), 1, + STATE(6525), 1, sym__directive_body_with_parameter, - [198474] = 3, - ACTIONS(10620), 1, + [193444] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6763), 1, + STATE(6526), 1, sym__directive_body_with_parameter, - [198484] = 3, - ACTIONS(10622), 1, + [193454] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6764), 1, + STATE(6045), 1, sym__directive_body_with_parameter, - [198494] = 3, - ACTIONS(9978), 1, + [193464] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6766), 1, + STATE(6527), 1, sym__if_statement_directive_body, - [198504] = 3, - ACTIONS(9972), 1, + [193474] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6767), 1, + STATE(6528), 1, sym__if_statement_directive_body, - [198514] = 3, - ACTIONS(9944), 1, + [193484] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6768), 1, + STATE(6529), 1, sym__if_statement_directive_body, - [198524] = 3, - ACTIONS(10040), 1, + [193494] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6769), 1, + STATE(6530), 1, + sym__if_statement_directive_body, + [193504] = 3, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + STATE(119), 1, + sym__directive_parameter, + STATE(6531), 1, + sym__if_statement_directive_body, + [193514] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(6534), 1, + sym__if_statement_directive_body, + [193524] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(6535), 1, sym__if_statement_directive_body, - [198534] = 3, - ACTIONS(10068), 1, + [193534] = 3, + ACTIONS(11154), 1, + anon_sym_LPAREN2, + STATE(625), 1, + sym__directive_parameter, + STATE(5681), 1, + sym__directive_body_with_parameter, + [193544] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6770), 1, + STATE(6536), 1, sym__if_statement_directive_body, - [198544] = 3, - ACTIONS(10026), 1, + [193554] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6774), 1, + STATE(5704), 1, sym__if_statement_directive_body, - [198554] = 3, - ACTIONS(10026), 1, + [193564] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6775), 1, + STATE(5703), 1, sym__if_statement_directive_body, - [198564] = 3, - ACTIONS(9970), 1, + [193574] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6776), 1, + STATE(5819), 1, sym__if_statement_directive_body, - [198574] = 3, - ACTIONS(9988), 1, + [193584] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6781), 1, + STATE(6541), 1, sym__if_statement_directive_body, - [198584] = 3, - ACTIONS(10008), 1, + [193594] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6784), 1, + STATE(6542), 1, sym__if_statement_directive_body, - [198594] = 3, - ACTIONS(10026), 1, + [193604] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6785), 1, + STATE(6543), 1, sym__if_statement_directive_body, - [198604] = 3, - ACTIONS(10650), 1, + [193614] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6786), 1, + STATE(6544), 1, sym__directive_body_with_parameter, - [198614] = 3, - ACTIONS(10638), 1, + [193624] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6787), 1, + STATE(6545), 1, sym__directive_body_with_parameter, - [198624] = 3, - ACTIONS(10624), 1, + [193634] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6788), 1, + STATE(6546), 1, sym__directive_body_with_parameter, - [198634] = 3, - ACTIONS(10478), 1, + [193644] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6789), 1, + STATE(6547), 1, sym__directive_body_with_parameter, - [198644] = 3, - ACTIONS(10326), 1, + [193654] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6790), 1, + STATE(6548), 1, sym__directive_body_with_parameter, - [198654] = 3, - ACTIONS(10630), 1, + [193664] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6796), 1, + STATE(6551), 1, sym__directive_body_with_parameter, - [198664] = 3, - ACTIONS(10582), 1, + [193674] = 3, + ACTIONS(10566), 1, + anon_sym_LPAREN2, + STATE(78), 1, + sym__directive_parameter, + STATE(5948), 1, + sym__if_statement_directive_body, + [193684] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(5949), 1, + sym__if_statement_directive_body, + [193694] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(5489), 1, + sym__if_statement_directive_body, + [193704] = 3, + ACTIONS(10566), 1, + anon_sym_LPAREN2, + STATE(78), 1, + sym__directive_parameter, + STATE(5488), 1, + sym__if_statement_directive_body, + [193714] = 3, + ACTIONS(10518), 1, + anon_sym_LPAREN2, + STATE(140), 1, + sym__directive_parameter, + STATE(6043), 1, + sym__if_statement_directive_body, + [193724] = 3, + ACTIONS(10518), 1, + anon_sym_LPAREN2, + STATE(140), 1, + sym__directive_parameter, + STATE(5698), 1, + sym__if_statement_directive_body, + [193734] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(5487), 1, + sym__if_statement_directive_body, + [193744] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6822), 1, + STATE(6566), 1, sym__directive_body_with_parameter, - [198674] = 3, - ACTIONS(10588), 1, + [193754] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(6032), 1, + sym__if_statement_directive_body, + [193764] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6823), 1, + STATE(6567), 1, sym__directive_body_with_parameter, - [198684] = 3, - ACTIONS(10594), 1, + [193774] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6824), 1, + STATE(6568), 1, sym__directive_body_with_parameter, - [198694] = 3, - ACTIONS(10600), 1, + [193784] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6830), 1, + STATE(6573), 1, sym__directive_body_with_parameter, - [198704] = 3, - ACTIONS(10606), 1, + [193794] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6831), 1, + STATE(6574), 1, sym__directive_body_with_parameter, - [198714] = 3, - ACTIONS(10612), 1, + [193804] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6833), 1, + STATE(6576), 1, sym__directive_body_with_parameter, - [198724] = 3, - ACTIONS(10618), 1, + [193814] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6834), 1, + STATE(6577), 1, sym__directive_body_with_parameter, - [198734] = 3, - ACTIONS(10620), 1, + [193824] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6835), 1, + STATE(5697), 1, + sym__if_statement_directive_body, + [193834] = 3, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + STATE(250), 1, + sym__directive_parameter, + STATE(6501), 1, sym__directive_body_with_parameter, - [198744] = 3, - ACTIONS(10622), 1, + [193844] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6837), 1, + STATE(6579), 1, sym__directive_body_with_parameter, - [198754] = 3, - ACTIONS(9978), 1, + [193854] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(6013), 1, + sym__if_statement_directive_body, + [193864] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6838), 1, + STATE(6580), 1, sym__if_statement_directive_body, - [198764] = 3, - ACTIONS(9972), 1, + [193874] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6839), 1, + STATE(6581), 1, sym__if_statement_directive_body, - [198774] = 3, - ACTIONS(9944), 1, + [193884] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6840), 1, + STATE(6582), 1, sym__if_statement_directive_body, - [198784] = 3, - ACTIONS(10040), 1, + [193894] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6841), 1, + STATE(6583), 1, sym__if_statement_directive_body, - [198794] = 3, - ACTIONS(10068), 1, + [193904] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6842), 1, + STATE(6584), 1, sym__if_statement_directive_body, - [198804] = 3, - ACTIONS(10026), 1, + [193914] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6844), 1, + STATE(6587), 1, sym__if_statement_directive_body, - [198814] = 3, - ACTIONS(10026), 1, + [193924] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6845), 1, + STATE(6588), 1, sym__if_statement_directive_body, - [198824] = 3, - ACTIONS(9970), 1, + [193934] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6720), 1, + STATE(6589), 1, sym__if_statement_directive_body, - [198834] = 3, - ACTIONS(9988), 1, + [193944] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6744), 1, + STATE(6594), 1, sym__if_statement_directive_body, - [198844] = 3, - ACTIONS(10008), 1, + [193954] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6739), 1, + STATE(6595), 1, sym__if_statement_directive_body, - [198854] = 3, - ACTIONS(10026), 1, + [193964] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6734), 1, + STATE(6596), 1, sym__if_statement_directive_body, - [198864] = 3, - ACTIONS(10650), 1, + [193974] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6733), 1, + STATE(6597), 1, sym__directive_body_with_parameter, - [198874] = 3, - ACTIONS(10638), 1, + [193984] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6732), 1, + STATE(6598), 1, sym__directive_body_with_parameter, - [198884] = 3, - ACTIONS(10624), 1, + [193994] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6731), 1, + STATE(6599), 1, sym__directive_body_with_parameter, - [198894] = 3, - ACTIONS(10478), 1, + [194004] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6730), 1, + STATE(6600), 1, sym__directive_body_with_parameter, - [198904] = 3, - ACTIONS(10326), 1, + [194014] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6723), 1, + STATE(6601), 1, sym__directive_body_with_parameter, - [198914] = 3, - ACTIONS(10630), 1, + [194024] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6717), 1, + STATE(6604), 1, sym__directive_body_with_parameter, - [198924] = 3, - ACTIONS(10582), 1, + [194034] = 3, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + STATE(119), 1, + sym__directive_parameter, + STATE(5820), 1, + sym__if_statement_directive_body, + [194044] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6649), 1, + STATE(6628), 1, sym__directive_body_with_parameter, - [198934] = 3, - ACTIONS(10588), 1, + [194054] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6642), 1, + STATE(6629), 1, sym__directive_body_with_parameter, - [198944] = 3, - ACTIONS(10594), 1, + [194064] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6640), 1, + STATE(6630), 1, sym__directive_body_with_parameter, - [198954] = 3, - ACTIONS(10600), 1, + [194074] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6584), 1, + STATE(6635), 1, sym__directive_body_with_parameter, - [198964] = 3, - ACTIONS(10606), 1, + [194084] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6582), 1, + STATE(6636), 1, sym__directive_body_with_parameter, - [198974] = 3, - ACTIONS(10612), 1, + [194094] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6571), 1, + STATE(5696), 1, + sym__if_statement_directive_body, + [194104] = 3, + ACTIONS(11160), 1, + anon_sym_LPAREN2, + STATE(611), 1, + sym__directive_parameter, + STATE(6638), 1, sym__directive_body_with_parameter, - [198984] = 3, - ACTIONS(10618), 1, + [194114] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6568), 1, + STATE(6639), 1, sym__directive_body_with_parameter, - [198994] = 3, - ACTIONS(10620), 1, + [194124] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6567), 1, + STATE(6640), 1, sym__directive_body_with_parameter, - [199004] = 3, - ACTIONS(10622), 1, + [194134] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6566), 1, + STATE(6641), 1, sym__directive_body_with_parameter, - [199014] = 3, - ACTIONS(9978), 1, + [194144] = 3, + ACTIONS(10500), 1, + anon_sym_LPAREN2, + STATE(115), 1, + sym__directive_parameter, + STATE(5936), 1, + sym__if_statement_directive_body, + [194154] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6560), 1, + STATE(6642), 1, sym__if_statement_directive_body, - [199024] = 3, - ACTIONS(9972), 1, + [194164] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6555), 1, + STATE(6643), 1, sym__if_statement_directive_body, - [199034] = 3, - ACTIONS(9944), 1, + [194174] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6550), 1, + STATE(6644), 1, sym__if_statement_directive_body, - [199044] = 3, - ACTIONS(10040), 1, + [194184] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6528), 1, + STATE(6645), 1, sym__if_statement_directive_body, - [199054] = 3, - ACTIONS(10068), 1, + [194194] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6520), 1, + STATE(6646), 1, sym__if_statement_directive_body, - [199064] = 3, - ACTIONS(10026), 1, + [194204] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6503), 1, + STATE(6649), 1, sym__if_statement_directive_body, - [199074] = 3, - ACTIONS(10026), 1, + [194214] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6502), 1, + STATE(6650), 1, sym__if_statement_directive_body, - [199084] = 3, - ACTIONS(9970), 1, + [194224] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6501), 1, + STATE(6651), 1, sym__if_statement_directive_body, - [199094] = 3, - ACTIONS(9988), 1, + [194234] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6492), 1, + STATE(6656), 1, sym__if_statement_directive_body, - [199104] = 3, - ACTIONS(10008), 1, + [194244] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6490), 1, + STATE(5694), 1, sym__if_statement_directive_body, - [199114] = 3, - ACTIONS(10026), 1, + [194254] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6488), 1, + STATE(5916), 1, sym__if_statement_directive_body, - [199124] = 3, - ACTIONS(10650), 1, + [194264] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6487), 1, - sym__directive_body_with_parameter, - [199134] = 3, - ACTIONS(10638), 1, + STATE(6657), 1, + sym__if_statement_directive_body, + [194274] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6486), 1, - sym__directive_body_with_parameter, - [199144] = 3, - ACTIONS(10624), 1, + STATE(6658), 1, + sym__if_statement_directive_body, + [194284] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6630), 1, - sym__directive_body_with_parameter, - [199154] = 3, - ACTIONS(10478), 1, + STATE(5904), 1, + sym__if_statement_directive_body, + [194294] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6483), 1, + STATE(6659), 1, sym__directive_body_with_parameter, - [199164] = 3, - ACTIONS(10326), 1, + [194304] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6479), 1, + STATE(6660), 1, sym__directive_body_with_parameter, - [199174] = 3, - ACTIONS(10630), 1, + [194314] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6436), 1, - sym__directive_body_with_parameter, - [199184] = 3, - ACTIONS(10582), 1, + STATE(5872), 1, + sym__if_statement_directive_body, + [194324] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6316), 1, + STATE(5840), 1, sym__directive_body_with_parameter, - [199194] = 3, - ACTIONS(10588), 1, + [194334] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6312), 1, - sym__directive_body_with_parameter, - [199204] = 3, + STATE(5690), 1, + sym__if_statement_directive_body, + [194344] = 3, ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(635), 1, - sym__directive_parameter, - STATE(6311), 1, - sym__directive_body_with_parameter, - [199214] = 3, - ACTIONS(10600), 1, - anon_sym_LPAREN2, - STATE(631), 1, - sym__directive_parameter, - STATE(6300), 1, - sym__directive_body_with_parameter, - [199224] = 3, - ACTIONS(10606), 1, - anon_sym_LPAREN2, - STATE(625), 1, - sym__directive_parameter, - STATE(6298), 1, - sym__directive_body_with_parameter, - [199234] = 3, - ACTIONS(10612), 1, - anon_sym_LPAREN2, - STATE(619), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6293), 1, - sym__directive_body_with_parameter, - [199244] = 3, - ACTIONS(10618), 1, + STATE(5689), 1, + sym__if_statement_directive_body, + [194354] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6289), 1, + STATE(6661), 1, sym__directive_body_with_parameter, - [199254] = 3, - ACTIONS(10620), 1, + [194364] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6259), 1, + STATE(6662), 1, sym__directive_body_with_parameter, - [199264] = 3, - ACTIONS(10622), 1, + [194374] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6241), 1, + STATE(6663), 1, sym__directive_body_with_parameter, - [199274] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6237), 1, - sym__if_statement_directive_body, - [199284] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6235), 1, - sym__if_statement_directive_body, - [199294] = 3, - ACTIONS(9944), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(6232), 1, - sym__if_statement_directive_body, - [199304] = 3, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6231), 1, - sym__if_statement_directive_body, - [199314] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(6224), 1, - sym__if_statement_directive_body, - [199324] = 3, - ACTIONS(10026), 1, + [194384] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6221), 1, + STATE(5688), 1, sym__if_statement_directive_body, - [199334] = 3, - ACTIONS(10026), 1, + [194394] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6212), 1, + STATE(5687), 1, sym__if_statement_directive_body, - [199344] = 3, - ACTIONS(9970), 1, + [194404] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6202), 1, - sym__if_statement_directive_body, - [199354] = 3, - ACTIONS(9988), 1, + STATE(5692), 1, + sym__directive_body_with_parameter, + [194414] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6145), 1, - sym__if_statement_directive_body, - [199364] = 3, - ACTIONS(10008), 1, + STATE(5808), 1, + sym__directive_body_with_parameter, + [194424] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6141), 1, - sym__if_statement_directive_body, - [199374] = 3, - ACTIONS(10026), 1, + STATE(5776), 1, + sym__directive_body_with_parameter, + [194434] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6140), 1, - sym__if_statement_directive_body, - [199384] = 3, - ACTIONS(10650), 1, + STATE(5686), 1, + sym__directive_body_with_parameter, + [194444] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6137), 1, + STATE(5685), 1, sym__directive_body_with_parameter, - [199394] = 3, - ACTIONS(10638), 1, + [194454] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6134), 1, + STATE(6664), 1, sym__directive_body_with_parameter, - [199404] = 3, - ACTIONS(10624), 1, + [194464] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6133), 1, + STATE(5684), 1, sym__directive_body_with_parameter, - [199414] = 3, - ACTIONS(10478), 1, + [194474] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6131), 1, + STATE(5744), 1, sym__directive_body_with_parameter, - [199424] = 3, - ACTIONS(10326), 1, + [194484] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6130), 1, + STATE(6670), 1, sym__directive_body_with_parameter, - [199434] = 3, - ACTIONS(10630), 1, + [194494] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6118), 1, + STATE(6671), 1, sym__directive_body_with_parameter, - [199444] = 3, - ACTIONS(10582), 1, + [194504] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6048), 1, + STATE(6672), 1, sym__directive_body_with_parameter, - [199454] = 3, - ACTIONS(10588), 1, + [194514] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6043), 1, + STATE(5861), 1, sym__directive_body_with_parameter, - [199464] = 3, - ACTIONS(10594), 1, + [194524] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6042), 1, + STATE(6674), 1, sym__directive_body_with_parameter, - [199474] = 3, - ACTIONS(10600), 1, + [194534] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6033), 1, + STATE(5683), 1, sym__directive_body_with_parameter, - [199484] = 3, - ACTIONS(10606), 1, + [194544] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6031), 1, + STATE(6676), 1, sym__directive_body_with_parameter, - [199494] = 3, - ACTIONS(10612), 1, + [194554] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6067), 1, + STATE(6677), 1, sym__directive_body_with_parameter, - [199504] = 3, - ACTIONS(10618), 1, + [194564] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5971), 1, + STATE(6678), 1, sym__directive_body_with_parameter, - [199514] = 3, - ACTIONS(10620), 1, + [194574] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5969), 1, + STATE(6679), 1, sym__directive_body_with_parameter, - [199524] = 3, - ACTIONS(10622), 1, + [194584] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5967), 1, + STATE(5712), 1, sym__directive_body_with_parameter, - [199534] = 3, - ACTIONS(9978), 1, + [194594] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5960), 1, + STATE(6680), 1, sym__if_statement_directive_body, - [199544] = 3, - ACTIONS(9972), 1, + [194604] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5954), 1, + STATE(6681), 1, sym__if_statement_directive_body, - [199554] = 3, - ACTIONS(9944), 1, + [194614] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5953), 1, + STATE(6682), 1, sym__if_statement_directive_body, - [199564] = 3, - ACTIONS(10040), 1, + [194624] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5937), 1, + STATE(6683), 1, sym__if_statement_directive_body, - [199574] = 3, - ACTIONS(10068), 1, + [194634] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5949), 1, + STATE(6684), 1, sym__if_statement_directive_body, - [199584] = 3, - ACTIONS(10026), 1, + [194644] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5938), 1, + STATE(6686), 1, sym__if_statement_directive_body, - [199594] = 3, - ACTIONS(10026), 1, + [194654] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5934), 1, + STATE(6687), 1, sym__if_statement_directive_body, - [199604] = 3, - ACTIONS(9970), 1, + [194664] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5902), 1, + STATE(6688), 1, sym__if_statement_directive_body, - [199614] = 3, - ACTIONS(9988), 1, + [194674] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5878), 1, + STATE(6692), 1, sym__if_statement_directive_body, - [199624] = 3, - ACTIONS(10008), 1, + [194684] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5877), 1, + STATE(6693), 1, sym__if_statement_directive_body, - [199634] = 3, - ACTIONS(10026), 1, + [194694] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5874), 1, + STATE(6694), 1, sym__if_statement_directive_body, - [199644] = 3, - ACTIONS(12664), 1, - anon_sym_LPAREN, - ACTIONS(12666), 1, - anon_sym_RPAREN, - ACTIONS(12668), 1, - aux_sym_parameter_token1, - [199654] = 3, - ACTIONS(10650), 1, + [194704] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5873), 1, + STATE(6695), 1, sym__directive_body_with_parameter, - [199664] = 3, - ACTIONS(10638), 1, + [194714] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5872), 1, + STATE(6696), 1, sym__directive_body_with_parameter, - [199674] = 3, - ACTIONS(10624), 1, + [194724] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5870), 1, + STATE(6697), 1, sym__directive_body_with_parameter, - [199684] = 3, - ACTIONS(10478), 1, + [194734] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5864), 1, + STATE(6698), 1, sym__directive_body_with_parameter, - [199694] = 3, - ACTIONS(10326), 1, + [194744] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5863), 1, + STATE(6699), 1, sym__directive_body_with_parameter, - [199704] = 3, - ACTIONS(10630), 1, + [194754] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5853), 1, + STATE(6700), 1, sym__directive_body_with_parameter, - [199714] = 3, - ACTIONS(10582), 1, + [194764] = 3, + ACTIONS(11136), 1, + anon_sym_LPAREN2, + STATE(637), 1, + sym__directive_parameter, + STATE(5564), 1, + sym__directive_body_with_parameter, + [194774] = 3, + ACTIONS(11130), 1, + anon_sym_LPAREN2, + STATE(641), 1, + sym__directive_parameter, + STATE(5680), 1, + sym__directive_body_with_parameter, + [194784] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6484), 1, + STATE(6605), 1, sym__directive_body_with_parameter, - [199724] = 3, - ACTIONS(10588), 1, + [194794] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6452), 1, + STATE(6174), 1, sym__directive_body_with_parameter, - [199734] = 3, + [194804] = 3, ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6399), 1, + STATE(5634), 1, + sym__if_statement_directive_body, + [194814] = 3, + ACTIONS(11136), 1, + anon_sym_LPAREN2, + STATE(637), 1, + sym__directive_parameter, + STATE(6652), 1, sym__directive_body_with_parameter, - [199744] = 3, - ACTIONS(10600), 1, + [194824] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6367), 1, + STATE(6634), 1, sym__directive_body_with_parameter, - [199754] = 3, - ACTIONS(10612), 1, + [194834] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6334), 1, + STATE(6633), 1, sym__directive_body_with_parameter, - [199764] = 3, - ACTIONS(10618), 1, + [194844] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6307), 1, + STATE(6631), 1, sym__directive_body_with_parameter, - [199774] = 3, - ACTIONS(10620), 1, + [194854] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6260), 1, + STATE(6627), 1, + sym__directive_body_with_parameter, + [194864] = 3, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + STATE(250), 1, + sym__directive_parameter, + STATE(6626), 1, sym__directive_body_with_parameter, - [199784] = 3, - ACTIONS(10622), 1, + [194874] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6068), 1, + STATE(6625), 1, + sym__directive_body_with_parameter, + [194884] = 3, + ACTIONS(11124), 1, + anon_sym_LPAREN2, + STATE(644), 1, + sym__directive_parameter, + STATE(5659), 1, + sym__directive_body_with_parameter, + [194894] = 3, + ACTIONS(11144), 1, + anon_sym_LPAREN2, + STATE(633), 1, + sym__directive_parameter, + STATE(5679), 1, sym__directive_body_with_parameter, - [199794] = 3, - ACTIONS(9978), 1, + [194904] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6015), 1, + STATE(6623), 1, sym__if_statement_directive_body, - [199804] = 3, - ACTIONS(9972), 1, + [194914] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6004), 1, + STATE(6622), 1, sym__if_statement_directive_body, - [199814] = 3, - ACTIONS(9944), 1, + [194924] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5983), 1, + STATE(6620), 1, sym__if_statement_directive_body, - [199824] = 3, - ACTIONS(10040), 1, + [194934] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5979), 1, + STATE(6619), 1, sym__if_statement_directive_body, - [199834] = 3, - ACTIONS(10068), 1, + [194944] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5947), 1, + STATE(6618), 1, sym__if_statement_directive_body, - [199844] = 3, - ACTIONS(10026), 1, + [194954] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5908), 1, + STATE(5676), 1, + sym__directive_body_with_parameter, + [194964] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(6647), 1, sym__if_statement_directive_body, - [199854] = 3, - ACTIONS(10026), 1, + [194974] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5887), 1, + STATE(6614), 1, sym__if_statement_directive_body, - [199864] = 3, - ACTIONS(9970), 1, + [194984] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5879), 1, + STATE(6613), 1, sym__if_statement_directive_body, - [199874] = 3, - ACTIONS(9988), 1, + [194994] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5844), 1, + STATE(5675), 1, + sym__directive_body_with_parameter, + [195004] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(6609), 1, sym__if_statement_directive_body, - [199884] = 3, - ACTIONS(10008), 1, + [195014] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5772), 1, + STATE(6608), 1, sym__if_statement_directive_body, - [199894] = 3, - ACTIONS(10026), 1, + [195024] = 3, + ACTIONS(11198), 1, + anon_sym_LPAREN2, + STATE(627), 1, + sym__directive_parameter, + STATE(5486), 1, + sym__directive_body_with_parameter, + [195034] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5823), 1, + STATE(6603), 1, sym__if_statement_directive_body, - [199904] = 3, - ACTIONS(10650), 1, + [195044] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5783), 1, + STATE(6602), 1, + sym__directive_body_with_parameter, + [195054] = 3, + ACTIONS(13132), 1, + anon_sym_RPAREN, + ACTIONS(13134), 1, + anon_sym_LPAREN, + ACTIONS(13136), 1, + aux_sym_parameter_token1, + [195064] = 3, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + STATE(533), 1, + sym__directive_parameter, + STATE(6590), 1, + sym__directive_body_with_parameter, + [195074] = 3, + ACTIONS(11138), 1, + anon_sym_LPAREN2, + STATE(439), 1, + sym__directive_parameter, + STATE(6585), 1, sym__directive_body_with_parameter, - [199914] = 3, - ACTIONS(10638), 1, + [195084] = 3, + ACTIONS(11004), 1, + anon_sym_LPAREN2, + STATE(345), 1, + sym__directive_parameter, + STATE(6572), 1, + sym__directive_body_with_parameter, + [195094] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(644), 1, sym__directive_parameter, STATE(5674), 1, sym__directive_body_with_parameter, - [199924] = 3, - ACTIONS(10624), 1, + [195104] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5564), 1, + STATE(5444), 1, sym__directive_body_with_parameter, - [199934] = 3, - ACTIONS(10478), 1, + [195114] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6516), 1, + STATE(6571), 1, sym__directive_body_with_parameter, - [199944] = 3, - ACTIONS(10326), 1, + [195124] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5575), 1, + STATE(5545), 1, sym__directive_body_with_parameter, - [199954] = 3, - ACTIONS(10630), 1, + [195134] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5597), 1, + STATE(5544), 1, + sym__directive_body_with_parameter, + [195144] = 3, + ACTIONS(11204), 1, + anon_sym_LPAREN2, + STATE(444), 1, + sym__directive_parameter, + STATE(6570), 1, + sym__directive_body_with_parameter, + [195154] = 3, + ACTIONS(11100), 1, + anon_sym_LPAREN2, + STATE(649), 1, + sym__directive_parameter, + STATE(5774), 1, sym__directive_body_with_parameter, - [199964] = 3, - ACTIONS(10582), 1, + [195164] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5667), 1, + STATE(6559), 1, sym__directive_body_with_parameter, - [199974] = 3, - ACTIONS(10588), 1, + [195174] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5672), 1, + STATE(5654), 1, sym__directive_body_with_parameter, - [199984] = 3, - ACTIONS(10594), 1, + [195184] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5673), 1, + STATE(6558), 1, sym__directive_body_with_parameter, - [199994] = 3, - ACTIONS(10600), 1, + [195194] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5679), 1, + STATE(6557), 1, sym__directive_body_with_parameter, - [200004] = 3, - ACTIONS(10606), 1, + [195204] = 3, + ACTIONS(11144), 1, + anon_sym_LPAREN2, + STATE(633), 1, + sym__directive_parameter, + STATE(6556), 1, + sym__directive_body_with_parameter, + [195214] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5682), 1, + STATE(6555), 1, sym__directive_body_with_parameter, - [200014] = 3, - ACTIONS(10612), 1, + [195224] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5684), 1, + STATE(6549), 1, sym__directive_body_with_parameter, - [200024] = 3, - ACTIONS(10618), 1, + [195234] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5685), 1, + STATE(6537), 1, sym__directive_body_with_parameter, - [200034] = 3, - ACTIONS(10620), 1, + [195244] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5686), 1, + STATE(5653), 1, sym__directive_body_with_parameter, - [200044] = 3, - ACTIONS(10622), 1, + [195254] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5690), 1, + STATE(6532), 1, + sym__directive_body_with_parameter, + [195264] = 3, + ACTIONS(11180), 1, + anon_sym_LPAREN2, + STATE(621), 1, + sym__directive_parameter, + STATE(6519), 1, + sym__directive_body_with_parameter, + [195274] = 3, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + STATE(533), 1, + sym__directive_parameter, + STATE(5485), 1, sym__directive_body_with_parameter, - [200054] = 3, - ACTIONS(9978), 1, + [195284] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5590), 1, + STATE(6518), 1, sym__if_statement_directive_body, - [200064] = 3, - ACTIONS(9972), 1, + [195294] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5725), 1, + STATE(6517), 1, sym__if_statement_directive_body, - [200074] = 3, - ACTIONS(9944), 1, + [195304] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5726), 1, + STATE(6513), 1, sym__if_statement_directive_body, - [200084] = 3, - ACTIONS(10040), 1, + [195314] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5728), 1, + STATE(6512), 1, sym__if_statement_directive_body, - [200094] = 3, - ACTIONS(10068), 1, + [195324] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5732), 1, + STATE(6511), 1, sym__if_statement_directive_body, - [200104] = 3, - ACTIONS(10026), 1, + [195334] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5736), 1, + STATE(6508), 1, sym__if_statement_directive_body, - [200114] = 3, - ACTIONS(10026), 1, + [195344] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5737), 1, + STATE(6507), 1, sym__if_statement_directive_body, - [200124] = 3, - ACTIONS(9970), 1, + [195354] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5739), 1, + STATE(6506), 1, sym__if_statement_directive_body, - [200134] = 3, - ACTIONS(9988), 1, + [195364] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5748), 1, + STATE(6450), 1, sym__if_statement_directive_body, - [200144] = 3, - ACTIONS(10008), 1, + [195374] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5749), 1, + STATE(6500), 1, sym__if_statement_directive_body, - [200154] = 3, - ACTIONS(10026), 1, + [195384] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5750), 1, + STATE(6499), 1, sym__if_statement_directive_body, - [200164] = 3, - ACTIONS(10650), 1, + [195394] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5751), 1, + STATE(6498), 1, sym__directive_body_with_parameter, - [200174] = 3, - ACTIONS(10638), 1, + [195404] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5752), 1, + STATE(6497), 1, sym__directive_body_with_parameter, - [200184] = 3, - ACTIONS(10624), 1, + [195414] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5753), 1, + STATE(6496), 1, sym__directive_body_with_parameter, - [200194] = 3, - ACTIONS(10478), 1, + [195424] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5754), 1, + STATE(6495), 1, sym__directive_body_with_parameter, - [200204] = 3, - ACTIONS(10326), 1, + [195434] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5755), 1, + STATE(6494), 1, + sym__directive_body_with_parameter, + [195444] = 3, + ACTIONS(11204), 1, + anon_sym_LPAREN2, + STATE(444), 1, + sym__directive_parameter, + STATE(6489), 1, sym__directive_body_with_parameter, - [200214] = 3, - ACTIONS(10630), 1, + [195454] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5757), 1, + STATE(5543), 1, sym__directive_body_with_parameter, - [200224] = 3, - ACTIONS(10582), 1, + [195464] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6494), 1, + STATE(6452), 1, sym__directive_body_with_parameter, - [200234] = 3, - ACTIONS(10588), 1, + [195474] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6506), 1, + STATE(6451), 1, sym__directive_body_with_parameter, - [200244] = 3, - ACTIONS(10594), 1, + [195484] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6526), 1, + STATE(6449), 1, sym__directive_body_with_parameter, - [200254] = 3, - ACTIONS(10600), 1, + [195494] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6686), 1, + STATE(6448), 1, sym__directive_body_with_parameter, - [200264] = 3, - ACTIONS(10606), 1, + [195504] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6718), 1, + STATE(6550), 1, sym__directive_body_with_parameter, - [200274] = 3, - ACTIONS(10612), 1, + [195514] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6782), 1, + STATE(5652), 1, sym__directive_body_with_parameter, - [200284] = 3, - ACTIONS(10618), 1, + [195524] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6795), 1, + STATE(6445), 1, sym__directive_body_with_parameter, - [200294] = 3, - ACTIONS(10620), 1, + [195534] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6814), 1, + STATE(6444), 1, sym__directive_body_with_parameter, - [200304] = 3, - ACTIONS(10622), 1, + [195544] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6825), 1, + STATE(6443), 1, sym__directive_body_with_parameter, - [200314] = 3, - ACTIONS(9978), 1, + [195554] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6826), 1, - sym__if_statement_directive_body, - [200324] = 3, - ACTIONS(9972), 1, + STATE(6442), 1, + sym__directive_body_with_parameter, + [195564] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6827), 1, - sym__if_statement_directive_body, - [200334] = 3, - ACTIONS(9944), 1, + STATE(5542), 1, + sym__directive_body_with_parameter, + [195574] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6846), 1, + STATE(6437), 1, sym__if_statement_directive_body, - [200344] = 3, - ACTIONS(10040), 1, + [195584] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6729), 1, + STATE(6436), 1, sym__if_statement_directive_body, - [200354] = 3, - ACTIONS(10068), 1, + [195594] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6169), 1, - sym__if_statement_directive_body, - [200364] = 3, - ACTIONS(10026), 1, + STATE(5651), 1, + sym__directive_body_with_parameter, + [195604] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6569), 1, + STATE(6424), 1, sym__if_statement_directive_body, - [200374] = 3, - ACTIONS(10026), 1, + [195614] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6558), 1, + STATE(6419), 1, sym__if_statement_directive_body, - [200384] = 3, - ACTIONS(9970), 1, + [195624] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6345), 1, - sym__if_statement_directive_body, - [200394] = 3, - ACTIONS(9988), 1, + STATE(5650), 1, + sym__directive_body_with_parameter, + [195634] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6398), 1, + STATE(6406), 1, sym__if_statement_directive_body, - [200404] = 3, - ACTIONS(10008), 1, + [195644] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6379), 1, + STATE(6404), 1, sym__if_statement_directive_body, - [200414] = 3, - ACTIONS(10026), 1, + [195654] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6377), 1, + STATE(6403), 1, sym__if_statement_directive_body, - [200424] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(6346), 1, - sym__directive_body_with_parameter, - [200434] = 3, - ACTIONS(10638), 1, - anon_sym_LPAREN2, - STATE(544), 1, - sym__directive_parameter, - STATE(6218), 1, - sym__directive_body_with_parameter, - [200444] = 3, - ACTIONS(10624), 1, - anon_sym_LPAREN2, - STATE(448), 1, - sym__directive_parameter, - STATE(6315), 1, - sym__directive_body_with_parameter, - [200454] = 3, - ACTIONS(10478), 1, + [195664] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6282), 1, + STATE(5649), 1, sym__directive_body_with_parameter, - [200464] = 3, - ACTIONS(10326), 1, + [195674] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6251), 1, + STATE(5484), 1, sym__directive_body_with_parameter, - [200474] = 3, - ACTIONS(10630), 1, + [195684] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(627), 1, sym__directive_parameter, - STATE(5866), 1, + STATE(5540), 1, sym__directive_body_with_parameter, - [200484] = 3, - ACTIONS(10582), 1, + [195694] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5652), 1, - sym__directive_body_with_parameter, - [200494] = 3, - ACTIONS(10588), 1, + STATE(5539), 1, + sym__if_statement_directive_body, + [195704] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5644), 1, - sym__directive_body_with_parameter, - [200504] = 3, - ACTIONS(10594), 1, + STATE(5648), 1, + sym__if_statement_directive_body, + [195714] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5633), 1, - sym__directive_body_with_parameter, - [200514] = 3, - ACTIONS(10600), 1, + STATE(5647), 1, + sym__if_statement_directive_body, + [195724] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5618), 1, - sym__directive_body_with_parameter, - [200524] = 3, - ACTIONS(10606), 1, + STATE(6322), 1, + sym__if_statement_directive_body, + [195734] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5610), 1, - sym__directive_body_with_parameter, - [200534] = 3, - ACTIONS(10612), 1, + STATE(5646), 1, + sym__if_statement_directive_body, + [195744] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5592), 1, - sym__directive_body_with_parameter, - [200544] = 3, - ACTIONS(10618), 1, + STATE(6394), 1, + sym__if_statement_directive_body, + [195754] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5876), 1, - sym__directive_body_with_parameter, - [200554] = 3, - ACTIONS(10620), 1, + STATE(6393), 1, + sym__if_statement_directive_body, + [195764] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5940), 1, + STATE(5980), 1, sym__directive_body_with_parameter, - [200564] = 3, - ACTIONS(10622), 1, + [195774] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6383), 1, + STATE(5981), 1, sym__directive_body_with_parameter, - [200574] = 3, - ACTIONS(9978), 1, + [195784] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6388), 1, + STATE(6392), 1, sym__if_statement_directive_body, - [200584] = 3, - ACTIONS(9972), 1, + [195794] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6396), 1, - sym__if_statement_directive_body, - [200594] = 3, - ACTIONS(9944), 1, + STATE(6391), 1, + sym__directive_body_with_parameter, + [195804] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6510), 1, + STATE(5641), 1, sym__if_statement_directive_body, - [200604] = 3, - ACTIONS(10040), 1, + [195814] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5861), 1, + STATE(5640), 1, sym__if_statement_directive_body, - [200614] = 3, - ACTIONS(10068), 1, + [195824] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6648), 1, - sym__if_statement_directive_body, - [200624] = 3, - ACTIONS(10026), 1, + STATE(6390), 1, + sym__directive_body_with_parameter, + [195834] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5768), 1, + STATE(5538), 1, sym__if_statement_directive_body, - [200634] = 3, - ACTIONS(10026), 1, + [195844] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5774), 1, + STATE(5535), 1, sym__if_statement_directive_body, - [200644] = 3, - ACTIONS(9970), 1, + [195854] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5775), 1, - sym__if_statement_directive_body, - [200654] = 3, - ACTIONS(9988), 1, + STATE(6388), 1, + sym__directive_body_with_parameter, + [195864] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5792), 1, - sym__if_statement_directive_body, - [200664] = 3, - ACTIONS(10008), 1, + STATE(6387), 1, + sym__directive_body_with_parameter, + [195874] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5794), 1, - sym__if_statement_directive_body, - [200674] = 3, - ACTIONS(10026), 1, + STATE(6386), 1, + sym__directive_body_with_parameter, + [195884] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5813), 1, + STATE(5639), 1, sym__if_statement_directive_body, - [200684] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(5819), 1, - sym__directive_body_with_parameter, - [200694] = 3, - ACTIONS(10638), 1, + [195894] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5841), 1, + STATE(6385), 1, sym__directive_body_with_parameter, - [200704] = 3, - ACTIONS(10624), 1, + [195904] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5989), 1, - sym__directive_body_with_parameter, - [200714] = 3, - ACTIONS(10478), 1, + STATE(5527), 1, + sym__if_statement_directive_body, + [195914] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5862), 1, + STATE(6345), 1, sym__directive_body_with_parameter, - [200724] = 3, - ACTIONS(10326), 1, + [195924] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5890), 1, + STATE(6344), 1, sym__directive_body_with_parameter, - [200734] = 3, - ACTIONS(10630), 1, + [195934] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5943), 1, + STATE(6447), 1, sym__directive_body_with_parameter, - [200744] = 3, - ACTIONS(10582), 1, + [195944] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6124), 1, + STATE(6341), 1, sym__directive_body_with_parameter, - [200754] = 3, - ACTIONS(10588), 1, + [195954] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6125), 1, - sym__directive_body_with_parameter, - [200764] = 3, - ACTIONS(10594), 1, + STATE(5636), 1, + sym__if_statement_directive_body, + [195964] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6330), 1, + STATE(6340), 1, sym__directive_body_with_parameter, - [200774] = 3, - ACTIONS(10600), 1, + [195974] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6223), 1, + STATE(6337), 1, sym__directive_body_with_parameter, - [200784] = 3, - ACTIONS(10606), 1, + [195984] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6301), 1, + STATE(6335), 1, sym__directive_body_with_parameter, - [200794] = 3, - ACTIONS(10612), 1, + [195994] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6309), 1, - sym__directive_body_with_parameter, - [200804] = 3, - ACTIONS(10618), 1, + STATE(5635), 1, + sym__if_statement_directive_body, + [196004] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6310), 1, + STATE(6334), 1, sym__directive_body_with_parameter, - [200814] = 3, - ACTIONS(10620), 1, + [196014] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6318), 1, + STATE(6333), 1, sym__directive_body_with_parameter, - [200824] = 3, - ACTIONS(10622), 1, + [196024] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6321), 1, - sym__directive_body_with_parameter, - [200834] = 3, - ACTIONS(9978), 1, + STATE(5521), 1, + sym__if_statement_directive_body, + [196034] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(6325), 1, + STATE(6332), 1, sym__if_statement_directive_body, - [200844] = 3, - ACTIONS(9972), 1, + [196044] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6326), 1, + STATE(6331), 1, sym__if_statement_directive_body, - [200854] = 3, - ACTIONS(9944), 1, + [196054] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6327), 1, + STATE(6330), 1, sym__if_statement_directive_body, - [200864] = 3, - ACTIONS(10040), 1, + [196064] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(6328), 1, + STATE(6329), 1, sym__if_statement_directive_body, - [200874] = 3, - ACTIONS(10068), 1, + [196074] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6338), 1, + STATE(6328), 1, sym__if_statement_directive_body, - [200884] = 3, - ACTIONS(10026), 1, + [196084] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5952), 1, + STATE(6311), 1, sym__if_statement_directive_body, - [200894] = 3, - ACTIONS(10026), 1, + [196094] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6400), 1, + STATE(6306), 1, sym__if_statement_directive_body, - [200904] = 3, - ACTIONS(9970), 1, + [196104] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6401), 1, + STATE(6293), 1, sym__if_statement_directive_body, - [200914] = 3, - ACTIONS(9988), 1, + [196114] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6468), 1, + STATE(5625), 1, + sym__directive_body_with_parameter, + [196124] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(6286), 1, sym__if_statement_directive_body, - [200924] = 3, - ACTIONS(10008), 1, + [196134] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6477), 1, + STATE(6285), 1, sym__if_statement_directive_body, - [200934] = 3, - ACTIONS(10026), 1, + [196144] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6500), 1, + STATE(6284), 1, sym__if_statement_directive_body, - [200944] = 3, - ACTIONS(10650), 1, + [196154] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6509), 1, + STATE(6283), 1, sym__directive_body_with_parameter, - [200954] = 3, - ACTIONS(10638), 1, + [196164] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6586), 1, + STATE(6281), 1, sym__directive_body_with_parameter, - [200964] = 3, - ACTIONS(10624), 1, + [196174] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6603), 1, + STATE(6280), 1, sym__directive_body_with_parameter, - [200974] = 3, - ACTIONS(10478), 1, + [196184] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6650), 1, + STATE(6279), 1, + sym__directive_body_with_parameter, + [196194] = 3, + ACTIONS(10840), 1, + anon_sym_LPAREN2, + STATE(246), 1, + sym__directive_parameter, + STATE(6278), 1, sym__directive_body_with_parameter, - [200984] = 3, - ACTIONS(10326), 1, + [196204] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6633), 1, + STATE(6277), 1, sym__directive_body_with_parameter, - [200994] = 3, - ACTIONS(10630), 1, + [196214] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6651), 1, + STATE(5483), 1, sym__directive_body_with_parameter, - [201004] = 3, - ACTIONS(10582), 1, + [196224] = 3, + ACTIONS(10512), 1, + anon_sym_LPAREN2, + STATE(88), 1, + sym__directive_parameter, + STATE(5633), 1, + sym__if_statement_directive_body, + [196234] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6829), 1, + STATE(6339), 1, sym__directive_body_with_parameter, - [201014] = 3, - ACTIONS(10588), 1, + [196244] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6828), 1, + STATE(6266), 1, sym__directive_body_with_parameter, - [201024] = 3, - ACTIONS(10594), 1, + [196254] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6821), 1, + STATE(6237), 1, sym__directive_body_with_parameter, - [201034] = 3, - ACTIONS(10600), 1, + [196264] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6820), 1, + STATE(6236), 1, sym__directive_body_with_parameter, - [201044] = 3, - ACTIONS(10606), 1, + [196274] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6819), 1, + STATE(6235), 1, sym__directive_body_with_parameter, - [201054] = 3, - ACTIONS(10612), 1, + [196284] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6816), 1, + STATE(6230), 1, sym__directive_body_with_parameter, - [201064] = 3, - ACTIONS(10618), 1, + [196294] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6813), 1, + STATE(6229), 1, sym__directive_body_with_parameter, - [201074] = 3, - ACTIONS(10620), 1, + [196304] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6812), 1, + STATE(6227), 1, sym__directive_body_with_parameter, - [201084] = 3, - ACTIONS(10622), 1, + [196314] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6810), 1, + STATE(6226), 1, sym__directive_body_with_parameter, - [201094] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6807), 1, - sym__if_statement_directive_body, - [201104] = 3, - ACTIONS(9972), 1, + [196324] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6590), 1, + STATE(5520), 1, sym__if_statement_directive_body, - [201114] = 3, - ACTIONS(9944), 1, + [196334] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6654), 1, + STATE(6225), 1, sym__if_statement_directive_body, - [201124] = 3, - ACTIONS(10040), 1, + [196344] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5919), 1, + STATE(6223), 1, sym__if_statement_directive_body, - [201134] = 3, - ACTIONS(10068), 1, + [196354] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6805), 1, + STATE(6222), 1, sym__if_statement_directive_body, - [201144] = 3, - ACTIONS(10026), 1, + [196364] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6802), 1, + STATE(6221), 1, sym__if_statement_directive_body, - [201154] = 3, - ACTIONS(10026), 1, + [196374] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6801), 1, + STATE(5632), 1, sym__if_statement_directive_body, - [201164] = 3, - ACTIONS(9970), 1, + [196384] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6792), 1, + STATE(6220), 1, sym__if_statement_directive_body, - [201174] = 3, - ACTIONS(9988), 1, + [196394] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6756), 1, + STATE(6218), 1, sym__if_statement_directive_body, - [201184] = 3, - ACTIONS(10008), 1, + [196404] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6755), 1, + STATE(6217), 1, sym__if_statement_directive_body, - [201194] = 3, - ACTIONS(10026), 1, + [196414] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6754), 1, + STATE(5513), 1, sym__if_statement_directive_body, - [201204] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(6753), 1, - sym__directive_body_with_parameter, - [201214] = 3, - ACTIONS(10638), 1, - anon_sym_LPAREN2, - STATE(544), 1, - sym__directive_parameter, - STATE(6747), 1, - sym__directive_body_with_parameter, - [201224] = 3, - ACTIONS(10624), 1, - anon_sym_LPAREN2, - STATE(448), 1, - sym__directive_parameter, - STATE(6743), 1, - sym__directive_body_with_parameter, - [201234] = 3, - ACTIONS(10478), 1, + [196424] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6741), 1, + STATE(5631), 1, sym__directive_body_with_parameter, - [201244] = 3, - ACTIONS(10326), 1, + [196434] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6738), 1, + STATE(5630), 1, sym__directive_body_with_parameter, - [201254] = 3, - ACTIONS(10630), 1, + [196444] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6737), 1, - sym__directive_body_with_parameter, - [201264] = 3, - ACTIONS(10582), 1, + STATE(5512), 1, + sym__if_statement_directive_body, + [196454] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6664), 1, - sym__directive_body_with_parameter, - [201274] = 3, - ACTIONS(10588), 1, + STATE(6192), 1, + sym__if_statement_directive_body, + [196464] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6662), 1, - sym__directive_body_with_parameter, - [201284] = 3, - ACTIONS(10594), 1, + STATE(6179), 1, + sym__if_statement_directive_body, + [196474] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6771), 1, - sym__directive_body_with_parameter, - [201294] = 3, - ACTIONS(10600), 1, + STATE(6178), 1, + sym__if_statement_directive_body, + [196484] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6657), 1, + STATE(6177), 1, sym__directive_body_with_parameter, - [201304] = 3, - ACTIONS(10606), 1, + [196494] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6656), 1, + STATE(6176), 1, sym__directive_body_with_parameter, - [201314] = 3, - ACTIONS(10612), 1, + [196504] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6646), 1, + STATE(6169), 1, sym__directive_body_with_parameter, - [201324] = 3, - ACTIONS(10618), 1, + [196514] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6645), 1, + STATE(5629), 1, sym__directive_body_with_parameter, - [201334] = 3, - ACTIONS(10620), 1, + [196524] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6643), 1, + STATE(5628), 1, sym__directive_body_with_parameter, - [201344] = 3, - ACTIONS(10622), 1, + [196534] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6641), 1, + STATE(6168), 1, sym__directive_body_with_parameter, - [201354] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6639), 1, - sym__if_statement_directive_body, - [201364] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6638), 1, - sym__if_statement_directive_body, - [201374] = 3, - ACTIONS(9944), 1, + [196544] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(6660), 1, - sym__if_statement_directive_body, - [201384] = 3, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6629), 1, - sym__if_statement_directive_body, - [201394] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(6615), 1, + STATE(5498), 1, sym__if_statement_directive_body, - [201404] = 3, - ACTIONS(10026), 1, + [196554] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6595), 1, - sym__if_statement_directive_body, - [201414] = 3, - ACTIONS(10026), 1, + STATE(5482), 1, + sym__directive_body_with_parameter, + [196564] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6594), 1, - sym__if_statement_directive_body, - [201424] = 3, - ACTIONS(9970), 1, + STATE(6167), 1, + sym__directive_body_with_parameter, + [196574] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6593), 1, - sym__if_statement_directive_body, - [201434] = 3, - ACTIONS(9988), 1, + STATE(6166), 1, + sym__directive_body_with_parameter, + [196584] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6581), 1, - sym__if_statement_directive_body, - [201444] = 3, - ACTIONS(10008), 1, + STATE(5479), 1, + sym__directive_body_with_parameter, + [196594] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6578), 1, - sym__if_statement_directive_body, - [201454] = 3, - ACTIONS(10026), 1, + STATE(5626), 1, + sym__directive_body_with_parameter, + [196604] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6576), 1, + STATE(5534), 1, sym__if_statement_directive_body, - [201464] = 3, - ACTIONS(10650), 1, + [196614] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6575), 1, + STATE(6157), 1, sym__directive_body_with_parameter, - [201474] = 3, - ACTIONS(10638), 1, + [196624] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6574), 1, + STATE(6152), 1, sym__directive_body_with_parameter, - [201484] = 3, - ACTIONS(10624), 1, + [196634] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6563), 1, + STATE(5621), 1, sym__directive_body_with_parameter, - [201494] = 3, - ACTIONS(10478), 1, + [196644] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6562), 1, + STATE(6151), 1, sym__directive_body_with_parameter, - [201504] = 3, - ACTIONS(10326), 1, + [196654] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6561), 1, + STATE(6137), 1, sym__directive_body_with_parameter, - [201514] = 3, - ACTIONS(10630), 1, + [196664] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6557), 1, + STATE(5620), 1, sym__directive_body_with_parameter, - [201524] = 3, - ACTIONS(10582), 1, + [196674] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6478), 1, + STATE(6238), 1, sym__directive_body_with_parameter, - [201534] = 3, - ACTIONS(10588), 1, + [196684] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6476), 1, + STATE(6117), 1, sym__directive_body_with_parameter, - [201544] = 3, - ACTIONS(10594), 1, + [196694] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6475), 1, + STATE(6116), 1, sym__directive_body_with_parameter, - [201554] = 3, - ACTIONS(10600), 1, + [196704] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6473), 1, + STATE(6115), 1, sym__directive_body_with_parameter, - [201564] = 3, - ACTIONS(10606), 1, + [196714] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6472), 1, + STATE(6111), 1, sym__directive_body_with_parameter, - [201574] = 3, - ACTIONS(10612), 1, + [196724] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6408), 1, - sym__directive_body_with_parameter, - [201584] = 3, - ACTIONS(10618), 1, + STATE(5493), 1, + sym__if_statement_directive_body, + [196734] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6449), 1, - sym__directive_body_with_parameter, - [201594] = 3, - ACTIONS(10620), 1, + STATE(6110), 1, + sym__if_statement_directive_body, + [196744] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6444), 1, - sym__directive_body_with_parameter, - [201604] = 3, - ACTIONS(10622), 1, + STATE(6108), 1, + sym__if_statement_directive_body, + [196754] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6426), 1, - sym__directive_body_with_parameter, - [201614] = 3, - ACTIONS(9978), 1, + STATE(6105), 1, + sym__if_statement_directive_body, + [196764] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6424), 1, + STATE(6104), 1, sym__if_statement_directive_body, - [201624] = 3, - ACTIONS(9972), 1, + [196774] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, STATE(119), 1, sym__directive_parameter, - STATE(6423), 1, + STATE(6103), 1, sym__if_statement_directive_body, - [201634] = 3, - ACTIONS(9944), 1, + [196784] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6417), 1, + STATE(6101), 1, sym__if_statement_directive_body, - [201644] = 3, - ACTIONS(10040), 1, + [196794] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6415), 1, + STATE(6099), 1, sym__if_statement_directive_body, - [201654] = 3, - ACTIONS(10068), 1, + [196804] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6413), 1, + STATE(6098), 1, sym__if_statement_directive_body, - [201664] = 3, - ACTIONS(10026), 1, + [196814] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6336), 1, + STATE(6093), 1, sym__if_statement_directive_body, - [201674] = 3, - ACTIONS(10026), 1, + [196824] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(644), 1, sym__directive_parameter, - STATE(6407), 1, - sym__if_statement_directive_body, - [201684] = 3, - ACTIONS(9970), 1, + STATE(5619), 1, + sym__directive_body_with_parameter, + [196834] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6406), 1, + STATE(6092), 1, sym__if_statement_directive_body, - [201694] = 3, - ACTIONS(9988), 1, + [196844] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6393), 1, + STATE(6087), 1, sym__if_statement_directive_body, - [201704] = 1, - ACTIONS(12670), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [201710] = 3, - ACTIONS(10008), 1, + [196854] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6391), 1, - sym__if_statement_directive_body, - [201720] = 3, - ACTIONS(10026), 1, + STATE(6086), 1, + sym__directive_body_with_parameter, + [196864] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6390), 1, + STATE(6071), 1, + sym__directive_body_with_parameter, + [196874] = 3, + ACTIONS(10524), 1, + anon_sym_LPAREN2, + STATE(122), 1, + sym__directive_parameter, + STATE(5481), 1, sym__if_statement_directive_body, - [201730] = 3, - ACTIONS(10650), 1, + [196884] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6389), 1, + STATE(5972), 1, sym__directive_body_with_parameter, - [201740] = 3, - ACTIONS(10638), 1, + [196894] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6387), 1, + STATE(6052), 1, sym__directive_body_with_parameter, - [201750] = 3, - ACTIONS(10624), 1, + [196904] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6380), 1, + STATE(6051), 1, sym__directive_body_with_parameter, - [201760] = 3, - ACTIONS(10478), 1, + [196914] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6376), 1, + STATE(6050), 1, sym__directive_body_with_parameter, - [201770] = 3, - ACTIONS(10326), 1, + [196924] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6362), 1, + STATE(5460), 1, sym__directive_body_with_parameter, - [201780] = 3, - ACTIONS(10630), 1, + [196934] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6357), 1, + STATE(5459), 1, sym__directive_body_with_parameter, - [201790] = 3, - ACTIONS(10582), 1, + [196944] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(6288), 1, + STATE(6035), 1, sym__directive_body_with_parameter, - [201800] = 3, - ACTIONS(10588), 1, + [196954] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(6273), 1, + STATE(6034), 1, sym__directive_body_with_parameter, - [201810] = 3, - ACTIONS(10594), 1, + [196964] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(6266), 1, + STATE(6033), 1, sym__directive_body_with_parameter, - [201820] = 3, - ACTIONS(10600), 1, + [196974] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6248), 1, + STATE(6031), 1, sym__directive_body_with_parameter, - [201830] = 3, - ACTIONS(10606), 1, + [196984] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(6247), 1, + STATE(6030), 1, sym__directive_body_with_parameter, - [201840] = 3, - ACTIONS(10612), 1, + [196994] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6245), 1, + STATE(6040), 1, sym__directive_body_with_parameter, - [201850] = 3, - ACTIONS(10618), 1, + [197004] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6240), 1, + STATE(6009), 1, sym__directive_body_with_parameter, - [201860] = 3, - ACTIONS(10620), 1, + [197014] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6236), 1, + STATE(5475), 1, sym__directive_body_with_parameter, - [201870] = 3, - ACTIONS(10622), 1, + [197024] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6234), 1, + STATE(5586), 1, sym__directive_body_with_parameter, - [201880] = 3, - ACTIONS(9978), 1, + [197034] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(122), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6230), 1, - sym__if_statement_directive_body, - [201890] = 3, - ACTIONS(9972), 1, + STATE(5480), 1, + sym__directive_body_with_parameter, + [197044] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6229), 1, - sym__if_statement_directive_body, - [201900] = 3, - ACTIONS(9944), 1, + STATE(6004), 1, + sym__directive_body_with_parameter, + [197054] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(77), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6227), 1, - sym__if_statement_directive_body, - [201910] = 3, - ACTIONS(10040), 1, + STATE(5991), 1, + sym__directive_body_with_parameter, + [197064] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(115), 1, + STATE(633), 1, sym__directive_parameter, - STATE(6225), 1, - sym__if_statement_directive_body, - [201920] = 3, - ACTIONS(10068), 1, + STATE(5456), 1, + sym__directive_body_with_parameter, + [197074] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(122), 1, sym__directive_parameter, - STATE(6165), 1, + STATE(5990), 1, sym__if_statement_directive_body, - [201930] = 3, - ACTIONS(10026), 1, + [197084] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6213), 1, - sym__if_statement_directive_body, - [201940] = 3, - ACTIONS(10026), 1, + STATE(5551), 1, + sym__directive_body_with_parameter, + [197094] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6211), 1, + STATE(5989), 1, sym__if_statement_directive_body, - [201950] = 3, - ACTIONS(9970), 1, + [197104] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(439), 1, sym__directive_parameter, - STATE(6210), 1, - sym__if_statement_directive_body, - [201960] = 3, - ACTIONS(9988), 1, + STATE(5548), 1, + sym__directive_body_with_parameter, + [197114] = 1, + ACTIONS(13138), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [197120] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6198), 1, - sym__if_statement_directive_body, - [201970] = 3, - ACTIONS(10008), 1, + STATE(5455), 1, + sym__directive_body_with_parameter, + [197130] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(77), 1, sym__directive_parameter, - STATE(6178), 1, + STATE(5985), 1, sym__if_statement_directive_body, - [201980] = 3, - ACTIONS(10026), 1, + [197140] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(115), 1, sym__directive_parameter, - STATE(6305), 1, + STATE(5984), 1, sym__if_statement_directive_body, - [201990] = 3, - ACTIONS(10650), 1, + [197150] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6159), 1, - sym__directive_body_with_parameter, - [202000] = 3, - ACTIONS(10638), 1, + STATE(5983), 1, + sym__if_statement_directive_body, + [197160] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6158), 1, - sym__directive_body_with_parameter, - [202010] = 3, - ACTIONS(10624), 1, + STATE(5977), 1, + sym__if_statement_directive_body, + [197170] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6157), 1, - sym__directive_body_with_parameter, - [202020] = 3, - ACTIONS(10478), 1, + STATE(5976), 1, + sym__if_statement_directive_body, + [197180] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6149), 1, + STATE(5474), 1, sym__directive_body_with_parameter, - [202030] = 3, - ACTIONS(10326), 1, + [197190] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6147), 1, - sym__directive_body_with_parameter, - [202040] = 3, - ACTIONS(10630), 1, + STATE(5975), 1, + sym__if_statement_directive_body, + [197200] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6139), 1, - sym__directive_body_with_parameter, - [202050] = 3, - ACTIONS(10582), 1, + STATE(5970), 1, + sym__if_statement_directive_body, + [197210] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6061), 1, - sym__directive_body_with_parameter, - [202060] = 3, - ACTIONS(10588), 1, + STATE(5969), 1, + sym__if_statement_directive_body, + [197220] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6056), 1, + STATE(5453), 1, sym__directive_body_with_parameter, - [202070] = 3, - ACTIONS(10594), 1, + [197230] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6054), 1, + STATE(5541), 1, sym__directive_body_with_parameter, - [202080] = 3, - ACTIONS(10600), 1, + [197240] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6052), 1, - sym__directive_body_with_parameter, - [202090] = 3, - ACTIONS(10606), 1, + STATE(5967), 1, + sym__if_statement_directive_body, + [197250] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(516), 1, sym__directive_parameter, - STATE(6050), 1, + STATE(5473), 1, sym__directive_body_with_parameter, - [202100] = 3, - ACTIONS(10612), 1, + [197260] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(6044), 1, + STATE(5472), 1, sym__directive_body_with_parameter, - [202110] = 3, - ACTIONS(10618), 1, + [197270] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6037), 1, + STATE(5537), 1, sym__directive_body_with_parameter, - [202120] = 3, - ACTIONS(10620), 1, + [197280] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(625), 1, sym__directive_parameter, - STATE(6034), 1, + STATE(5470), 1, sym__directive_body_with_parameter, - [202130] = 3, - ACTIONS(10622), 1, + [197290] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6032), 1, + STATE(5966), 1, sym__directive_body_with_parameter, - [202140] = 3, - ACTIONS(9978), 1, - anon_sym_LPAREN2, - STATE(122), 1, - sym__directive_parameter, - STATE(6030), 1, - sym__if_statement_directive_body, - [202150] = 3, - ACTIONS(9972), 1, - anon_sym_LPAREN2, - STATE(119), 1, - sym__directive_parameter, - STATE(6029), 1, - sym__if_statement_directive_body, - [202160] = 3, - ACTIONS(9944), 1, - anon_sym_LPAREN2, - STATE(77), 1, - sym__directive_parameter, - STATE(6019), 1, - sym__if_statement_directive_body, - [202170] = 3, - ACTIONS(10040), 1, - anon_sym_LPAREN2, - STATE(115), 1, - sym__directive_parameter, - STATE(6160), 1, - sym__if_statement_directive_body, - [202180] = 3, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - STATE(109), 1, - sym__directive_parameter, - STATE(6003), 1, - sym__if_statement_directive_body, - [202190] = 3, - ACTIONS(10026), 1, - anon_sym_LPAREN2, - STATE(86), 1, - sym__directive_parameter, - STATE(5978), 1, - sym__if_statement_directive_body, - [202200] = 3, - ACTIONS(10026), 1, + [197300] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5977), 1, + STATE(5536), 1, sym__if_statement_directive_body, - [202210] = 3, - ACTIONS(9970), 1, + [197310] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5976), 1, - sym__if_statement_directive_body, - [202220] = 3, - ACTIONS(9988), 1, + STATE(5965), 1, + sym__directive_body_with_parameter, + [197320] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(439), 1, sym__directive_parameter, STATE(5964), 1, - sym__if_statement_directive_body, - [202230] = 3, - ACTIONS(10008), 1, + sym__directive_body_with_parameter, + [197330] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(345), 1, sym__directive_parameter, STATE(5959), 1, - sym__if_statement_directive_body, - [202240] = 3, - ACTIONS(10026), 1, + sym__directive_body_with_parameter, + [197340] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(246), 1, sym__directive_parameter, STATE(5958), 1, - sym__if_statement_directive_body, - [202250] = 3, - ACTIONS(10650), 1, - anon_sym_LPAREN2, - STATE(640), 1, - sym__directive_parameter, - STATE(5957), 1, sym__directive_body_with_parameter, - [202260] = 3, - ACTIONS(10638), 1, + [197350] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(444), 1, sym__directive_parameter, - STATE(5955), 1, + STATE(5943), 1, sym__directive_body_with_parameter, - [202270] = 3, - ACTIONS(10624), 1, + [197360] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5946), 1, + STATE(5469), 1, sym__directive_body_with_parameter, - [202280] = 3, - ACTIONS(10478), 1, + [197370] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5944), 1, + STATE(5461), 1, sym__directive_body_with_parameter, - [202290] = 3, - ACTIONS(10326), 1, + [197380] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(644), 1, sym__directive_parameter, - STATE(5942), 1, + STATE(5912), 1, sym__directive_body_with_parameter, - [202300] = 3, - ACTIONS(10630), 1, + [197390] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5941), 1, + STATE(5911), 1, sym__directive_body_with_parameter, - [202310] = 3, - ACTIONS(10582), 1, + [197400] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(644), 1, + STATE(98), 1, sym__directive_parameter, - STATE(5804), 1, - sym__directive_body_with_parameter, - [202320] = 3, - ACTIONS(10588), 1, + STATE(5533), 1, + sym__if_statement_directive_body, + [197410] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5800), 1, + STATE(6024), 1, sym__directive_body_with_parameter, - [202330] = 3, - ACTIONS(10594), 1, + [197420] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5799), 1, + STATE(5909), 1, sym__directive_body_with_parameter, - [202340] = 3, - ACTIONS(10600), 1, + [197430] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(625), 1, sym__directive_parameter, - STATE(5798), 1, + STATE(5908), 1, sym__directive_body_with_parameter, - [202350] = 3, - ACTIONS(10606), 1, + [197440] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(625), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5793), 1, + STATE(5906), 1, sym__directive_body_with_parameter, - [202360] = 3, - ACTIONS(10612), 1, + [197450] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5785), 1, + STATE(5905), 1, sym__directive_body_with_parameter, - [202370] = 3, - ACTIONS(10618), 1, + [197460] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5760), 1, + STATE(5903), 1, sym__directive_body_with_parameter, - [202380] = 3, - ACTIONS(10620), 1, + [197470] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5781), 1, + STATE(5898), 1, sym__directive_body_with_parameter, - [202390] = 3, - ACTIONS(10622), 1, + [197480] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5778), 1, + STATE(5452), 1, sym__directive_body_with_parameter, - [202400] = 3, - ACTIONS(9978), 1, + [197490] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5767), 1, + STATE(5879), 1, sym__if_statement_directive_body, - [202410] = 3, - ACTIONS(9972), 1, + [197500] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5766), 1, + STATE(5865), 1, sym__if_statement_directive_body, - [202420] = 3, - ACTIONS(9944), 1, + [197510] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5764), 1, + STATE(5864), 1, sym__if_statement_directive_body, - [202430] = 3, - ACTIONS(10040), 1, + [197520] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5763), 1, + STATE(5863), 1, sym__if_statement_directive_body, - [202440] = 2, - ACTIONS(12674), 1, - aux_sym__section_parameter_token1, - ACTIONS(12672), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [202448] = 3, - ACTIONS(10068), 1, + [197530] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5762), 1, + STATE(6011), 1, + sym__directive_body_with_parameter, + [197540] = 3, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + STATE(119), 1, + sym__directive_parameter, + STATE(5862), 1, sym__if_statement_directive_body, - [202458] = 3, - ACTIONS(10026), 1, + [197550] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6815), 1, + STATE(5810), 1, sym__if_statement_directive_body, - [202468] = 3, - ACTIONS(10026), 1, + [197560] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6612), 1, + STATE(5856), 1, sym__if_statement_directive_body, - [202478] = 3, - ACTIONS(9970), 1, + [197570] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6683), 1, + STATE(5855), 1, sym__if_statement_directive_body, - [202488] = 3, - ACTIONS(9988), 1, + [197580] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6559), 1, + STATE(6012), 1, + sym__directive_body_with_parameter, + [197590] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(5849), 1, sym__if_statement_directive_body, - [202498] = 3, - ACTIONS(10008), 1, + [197600] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(78), 1, sym__directive_parameter, - STATE(5858), 1, + STATE(5848), 1, sym__if_statement_directive_body, - [202508] = 3, - ACTIONS(10026), 1, + [197610] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6495), 1, + STATE(5846), 1, sym__if_statement_directive_body, - [202518] = 3, - ACTIONS(10650), 1, + [197620] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6482), 1, + STATE(5845), 1, sym__directive_body_with_parameter, - [202528] = 3, - ACTIONS(10638), 1, + [197630] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(533), 1, sym__directive_parameter, - STATE(6463), 1, + STATE(5844), 1, sym__directive_body_with_parameter, - [202538] = 3, - ACTIONS(10624), 1, + [197640] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6431), 1, + STATE(5522), 1, + sym__if_statement_directive_body, + [197650] = 3, + ACTIONS(11138), 1, + anon_sym_LPAREN2, + STATE(439), 1, + sym__directive_parameter, + STATE(5843), 1, sym__directive_body_with_parameter, - [202548] = 3, - ACTIONS(10478), 1, + [197660] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(345), 1, sym__directive_parameter, - STATE(6420), 1, + STATE(5842), 1, sym__directive_body_with_parameter, - [202558] = 3, - ACTIONS(10326), 1, + [197670] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(246), 1, sym__directive_parameter, - STATE(6366), 1, + STATE(5910), 1, sym__directive_body_with_parameter, - [202568] = 3, - ACTIONS(10630), 1, + [197680] = 3, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(444), 1, sym__directive_parameter, - STATE(6350), 1, + STATE(5841), 1, + sym__directive_body_with_parameter, + [197690] = 3, + ACTIONS(11136), 1, + anon_sym_LPAREN2, + STATE(637), 1, + sym__directive_parameter, + STATE(5468), 1, sym__directive_body_with_parameter, - [202578] = 3, - ACTIONS(10582), 1, + [197700] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5857), 1, + STATE(5793), 1, sym__directive_body_with_parameter, - [202588] = 3, - ACTIONS(10588), 1, + [197710] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5812), 1, + STATE(5792), 1, sym__directive_body_with_parameter, - [202598] = 3, - ACTIONS(10594), 1, + [197720] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, STATE(5791), 1, sym__directive_body_with_parameter, - [202608] = 3, - ACTIONS(10600), 1, + [197730] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5784), 1, + STATE(5786), 1, sym__directive_body_with_parameter, - [202618] = 3, - ACTIONS(10606), 1, + [197740] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5780), 1, + STATE(5785), 1, sym__directive_body_with_parameter, - [202628] = 3, - ACTIONS(10612), 1, + [197750] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5655), 1, + STATE(5783), 1, sym__directive_body_with_parameter, - [202638] = 3, - ACTIONS(10618), 1, + [197760] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5680), 1, + STATE(5782), 1, sym__directive_body_with_parameter, - [202648] = 3, - ACTIONS(10620), 1, + [197770] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(6215), 1, + STATE(5781), 1, + sym__directive_body_with_parameter, + [197780] = 3, + ACTIONS(11180), 1, + anon_sym_LPAREN2, + STATE(621), 1, + sym__directive_parameter, + STATE(5780), 1, sym__directive_body_with_parameter, - [202658] = 3, - ACTIONS(10622), 1, + [197790] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5552), 1, + STATE(5519), 1, + sym__if_statement_directive_body, + [197800] = 3, + ACTIONS(11130), 1, + anon_sym_LPAREN2, + STATE(641), 1, + sym__directive_parameter, + STATE(5467), 1, + sym__directive_body_with_parameter, + [197810] = 3, + ACTIONS(11124), 1, + anon_sym_LPAREN2, + STATE(644), 1, + sym__directive_parameter, + STATE(5465), 1, + sym__directive_body_with_parameter, + [197820] = 3, + ACTIONS(11204), 1, + anon_sym_LPAREN2, + STATE(444), 1, + sym__directive_parameter, + STATE(5523), 1, sym__directive_body_with_parameter, - [202668] = 3, - ACTIONS(9978), 1, + [197830] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(5515), 1, + sym__if_statement_directive_body, + [197840] = 2, + ACTIONS(13142), 1, + aux_sym__section_parameter_token1, + ACTIONS(13140), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [197848] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5569), 1, + STATE(5758), 1, sym__if_statement_directive_body, - [202678] = 3, - ACTIONS(9972), 1, + [197858] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(6511), 1, + STATE(5742), 1, sym__if_statement_directive_body, - [202688] = 3, - ACTIONS(9944), 1, + [197868] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5584), 1, + STATE(5741), 1, sym__if_statement_directive_body, - [202698] = 3, - ACTIONS(10040), 1, + [197878] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5585), 1, + STATE(5740), 1, sym__if_statement_directive_body, - [202708] = 3, - ACTIONS(10068), 1, + [197888] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5586), 1, + STATE(5739), 1, sym__if_statement_directive_body, - [202718] = 3, - ACTIONS(10026), 1, + [197898] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(119), 1, sym__directive_parameter, - STATE(5594), 1, + STATE(5445), 1, sym__if_statement_directive_body, - [202728] = 3, - ACTIONS(10026), 1, + [197908] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5596), 1, + STATE(5732), 1, sym__if_statement_directive_body, - [202738] = 3, - ACTIONS(9970), 1, + [197918] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5598), 1, + STATE(5731), 1, sym__if_statement_directive_body, - [202748] = 3, - ACTIONS(9988), 1, + [197928] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(115), 1, sym__directive_parameter, - STATE(5607), 1, + STATE(5446), 1, sym__if_statement_directive_body, - [202758] = 3, - ACTIONS(10008), 1, + [197938] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(77), 1, sym__directive_parameter, - STATE(5608), 1, + STATE(5447), 1, sym__if_statement_directive_body, - [202768] = 3, - ACTIONS(10026), 1, + [197948] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(140), 1, sym__directive_parameter, - STATE(5609), 1, + STATE(5730), 1, sym__if_statement_directive_body, - [202778] = 3, - ACTIONS(10650), 1, + [197958] = 3, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(246), 1, sym__directive_parameter, - STATE(5611), 1, + STATE(5583), 1, sym__directive_body_with_parameter, - [202788] = 3, - ACTIONS(10638), 1, + [197968] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5612), 1, + STATE(5594), 1, sym__directive_body_with_parameter, - [202798] = 3, - ACTIONS(10624), 1, + [197978] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5613), 1, + STATE(5448), 1, + sym__if_statement_directive_body, + [197988] = 3, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + STATE(98), 1, + sym__directive_parameter, + STATE(5722), 1, + sym__if_statement_directive_body, + [197998] = 3, + ACTIONS(10566), 1, + anon_sym_LPAREN2, + STATE(78), 1, + sym__directive_parameter, + STATE(5721), 1, + sym__if_statement_directive_body, + [198008] = 3, + ACTIONS(10524), 1, + anon_sym_LPAREN2, + STATE(122), 1, + sym__directive_parameter, + STATE(5449), 1, + sym__if_statement_directive_body, + [198018] = 3, + ACTIONS(10586), 1, + anon_sym_LPAREN2, + STATE(83), 1, + sym__directive_parameter, + STATE(5720), 1, + sym__if_statement_directive_body, + [198028] = 3, + ACTIONS(11198), 1, + anon_sym_LPAREN2, + STATE(627), 1, + sym__directive_parameter, + STATE(5719), 1, sym__directive_body_with_parameter, - [202808] = 3, - ACTIONS(10478), 1, + [198038] = 3, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(533), 1, sym__directive_parameter, - STATE(5614), 1, + STATE(5718), 1, sym__directive_body_with_parameter, - [202818] = 3, - ACTIONS(10326), 1, + [198048] = 3, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(439), 1, sym__directive_parameter, - STATE(5638), 1, + STATE(5713), 1, sym__directive_body_with_parameter, - [202828] = 3, - ACTIONS(10630), 1, + [198058] = 3, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(345), 1, sym__directive_parameter, - STATE(5653), 1, + STATE(5711), 1, + sym__directive_body_with_parameter, + [198068] = 3, + ACTIONS(10840), 1, + anon_sym_LPAREN2, + STATE(246), 1, + sym__directive_parameter, + STATE(5699), 1, + sym__directive_body_with_parameter, + [198078] = 3, + ACTIONS(11138), 1, + anon_sym_LPAREN2, + STATE(439), 1, + sym__directive_parameter, + STATE(5598), 1, + sym__directive_body_with_parameter, + [198088] = 3, + ACTIONS(11204), 1, + anon_sym_LPAREN2, + STATE(444), 1, + sym__directive_parameter, + STATE(5796), 1, + sym__directive_body_with_parameter, + [198098] = 3, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + STATE(250), 1, + sym__directive_parameter, + STATE(5451), 1, sym__directive_body_with_parameter, - [202838] = 3, - ACTIONS(10582), 1, + [198108] = 3, + ACTIONS(11124), 1, anon_sym_LPAREN2, STATE(644), 1, sym__directive_parameter, - STATE(5742), 1, + STATE(5668), 1, sym__directive_body_with_parameter, - [202848] = 3, - ACTIONS(10588), 1, + [198118] = 3, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(639), 1, + STATE(641), 1, sym__directive_parameter, - STATE(5743), 1, + STATE(5667), 1, sym__directive_body_with_parameter, - [202858] = 3, - ACTIONS(10594), 1, + [198128] = 3, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(635), 1, + STATE(637), 1, sym__directive_parameter, - STATE(5745), 1, + STATE(5666), 1, sym__directive_body_with_parameter, - [202868] = 3, - ACTIONS(10600), 1, + [198138] = 3, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(631), 1, + STATE(633), 1, sym__directive_parameter, - STATE(5550), 1, + STATE(5665), 1, sym__directive_body_with_parameter, - [202878] = 3, - ACTIONS(10606), 1, + [198148] = 3, + ACTIONS(11154), 1, anon_sym_LPAREN2, STATE(625), 1, sym__directive_parameter, - STATE(5790), 1, + STATE(5664), 1, sym__directive_body_with_parameter, - [202888] = 3, - ACTIONS(10612), 1, + [198158] = 3, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(619), 1, + STATE(611), 1, sym__directive_parameter, - STATE(5822), 1, + STATE(5662), 1, sym__directive_body_with_parameter, - [202898] = 3, - ACTIONS(10618), 1, + [198168] = 3, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(549), 1, + STATE(516), 1, sym__directive_parameter, - STATE(5711), 1, + STATE(5658), 1, sym__directive_body_with_parameter, - [202908] = 3, - ACTIONS(10620), 1, + [198178] = 3, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(250), 1, sym__directive_parameter, - STATE(5865), 1, + STATE(5575), 1, sym__directive_body_with_parameter, - [202918] = 3, - ACTIONS(10622), 1, + [198188] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(535), 1, + STATE(621), 1, sym__directive_parameter, - STATE(5886), 1, + STATE(5637), 1, + sym__directive_body_with_parameter, + [198198] = 3, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + STATE(533), 1, + sym__directive_parameter, + STATE(5599), 1, sym__directive_body_with_parameter, - [202928] = 3, - ACTIONS(9978), 1, + [198208] = 3, + ACTIONS(10524), 1, anon_sym_LPAREN2, STATE(122), 1, sym__directive_parameter, - STATE(5930), 1, + STATE(5624), 1, sym__if_statement_directive_body, - [202938] = 3, - ACTIONS(9972), 1, + [198218] = 3, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(119), 1, + STATE(88), 1, sym__directive_parameter, - STATE(5950), 1, + STATE(5623), 1, sym__if_statement_directive_body, - [202948] = 3, - ACTIONS(9944), 1, + [198228] = 3, + ACTIONS(10594), 1, anon_sym_LPAREN2, STATE(77), 1, sym__directive_parameter, - STATE(5854), 1, + STATE(5622), 1, sym__if_statement_directive_body, - [202958] = 3, - ACTIONS(10040), 1, + [198238] = 3, + ACTIONS(10500), 1, anon_sym_LPAREN2, STATE(115), 1, sym__directive_parameter, - STATE(5982), 1, + STATE(5618), 1, sym__if_statement_directive_body, - [202968] = 3, - ACTIONS(10068), 1, + [198248] = 3, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(109), 1, + STATE(119), 1, sym__directive_parameter, - STATE(6014), 1, + STATE(5617), 1, sym__if_statement_directive_body, - [202978] = 3, - ACTIONS(10026), 1, + [198258] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6078), 1, + STATE(5613), 1, sym__if_statement_directive_body, - [202988] = 3, - ACTIONS(10026), 1, + [198268] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(83), 1, sym__directive_parameter, - STATE(5962), 1, + STATE(5612), 1, sym__if_statement_directive_body, - [202998] = 3, - ACTIONS(9970), 1, + [198278] = 3, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(140), 1, sym__directive_parameter, - STATE(6110), 1, + STATE(5611), 1, sym__if_statement_directive_body, - [203008] = 3, - ACTIONS(9988), 1, + [198288] = 3, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(100), 1, + STATE(621), 1, sym__directive_parameter, - STATE(6154), 1, - sym__if_statement_directive_body, - [203018] = 3, - ACTIONS(10008), 1, + STATE(5450), 1, + sym__directive_body_with_parameter, + [198298] = 3, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(138), 1, + STATE(98), 1, sym__directive_parameter, - STATE(6174), 1, + STATE(5606), 1, sym__if_statement_directive_body, - [203028] = 3, - ACTIONS(10026), 1, + [198308] = 3, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(86), 1, + STATE(78), 1, sym__directive_parameter, - STATE(6185), 1, + STATE(5605), 1, sym__if_statement_directive_body, - [203038] = 3, - ACTIONS(10650), 1, + [198318] = 3, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(640), 1, + STATE(83), 1, sym__directive_parameter, - STATE(6186), 1, - sym__directive_body_with_parameter, - [203048] = 3, - ACTIONS(10638), 1, + STATE(5604), 1, + sym__if_statement_directive_body, + [198328] = 3, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(544), 1, + STATE(627), 1, sym__directive_parameter, - STATE(6206), 1, + STATE(5601), 1, sym__directive_body_with_parameter, - [203058] = 3, - ACTIONS(10624), 1, + [198338] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(4297), 1, sym__directive_parameter, - STATE(6089), 1, - sym__directive_body_with_parameter, - [203068] = 3, - ACTIONS(10478), 1, + [198345] = 2, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(2012), 1, sym__directive_parameter, - STATE(6219), 1, - sym__directive_body_with_parameter, - [203078] = 3, - ACTIONS(10326), 1, + [198352] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(252), 1, + STATE(4277), 1, sym__directive_parameter, - STATE(6238), 1, - sym__directive_body_with_parameter, - [203088] = 3, - ACTIONS(10630), 1, + [198359] = 2, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(526), 1, + STATE(2762), 1, sym__directive_parameter, - STATE(6250), 1, - sym__directive_body_with_parameter, - [203098] = 2, - ACTIONS(12676), 1, - anon_sym_LPAREN, - ACTIONS(12666), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [203106] = 2, - ACTIONS(12680), 1, - aux_sym__section_parameter_token1, - ACTIONS(12678), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [203114] = 2, - ACTIONS(10144), 1, + [198366] = 2, + ACTIONS(11130), 1, anon_sym_LPAREN2, - STATE(3500), 1, + STATE(2761), 1, sym__directive_parameter, - [203121] = 2, - ACTIONS(10570), 1, + [198373] = 2, + ACTIONS(13146), 1, anon_sym_LPAREN2, - STATE(3077), 1, + STATE(4244), 1, sym__directive_parameter, - [203128] = 2, - ACTIONS(12682), 1, + [198380] = 2, + ACTIONS(13148), 1, anon_sym_RPAREN, - ACTIONS(12684), 1, + ACTIONS(13150), 1, anon_sym_COMMA, - [203135] = 2, - ACTIONS(12686), 1, + [198387] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4379), 1, + STATE(4218), 1, sym__directive_parameter, - [203142] = 2, - ACTIONS(12688), 1, + [198394] = 1, + ACTIONS(13140), 2, anon_sym_RPAREN, - ACTIONS(12690), 1, anon_sym_COMMA, - [203149] = 2, - ACTIONS(12692), 1, - anon_sym_LPAREN2, - STATE(4462), 1, - sym__directive_parameter, - [203156] = 2, - ACTIONS(10068), 1, + [198399] = 2, + ACTIONS(13152), 1, anon_sym_LPAREN2, - STATE(1813), 1, + STATE(4219), 1, sym__directive_parameter, - [203163] = 2, - ACTIONS(10068), 1, + [198406] = 2, + ACTIONS(13154), 1, + anon_sym_RPAREN, + ACTIONS(13156), 1, + anon_sym_COMMA, + [198413] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1814), 1, + STATE(4208), 1, sym__directive_parameter, - [203170] = 2, - ACTIONS(12686), 1, + [198420] = 2, + ACTIONS(13158), 1, + anon_sym_RPAREN, + ACTIONS(13160), 1, + anon_sym_COMMA, + [198427] = 1, + ACTIONS(13162), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [198432] = 2, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(4465), 1, + STATE(2680), 1, sym__directive_parameter, - [203177] = 2, - ACTIONS(10126), 1, + [198439] = 2, + ACTIONS(11136), 1, anon_sym_LPAREN2, - STATE(3282), 1, + STATE(2679), 1, sym__directive_parameter, - [203184] = 2, - ACTIONS(10126), 1, + [198446] = 2, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(3283), 1, + STATE(1525), 1, sym__directive_parameter, - [203191] = 2, - ACTIONS(12694), 1, + [198453] = 1, + ACTIONS(13164), 2, anon_sym_RPAREN, - ACTIONS(12696), 1, anon_sym_COMMA, - [203198] = 2, - ACTIONS(12686), 1, + [198458] = 2, + ACTIONS(10492), 1, anon_sym_LPAREN2, - STATE(4453), 1, + STATE(1526), 1, sym__directive_parameter, - [203205] = 2, - ACTIONS(12698), 1, - anon_sym_RPAREN, - ACTIONS(12700), 1, - anon_sym_COMMA, - [203212] = 2, - ACTIONS(12686), 1, + [198465] = 2, + ACTIONS(10544), 1, anon_sym_LPAREN2, - STATE(4440), 1, + STATE(876), 1, sym__directive_parameter, - [203219] = 2, - ACTIONS(10040), 1, + [198472] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1898), 1, + STATE(4232), 1, sym__directive_parameter, - [203226] = 2, - ACTIONS(10040), 1, + [198479] = 2, + ACTIONS(10544), 1, anon_sym_LPAREN2, - STATE(1899), 1, + STATE(848), 1, sym__directive_parameter, - [203233] = 2, - ACTIONS(10478), 1, + [198486] = 2, + ACTIONS(10494), 1, anon_sym_LPAREN2, - STATE(3326), 1, + STATE(971), 1, sym__directive_parameter, - [203240] = 2, - ACTIONS(12702), 1, + [198493] = 2, + ACTIONS(13166), 1, anon_sym_RPAREN, - ACTIONS(12704), 1, + ACTIONS(13168), 1, anon_sym_COMMA, - [203247] = 2, - ACTIONS(12686), 1, + [198500] = 2, + ACTIONS(13170), 1, + anon_sym_RPAREN, + ACTIONS(13172), 1, + anon_sym_COMMA, + [198507] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4417), 1, + STATE(4351), 1, sym__directive_parameter, - [203254] = 2, - ACTIONS(10478), 1, + [198514] = 2, + ACTIONS(10494), 1, anon_sym_LPAREN2, - STATE(3328), 1, + STATE(972), 1, sym__directive_parameter, - [203261] = 2, - ACTIONS(12706), 1, + [198521] = 2, + ACTIONS(13174), 1, anon_sym_RPAREN, - ACTIONS(12708), 1, + ACTIONS(13176), 1, anon_sym_COMMA, - [203268] = 2, - ACTIONS(10624), 1, + [198528] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(2207), 1, + STATE(4267), 1, sym__directive_parameter, - [203275] = 2, - ACTIONS(12686), 1, + [198535] = 2, + ACTIONS(13178), 1, + anon_sym_RPAREN, + ACTIONS(13180), 1, + anon_sym_COMMA, + [198542] = 2, + ACTIONS(13182), 1, + anon_sym_RPAREN, + ACTIONS(13184), 1, + anon_sym_COMMA, + [198549] = 2, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(4303), 1, + STATE(2598), 1, sym__directive_parameter, - [203282] = 2, - ACTIONS(10624), 1, + [198556] = 2, + ACTIONS(11144), 1, anon_sym_LPAREN2, - STATE(2206), 1, + STATE(2597), 1, sym__directive_parameter, - [203289] = 2, - ACTIONS(9956), 1, + [198563] = 2, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(1729), 1, + STATE(2843), 1, sym__directive_parameter, - [203296] = 2, - ACTIONS(9956), 1, + [198570] = 2, + ACTIONS(11124), 1, anon_sym_LPAREN2, - STATE(1728), 1, + STATE(2844), 1, sym__directive_parameter, - [203303] = 2, - ACTIONS(12710), 1, - anon_sym_RPAREN, - ACTIONS(12712), 1, - anon_sym_COMMA, - [203310] = 2, - ACTIONS(9944), 1, + [198577] = 2, + ACTIONS(13186), 1, anon_sym_LPAREN2, - STATE(1258), 1, + STATE(4315), 1, sym__directive_parameter, - [203317] = 2, - ACTIONS(9944), 1, + [198584] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1257), 1, + STATE(4271), 1, sym__directive_parameter, - [203324] = 2, - ACTIONS(12686), 1, + [198591] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4360), 1, + STATE(4295), 1, sym__directive_parameter, - [203331] = 2, - ACTIONS(12714), 1, + [198598] = 2, + ACTIONS(13188), 1, anon_sym_RPAREN, - ACTIONS(12716), 1, + ACTIONS(13190), 1, anon_sym_COMMA, - [203338] = 2, - ACTIONS(12686), 1, + [198605] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4343), 1, + STATE(4328), 1, sym__directive_parameter, - [203345] = 2, - ACTIONS(12718), 1, + [198612] = 2, + ACTIONS(13192), 1, anon_sym_RPAREN, - ACTIONS(12720), 1, + ACTIONS(13194), 1, anon_sym_COMMA, - [203352] = 2, - ACTIONS(12686), 1, + [198619] = 2, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(4384), 1, + STATE(2516), 1, sym__directive_parameter, - [203359] = 2, - ACTIONS(12722), 1, - anon_sym_RPAREN, - ACTIONS(12724), 1, - aux_sym_parameter_token1, - [203366] = 2, - ACTIONS(12686), 1, + [198626] = 2, + ACTIONS(11154), 1, anon_sym_LPAREN2, - STATE(4325), 1, + STATE(2515), 1, sym__directive_parameter, - [203373] = 2, - ACTIONS(9972), 1, + [198633] = 2, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(1166), 1, + STATE(2151), 1, sym__directive_parameter, - [203380] = 2, - ACTIONS(9972), 1, + [198640] = 2, + ACTIONS(11204), 1, anon_sym_LPAREN2, - STATE(1165), 1, + STATE(2156), 1, sym__directive_parameter, - [203387] = 2, - ACTIONS(12726), 1, - anon_sym_RPAREN, - ACTIONS(12728), 1, - anon_sym_COMMA, - [203394] = 2, - ACTIONS(12686), 1, + [198647] = 1, + ACTIONS(13196), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [198652] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4322), 1, + STATE(4355), 1, sym__directive_parameter, - [203401] = 2, - ACTIONS(12730), 1, - anon_sym_RPAREN, - ACTIONS(12732), 1, - aux_sym_parameter_token1, - [203408] = 2, - ACTIONS(12734), 1, + [198659] = 2, + ACTIONS(13198), 1, anon_sym_RPAREN, - ACTIONS(12736), 1, + ACTIONS(13200), 1, anon_sym_COMMA, - [203415] = 2, - ACTIONS(12686), 1, - anon_sym_LPAREN2, - STATE(4334), 1, - sym__directive_parameter, - [203422] = 2, - ACTIONS(10326), 1, - anon_sym_LPAREN2, - STATE(3411), 1, - sym__directive_parameter, - [203429] = 2, - ACTIONS(10326), 1, + [198666] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(3410), 1, + STATE(4306), 1, sym__directive_parameter, - [203436] = 2, - ACTIONS(12738), 1, + [198673] = 2, + ACTIONS(13202), 1, anon_sym_RPAREN, - ACTIONS(12740), 1, + ACTIONS(13204), 1, anon_sym_COMMA, - [203443] = 2, - ACTIONS(12686), 1, - anon_sym_LPAREN2, - STATE(4358), 1, - sym__directive_parameter, - [203450] = 2, - ACTIONS(9978), 1, + [198680] = 2, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(1070), 1, + STATE(2434), 1, sym__directive_parameter, - [203457] = 2, - ACTIONS(9978), 1, + [198687] = 2, + ACTIONS(11160), 1, anon_sym_LPAREN2, - STATE(1069), 1, + STATE(2433), 1, sym__directive_parameter, - [203464] = 2, - ACTIONS(12742), 1, + [198694] = 2, + ACTIONS(13206), 1, anon_sym_RPAREN, - ACTIONS(12744), 1, + ACTIONS(13208), 1, anon_sym_COMMA, - [203471] = 2, - ACTIONS(12686), 1, - anon_sym_LPAREN2, - STATE(4377), 1, - sym__directive_parameter, - [203478] = 2, - ACTIONS(12746), 1, + [198701] = 2, + ACTIONS(13210), 1, anon_sym_RPAREN, - ACTIONS(12748), 1, + ACTIONS(13212), 1, anon_sym_COMMA, - [203485] = 2, - ACTIONS(12686), 1, + [198708] = 2, + ACTIONS(13132), 1, + anon_sym_RPAREN, + ACTIONS(13136), 1, + aux_sym_parameter_token1, + [198715] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4397), 1, + STATE(4227), 1, sym__directive_parameter, - [203492] = 2, - ACTIONS(12750), 1, + [198722] = 2, + ACTIONS(13214), 1, + anon_sym_LPAREN2, + STATE(4259), 1, + sym__directive_parameter, + [198729] = 2, + ACTIONS(13216), 1, anon_sym_RPAREN, - ACTIONS(12752), 1, + ACTIONS(13218), 1, anon_sym_COMMA, - [203499] = 2, - ACTIONS(10622), 1, + [198736] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(2236), 1, + STATE(4334), 1, sym__directive_parameter, - [203506] = 2, - ACTIONS(10622), 1, + [198743] = 2, + ACTIONS(13220), 1, + anon_sym_RPAREN, + ACTIONS(13222), 1, + anon_sym_COMMA, + [198750] = 2, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(2237), 1, + STATE(2352), 1, sym__directive_parameter, - [203513] = 2, - ACTIONS(12686), 1, + [198757] = 2, + ACTIONS(11166), 1, anon_sym_LPAREN2, - STATE(4411), 1, + STATE(2351), 1, sym__directive_parameter, - [203520] = 2, - ACTIONS(9970), 1, + [198764] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1644), 1, + STATE(4246), 1, sym__directive_parameter, - [203527] = 2, - ACTIONS(12754), 1, - anon_sym_RPAREN, - ACTIONS(12756), 1, - anon_sym_COMMA, - [203534] = 2, - ACTIONS(10026), 1, + [198771] = 2, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(1288), 1, + STATE(3352), 1, sym__directive_parameter, - [203541] = 2, - ACTIONS(10582), 1, + [198778] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(2908), 1, + STATE(4203), 1, sym__directive_parameter, - [203548] = 2, - ACTIONS(10582), 1, + [198785] = 2, + ACTIONS(10840), 1, anon_sym_LPAREN2, - STATE(2909), 1, + STATE(3353), 1, sym__directive_parameter, - [203555] = 2, - ACTIONS(12686), 1, + [198792] = 2, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(4439), 1, + STATE(1264), 1, sym__directive_parameter, - [203562] = 2, - ACTIONS(9970), 1, + [198799] = 2, + ACTIONS(10586), 1, anon_sym_LPAREN2, - STATE(1643), 1, + STATE(1263), 1, sym__directive_parameter, - [203569] = 2, - ACTIONS(10026), 1, + [198806] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1289), 1, + STATE(4256), 1, sym__directive_parameter, - [203576] = 2, - ACTIONS(12758), 1, + [198813] = 2, + ACTIONS(13224), 1, anon_sym_RPAREN, - ACTIONS(12760), 1, + ACTIONS(13226), 1, anon_sym_COMMA, - [203583] = 2, - ACTIONS(10142), 1, - anon_sym_LPAREN2, - STATE(3539), 1, - sym__directive_parameter, - [203590] = 2, - ACTIONS(12666), 1, - anon_sym_RPAREN, - ACTIONS(12668), 1, - aux_sym_parameter_token1, - [203597] = 2, - ACTIONS(12686), 1, + [198820] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4391), 1, + STATE(4226), 1, sym__directive_parameter, - [203604] = 2, - ACTIONS(10630), 1, + [198827] = 2, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(3324), 1, + STATE(1610), 1, sym__directive_parameter, - [203611] = 2, - ACTIONS(10630), 1, + [198834] = 2, + ACTIONS(10518), 1, anon_sym_LPAREN2, - STATE(3278), 1, + STATE(1611), 1, sym__directive_parameter, - [203618] = 2, - ACTIONS(10620), 1, + [198841] = 2, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(2320), 1, + STATE(2270), 1, sym__directive_parameter, - [203625] = 2, - ACTIONS(10620), 1, + [198848] = 2, + ACTIONS(11172), 1, anon_sym_LPAREN2, - STATE(2321), 1, + STATE(2269), 1, sym__directive_parameter, - [203632] = 2, - ACTIONS(12762), 1, + [198855] = 2, + ACTIONS(13228), 1, anon_sym_RPAREN, - ACTIONS(12764), 1, + ACTIONS(13230), 1, anon_sym_COMMA, - [203639] = 2, - ACTIONS(12686), 1, + [198862] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4476), 1, + STATE(4362), 1, sym__directive_parameter, - [203646] = 2, - ACTIONS(12766), 1, + [198869] = 2, + ACTIONS(13232), 1, anon_sym_RPAREN, - ACTIONS(12768), 1, + ACTIONS(13234), 1, anon_sym_COMMA, - [203653] = 2, - ACTIONS(12686), 1, + [198876] = 2, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(4403), 1, + STATE(2187), 1, sym__directive_parameter, - [203660] = 2, - ACTIONS(12770), 1, + [198883] = 2, + ACTIONS(13236), 1, anon_sym_RPAREN, - ACTIONS(12772), 1, + ACTIONS(13238), 1, anon_sym_COMMA, - [203667] = 2, - ACTIONS(12686), 1, + [198890] = 2, + ACTIONS(11098), 1, anon_sym_LPAREN2, - STATE(4333), 1, + STATE(3219), 1, sym__directive_parameter, - [203674] = 2, - ACTIONS(10618), 1, + [198897] = 2, + ACTIONS(11180), 1, anon_sym_LPAREN2, - STATE(2404), 1, + STATE(2188), 1, sym__directive_parameter, - [203681] = 2, - ACTIONS(10142), 1, + [198904] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(3534), 1, + STATE(4368), 1, sym__directive_parameter, - [203688] = 2, - ACTIONS(10618), 1, + [198911] = 2, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(2405), 1, + STATE(3361), 1, sym__directive_parameter, - [203695] = 2, - ACTIONS(12774), 1, - anon_sym_RPAREN, - ACTIONS(12776), 1, - anon_sym_COMMA, - [203702] = 2, - ACTIONS(12686), 1, + [198918] = 2, + ACTIONS(11004), 1, anon_sym_LPAREN2, - STATE(4348), 1, + STATE(3349), 1, sym__directive_parameter, - [203709] = 2, - ACTIONS(12778), 1, + [198925] = 2, + ACTIONS(13240), 1, anon_sym_RPAREN, - ACTIONS(12780), 1, + ACTIONS(13242), 1, anon_sym_COMMA, - [203716] = 2, - ACTIONS(9938), 1, + [198932] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1556), 1, + STATE(4354), 1, sym__directive_parameter, - [203723] = 2, - ACTIONS(12686), 1, + [198939] = 2, + ACTIONS(11098), 1, anon_sym_LPAREN2, - STATE(4438), 1, + STATE(3209), 1, sym__directive_parameter, - [203730] = 2, - ACTIONS(12782), 1, - anon_sym_RPAREN, - ACTIONS(12784), 1, - anon_sym_COMMA, - [203737] = 2, - ACTIONS(12686), 1, + [198946] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4395), 1, + STATE(4225), 1, sym__directive_parameter, - [203744] = 2, - ACTIONS(10056), 1, + [198953] = 2, + ACTIONS(13244), 1, + anon_sym_RPAREN, + ACTIONS(13246), 1, + anon_sym_COMMA, + [198960] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(779), 1, + STATE(4340), 1, sym__directive_parameter, - [203751] = 2, - ACTIONS(10612), 1, + [198967] = 2, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(2488), 1, + STATE(1074), 1, sym__directive_parameter, - [203758] = 2, - ACTIONS(10612), 1, + [198974] = 2, + ACTIONS(10524), 1, anon_sym_LPAREN2, - STATE(2489), 1, + STATE(1075), 1, sym__directive_parameter, - [203765] = 2, - ACTIONS(10006), 1, + [198981] = 2, + ACTIONS(10998), 1, anon_sym_LPAREN2, - STATE(992), 1, + STATE(3530), 1, sym__directive_parameter, - [203772] = 2, - ACTIONS(10006), 1, + [198988] = 2, + ACTIONS(13162), 1, + anon_sym_RPAREN, + ACTIONS(13248), 1, + aux_sym_parameter_token1, + [198995] = 2, + ACTIONS(13250), 1, + anon_sym_RPAREN, + ACTIONS(13252), 1, + anon_sym_COMMA, + [199002] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(991), 1, + STATE(4350), 1, sym__directive_parameter, - [203779] = 2, - ACTIONS(10056), 1, + [199009] = 2, + ACTIONS(13196), 1, + anon_sym_RPAREN, + ACTIONS(13254), 1, + aux_sym_parameter_token1, + [199016] = 2, + ACTIONS(10998), 1, anon_sym_LPAREN2, - STATE(778), 1, + STATE(3529), 1, sym__directive_parameter, - [203786] = 2, - ACTIONS(12786), 1, - anon_sym_RPAREN, - ACTIONS(12788), 1, - anon_sym_COMMA, - [203793] = 2, - ACTIONS(12686), 1, + [199023] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4469), 1, + STATE(4320), 1, sym__directive_parameter, - [203800] = 2, - ACTIONS(12790), 1, + [199030] = 2, + ACTIONS(13256), 1, anon_sym_RPAREN, - ACTIONS(12792), 1, + ACTIONS(13258), 1, anon_sym_COMMA, - [203807] = 2, - ACTIONS(9938), 1, + [199037] = 2, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(1557), 1, + STATE(1441), 1, sym__directive_parameter, - [203814] = 2, - ACTIONS(12686), 1, + [199044] = 2, + ACTIONS(10550), 1, anon_sym_LPAREN2, - STATE(4432), 1, + STATE(1440), 1, sym__directive_parameter, - [203821] = 2, - ACTIONS(10638), 1, + [199051] = 2, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(2120), 1, + STATE(2428), 1, sym__directive_parameter, - [203828] = 2, - ACTIONS(10638), 1, + [199058] = 2, + ACTIONS(11118), 1, anon_sym_LPAREN2, - STATE(2119), 1, + STATE(2925), 1, sym__directive_parameter, - [203835] = 2, - ACTIONS(12794), 1, - anon_sym_RPAREN, - ACTIONS(12796), 1, - anon_sym_COMMA, - [203842] = 2, - ACTIONS(12798), 1, + [199065] = 2, + ACTIONS(11118), 1, anon_sym_LPAREN2, - STATE(4352), 1, + STATE(2926), 1, sym__directive_parameter, - [203849] = 2, - ACTIONS(10606), 1, + [199072] = 2, + ACTIONS(11138), 1, anon_sym_LPAREN2, - STATE(2572), 1, + STATE(2420), 1, sym__directive_parameter, - [203856] = 2, - ACTIONS(10606), 1, + [199079] = 2, + ACTIONS(13260), 1, + anon_sym_RPAREN, + ACTIONS(13262), 1, + anon_sym_COMMA, + [199086] = 2, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(2573), 1, + STATE(1160), 1, sym__directive_parameter, - [203863] = 2, - ACTIONS(12686), 1, + [199093] = 2, + ACTIONS(10512), 1, anon_sym_LPAREN2, - STATE(4351), 1, + STATE(1162), 1, sym__directive_parameter, - [203870] = 2, - ACTIONS(12800), 1, + [199100] = 2, + ACTIONS(13264), 1, anon_sym_RPAREN, - ACTIONS(12802), 1, + ACTIONS(13266), 1, anon_sym_COMMA, - [203877] = 2, - ACTIONS(12686), 1, + [199107] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4468), 1, + STATE(4301), 1, sym__directive_parameter, - [203884] = 2, - ACTIONS(12804), 1, + [199114] = 2, + ACTIONS(13268), 1, anon_sym_RPAREN, - ACTIONS(12806), 1, + ACTIONS(13270), 1, anon_sym_COMMA, - [203891] = 2, - ACTIONS(12808), 1, + [199121] = 2, + ACTIONS(10930), 1, anon_sym_LPAREN2, - STATE(4433), 1, + STATE(3375), 1, sym__directive_parameter, - [203898] = 2, - ACTIONS(12686), 1, + [199128] = 2, + ACTIONS(10930), 1, anon_sym_LPAREN2, - STATE(4414), 1, + STATE(3373), 1, sym__directive_parameter, - [203905] = 2, - ACTIONS(12810), 1, + [199135] = 2, + ACTIONS(13144), 1, + anon_sym_LPAREN2, + STATE(4286), 1, + sym__directive_parameter, + [199142] = 2, + ACTIONS(13272), 1, anon_sym_RPAREN, - ACTIONS(12812), 1, + ACTIONS(13274), 1, anon_sym_COMMA, - [203912] = 2, - ACTIONS(10600), 1, + [199149] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(2656), 1, + STATE(4202), 1, sym__directive_parameter, - [203919] = 2, - ACTIONS(10600), 1, + [199156] = 2, + ACTIONS(10510), 1, anon_sym_LPAREN2, - STATE(2657), 1, + STATE(1693), 1, sym__directive_parameter, - [203926] = 1, - ACTIONS(12722), 2, + [199163] = 1, + ACTIONS(13132), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [203931] = 2, - ACTIONS(12686), 1, - anon_sym_LPAREN2, - STATE(4375), 1, - sym__directive_parameter, - [203938] = 2, - ACTIONS(12814), 1, - anon_sym_RPAREN, - ACTIONS(12816), 1, - anon_sym_COMMA, - [203945] = 2, - ACTIONS(12686), 1, + [199168] = 2, + ACTIONS(10510), 1, anon_sym_LPAREN2, - STATE(4330), 1, + STATE(1694), 1, sym__directive_parameter, - [203952] = 2, - ACTIONS(9990), 1, + [199175] = 2, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(865), 1, + STATE(1249), 1, sym__directive_parameter, - [203959] = 2, - ACTIONS(9990), 1, + [199182] = 2, + ACTIONS(10594), 1, anon_sym_LPAREN2, - STATE(864), 1, + STATE(1277), 1, sym__directive_parameter, - [203966] = 2, - ACTIONS(12818), 1, - anon_sym_RPAREN, - ACTIONS(12820), 1, - anon_sym_COMMA, - [203973] = 1, - ACTIONS(12822), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [203978] = 2, - ACTIONS(12686), 1, + [199189] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4341), 1, + STATE(4269), 1, sym__directive_parameter, - [203985] = 1, - ACTIONS(12730), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [203990] = 2, - ACTIONS(10594), 1, + [199196] = 2, + ACTIONS(11100), 1, anon_sym_LPAREN2, - STATE(2740), 1, + STATE(3090), 1, sym__directive_parameter, - [203997] = 2, - ACTIONS(10594), 1, + [199203] = 2, + ACTIONS(11100), 1, anon_sym_LPAREN2, - STATE(2741), 1, + STATE(3089), 1, sym__directive_parameter, - [204004] = 1, - ACTIONS(12672), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [204009] = 2, - ACTIONS(12824), 1, + [199210] = 2, + ACTIONS(13276), 1, anon_sym_RPAREN, - ACTIONS(12826), 1, + ACTIONS(13278), 1, anon_sym_COMMA, - [204016] = 2, - ACTIONS(12686), 1, + [199217] = 2, + ACTIONS(11182), 1, anon_sym_LPAREN2, - STATE(4405), 1, + STATE(2099), 1, sym__directive_parameter, - [204023] = 2, - ACTIONS(12828), 1, + [199224] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4446), 1, + STATE(4252), 1, sym__directive_parameter, - [204030] = 2, - ACTIONS(12830), 1, + [199231] = 2, + ACTIONS(11182), 1, + anon_sym_LPAREN2, + STATE(2098), 1, + sym__directive_parameter, + [199238] = 2, + ACTIONS(13280), 1, anon_sym_RPAREN, - ACTIONS(12832), 1, + ACTIONS(13282), 1, anon_sym_COMMA, - [204037] = 2, - ACTIONS(12686), 1, + [199245] = 2, + ACTIONS(13284), 1, + anon_sym_RPAREN, + ACTIONS(13286), 1, + anon_sym_COMMA, + [199252] = 2, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(4452), 1, + STATE(1860), 1, sym__directive_parameter, - [204044] = 2, - ACTIONS(10576), 1, + [199259] = 2, + ACTIONS(10500), 1, anon_sym_LPAREN2, - STATE(2992), 1, + STATE(1859), 1, sym__directive_parameter, - [204051] = 2, - ACTIONS(10576), 1, + [199266] = 2, + ACTIONS(13288), 1, anon_sym_LPAREN2, - STATE(2993), 1, + STATE(4254), 1, sym__directive_parameter, - [204058] = 2, - ACTIONS(12834), 1, + [199273] = 2, + ACTIONS(13290), 1, anon_sym_RPAREN, - ACTIONS(12836), 1, + ACTIONS(13292), 1, anon_sym_COMMA, - [204065] = 2, - ACTIONS(9988), 1, - anon_sym_LPAREN2, - STATE(1470), 1, - sym__directive_parameter, - [204072] = 2, - ACTIONS(9988), 1, + [199280] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(1469), 1, + STATE(4233), 1, sym__directive_parameter, - [204079] = 2, - ACTIONS(12686), 1, + [199287] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(4329), 1, + STATE(4342), 1, sym__directive_parameter, - [204086] = 2, - ACTIONS(10588), 1, + [199294] = 2, + ACTIONS(11112), 1, anon_sym_LPAREN2, - STATE(2824), 1, + STATE(3007), 1, sym__directive_parameter, - [204093] = 2, - ACTIONS(10588), 1, + [199301] = 2, + ACTIONS(11112), 1, anon_sym_LPAREN2, - STATE(2825), 1, + STATE(3008), 1, sym__directive_parameter, - [204100] = 2, - ACTIONS(10144), 1, + [199308] = 2, + ACTIONS(13294), 1, + anon_sym_RPAREN, + ACTIONS(13296), 1, + anon_sym_COMMA, + [199315] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(3491), 1, + STATE(4221), 1, sym__directive_parameter, - [204107] = 2, - ACTIONS(10564), 1, + [199322] = 2, + ACTIONS(10596), 1, anon_sym_LPAREN2, - STATE(3161), 1, + STATE(764), 1, sym__directive_parameter, - [204114] = 2, - ACTIONS(10564), 1, + [199329] = 2, + ACTIONS(13144), 1, anon_sym_LPAREN2, - STATE(3160), 1, + STATE(4223), 1, sym__directive_parameter, - [204121] = 2, - ACTIONS(10650), 1, + [199336] = 2, + ACTIONS(10596), 1, anon_sym_LPAREN2, - STATE(2038), 1, + STATE(762), 1, sym__directive_parameter, - [204128] = 2, - ACTIONS(10650), 1, + [199343] = 2, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(2039), 1, + STATE(1777), 1, sym__directive_parameter, - [204135] = 1, - ACTIONS(12666), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [204140] = 2, - ACTIONS(10008), 1, + [199350] = 2, + ACTIONS(10662), 1, anon_sym_LPAREN2, - STATE(1379), 1, + STATE(1776), 1, sym__directive_parameter, - [204147] = 2, - ACTIONS(10008), 1, + [199357] = 2, + ACTIONS(13298), 1, + anon_sym_RPAREN, + ACTIONS(13300), 1, + anon_sym_COMMA, + [199364] = 2, + ACTIONS(11198), 1, anon_sym_LPAREN2, - STATE(1380), 1, + STATE(2013), 1, sym__directive_parameter, - [204154] = 2, - ACTIONS(12838), 1, + [199371] = 2, + ACTIONS(13302), 1, anon_sym_RPAREN, - ACTIONS(12840), 1, + ACTIONS(13304), 1, anon_sym_COMMA, - [204161] = 2, - ACTIONS(10570), 1, + [199378] = 2, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(3076), 1, + STATE(1353), 1, sym__directive_parameter, - [204168] = 2, - ACTIONS(12842), 1, + [199385] = 2, + ACTIONS(10566), 1, anon_sym_LPAREN2, - STATE(4423), 1, + STATE(1352), 1, sym__directive_parameter, - [204175] = 1, - ACTIONS(12844), 1, - anon_sym_ATendstory, - [204179] = 1, - ACTIONS(12846), 1, - anon_sym_ATendwhile, - [204183] = 1, - ACTIONS(12848), 1, - anon_sym_ATendfor, - [204187] = 1, - ACTIONS(12850), 1, - anon_sym_ATendpush, - [204191] = 1, - ACTIONS(12852), 1, - anon_sym_ATendPushOnce, - [204195] = 1, - ACTIONS(12854), 1, - anon_sym_ATendPushIf, - [204199] = 1, - ACTIONS(12856), 1, - anon_sym_ATendprepend, - [204203] = 1, - ACTIONS(12858), 1, - anon_sym_ATendPrependOnce, - [204207] = 1, - ACTIONS(12860), 1, - anon_sym_ATendif, - [204211] = 1, - ACTIONS(12862), 1, - anon_sym_ATendunless, - [204215] = 1, - ACTIONS(12864), 1, - anon_sym_ATendisset, - [204219] = 1, - ACTIONS(12866), 1, - anon_sym_ATendempty, - [204223] = 1, - ACTIONS(12868), 1, - anon_sym_ATendauth, - [204227] = 1, - ACTIONS(12870), 1, - anon_sym_ATendguest, - [204231] = 1, - ACTIONS(12872), 1, - anon_sym_ATendPushIf, - [204235] = 1, - ACTIONS(12874), 1, - anon_sym_ATendenv, - [204239] = 1, - ACTIONS(12876), 1, - anon_sym_ATendif, - [204243] = 1, - ACTIONS(12878), 1, - anon_sym_ATendif, - [204247] = 1, - ACTIONS(12880), 1, - anon_sym_ATenderror, - [204251] = 1, - ACTIONS(12882), 1, - aux_sym__custom_token3, - [204255] = 1, - ACTIONS(12884), 1, - anon_sym_ATendcan, - [204259] = 1, - ACTIONS(12886), 1, - anon_sym_ATendcannot, - [204263] = 1, - ACTIONS(12888), 1, - anon_sym_ATendcanany, - [204267] = 1, - ACTIONS(12890), 1, - anon_sym_ATendfeature, - [204271] = 1, - ACTIONS(12892), 1, - aux_sym__custom_token3, - [204275] = 1, - ACTIONS(12894), 1, - anon_sym_ATendpush, - [204279] = 1, - ACTIONS(12896), 1, - anon_sym_ATendfor, - [204283] = 1, - ACTIONS(12898), 1, - anon_sym_ATendforeach, - [204287] = 1, - ACTIONS(12900), 1, - anon_sym_ATendforelse, - [204291] = 1, - ACTIONS(12902), 1, - anon_sym_ATendwhile, - [204295] = 1, - ACTIONS(12904), 1, - anon_sym_ATendsetup, - [204299] = 1, - ACTIONS(12906), 1, - anon_sym_ATendtask, - [204303] = 1, - ACTIONS(12908), 1, - anon_sym_ATendstory, - [204307] = 1, - ACTIONS(12910), 1, - anon_sym_ATenderror, - [204311] = 1, - ACTIONS(12912), 1, - anon_sym_ATendcanany, - [204315] = 1, - ACTIONS(12914), 1, - anon_sym_ATendcannot, - [204319] = 1, - ACTIONS(12916), 1, - anon_sym_ATendcan, - [204323] = 1, - ACTIONS(12918), 1, - anon_sym_ATendpersist, - [204327] = 1, - ACTIONS(12920), 1, + [199392] = 2, + ACTIONS(13144), 1, + anon_sym_LPAREN2, + STATE(4207), 1, + sym__directive_parameter, + [199399] = 1, + ACTIONS(13306), 1, anon_sym_ATendteleport, - [204331] = 1, - ACTIONS(12922), 1, - anon_sym_ATendvolt, - [204335] = 1, - ACTIONS(12924), 1, - aux_sym__custom_token3, - [204339] = 1, - ACTIONS(12926), 1, - anon_sym_RPAREN, - [204343] = 1, - ACTIONS(12928), 1, - anon_sym_ATendwhile, - [204347] = 1, - ACTIONS(12930), 1, - anon_sym_RPAREN, - [204351] = 1, - ACTIONS(12932), 1, - anon_sym_ATendif, - [204355] = 1, - ACTIONS(11823), 1, - anon_sym_RPAREN, - [204359] = 1, - ACTIONS(12934), 1, - anon_sym_ATendif, - [204363] = 1, - ACTIONS(12936), 1, - anon_sym_ATendfragment, - [204367] = 1, - ACTIONS(12938), 1, - anon_sym_ATendenv, - [204371] = 1, - ACTIONS(12940), 1, - anon_sym_ATendguest, - [204375] = 1, - ACTIONS(12942), 1, - anon_sym_ATendauth, - [204379] = 1, - ACTIONS(12944), 1, - anon_sym_RPAREN, - [204383] = 1, - ACTIONS(12946), 1, - anon_sym_ATendempty, - [204387] = 1, - ACTIONS(12948), 1, - anon_sym_ATendphp, - [204391] = 1, - ACTIONS(12950), 1, - anon_sym_BANG_BANG_RBRACE, - [204395] = 1, - ACTIONS(12952), 1, - anon_sym_RBRACE_RBRACE, - [204399] = 1, - ACTIONS(12954), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204403] = 1, - ACTIONS(12956), 1, - anon_sym_ATendisset, - [204407] = 1, - ACTIONS(12958), 1, - anon_sym_ATendunless, - [204411] = 1, - ACTIONS(12960), 1, - anon_sym_ATendif, - [204415] = 1, - ACTIONS(12962), 1, - anon_sym_ATendtask, - [204419] = 1, - ACTIONS(12964), 1, - anon_sym_ATendPrependOnce, - [204423] = 1, - ACTIONS(12966), 1, - anon_sym_ATendprepend, - [204427] = 1, - ACTIONS(12968), 1, - anon_sym_ATendPushIf, - [204431] = 1, - ACTIONS(12970), 1, - anon_sym_ATendPushOnce, - [204435] = 1, - ACTIONS(12972), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204439] = 1, - ACTIONS(12974), 1, - anon_sym_RBRACE_RBRACE, - [204443] = 1, - ACTIONS(12976), 1, - anon_sym_BANG_BANG_RBRACE, - [204447] = 1, - ACTIONS(12978), 1, - anon_sym_ATendstory, - [204451] = 1, - ACTIONS(12980), 1, - anon_sym_ATendphp, - [204455] = 1, - ACTIONS(12982), 1, + [199403] = 1, + ACTIONS(13308), 1, anon_sym_ATendfragment, - [204459] = 1, - ACTIONS(12984), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204463] = 1, - ACTIONS(12986), 1, - anon_sym_ATendpush, - [204467] = 1, - ACTIONS(12988), 1, - anon_sym_ATendPushOnce, - [204471] = 1, - ACTIONS(12990), 1, - anon_sym_ATendPushIf, - [204475] = 1, - ACTIONS(12992), 1, - anon_sym_ATendprepend, - [204479] = 1, - ACTIONS(12994), 1, - anon_sym_ATendPrependOnce, - [204483] = 1, - ACTIONS(12996), 1, - anon_sym_ATendif, - [204487] = 1, - ACTIONS(12998), 1, - anon_sym_ATendunless, - [204491] = 1, - ACTIONS(13000), 1, - anon_sym_ATendisset, - [204495] = 1, - ACTIONS(13002), 1, - anon_sym_ATendempty, - [204499] = 1, - ACTIONS(13004), 1, - anon_sym_ATendauth, - [204503] = 1, - ACTIONS(13006), 1, - anon_sym_ATendguest, - [204507] = 1, - ACTIONS(13008), 1, - anon_sym_ATendpersist, - [204511] = 1, - ACTIONS(13010), 1, - anon_sym_ATendenv, - [204515] = 1, - ACTIONS(13012), 1, - anon_sym_ATendif, - [204519] = 1, - ACTIONS(13014), 1, - anon_sym_ATendif, - [204523] = 1, - ACTIONS(13016), 1, - anon_sym_ATenderror, - [204527] = 1, - ACTIONS(13018), 1, - anon_sym_ATendpush, - [204531] = 1, - ACTIONS(13020), 1, + [199407] = 1, + ACTIONS(13310), 1, anon_sym_ATendcan, - [204535] = 1, - ACTIONS(13022), 1, + [199411] = 1, + ACTIONS(13312), 1, anon_sym_ATendcannot, - [204539] = 1, - ACTIONS(13024), 1, + [199415] = 1, + ACTIONS(13314), 1, anon_sym_ATendcanany, - [204543] = 1, - ACTIONS(13026), 1, + [199419] = 1, + ACTIONS(13316), 1, anon_sym_ATendfeature, - [204547] = 1, - ACTIONS(13028), 1, + [199423] = 1, + ACTIONS(13318), 1, aux_sym__custom_token3, - [204551] = 1, - ACTIONS(13030), 1, - anon_sym_ATendteleport, - [204555] = 1, - ACTIONS(13032), 1, + [199427] = 1, + ACTIONS(13320), 1, anon_sym_ATendfor, - [204559] = 1, - ACTIONS(13034), 1, + [199431] = 1, + ACTIONS(13322), 1, anon_sym_ATendforeach, - [204563] = 1, - ACTIONS(13036), 1, + [199435] = 1, + ACTIONS(13324), 1, anon_sym_ATendforelse, - [204567] = 1, - ACTIONS(13038), 1, + [199439] = 1, + ACTIONS(13326), 1, anon_sym_ATendwhile, - [204571] = 1, - ACTIONS(13040), 1, + [199443] = 1, + ACTIONS(13328), 1, anon_sym_ATendsetup, - [204575] = 1, - ACTIONS(13042), 1, + [199447] = 1, + ACTIONS(13330), 1, anon_sym_ATendtask, - [204579] = 1, - ACTIONS(13044), 1, - anon_sym_ATendstory, - [204583] = 1, - ACTIONS(13046), 1, - anon_sym_ATendvolt, - [204587] = 1, - ACTIONS(13048), 1, - anon_sym_ATendfragment, - [204591] = 1, - ACTIONS(13050), 1, - anon_sym_ATendphp, - [204595] = 1, - ACTIONS(13052), 1, - anon_sym_ATendwhile, - [204599] = 1, - ACTIONS(13054), 1, - anon_sym_ATendpersist, - [204603] = 1, - ACTIONS(13056), 1, - anon_sym_ATendteleport, - [204607] = 1, - ACTIONS(13058), 1, - anon_sym_ATendvolt, - [204611] = 1, - ACTIONS(13060), 1, - anon_sym_ATendfragment, - [204615] = 1, - ACTIONS(13062), 1, - anon_sym_RPAREN, - [204619] = 1, - ACTIONS(11831), 1, - anon_sym_RPAREN, - [204623] = 1, - ACTIONS(13064), 1, - anon_sym_BANG_BANG_RBRACE, - [204627] = 1, - ACTIONS(13066), 1, - anon_sym_RPAREN, - [204631] = 1, - ACTIONS(13068), 1, - anon_sym_RBRACE_RBRACE, - [204635] = 1, - ACTIONS(11807), 1, - anon_sym_RPAREN, - [204639] = 1, - ACTIONS(11827), 1, - anon_sym_RPAREN, - [204643] = 1, - ACTIONS(13070), 1, - anon_sym_ATendvolt, - [204647] = 1, - ACTIONS(13072), 1, - anon_sym_ATendphp, - [204651] = 1, - ACTIONS(13074), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204655] = 1, - ACTIONS(13076), 1, - anon_sym_RBRACE_RBRACE, - [204659] = 1, - ACTIONS(13078), 1, - anon_sym_RPAREN, - [204663] = 1, - ACTIONS(13080), 1, - anon_sym_ATendteleport, - [204667] = 1, - ACTIONS(13082), 1, - anon_sym_ATendpersist, - [204671] = 1, - ACTIONS(13084), 1, - anon_sym_ATendprepend, - [204675] = 1, - ACTIONS(13086), 1, - anon_sym_BANG_BANG_RBRACE, - [204679] = 1, - ACTIONS(13088), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204683] = 1, - ACTIONS(13090), 1, - anon_sym_RBRACE_RBRACE, - [204687] = 1, - ACTIONS(13092), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204691] = 1, - ACTIONS(13094), 1, + [199451] = 1, + ACTIONS(13332), 1, anon_sym_ATendstory, - [204695] = 1, - ACTIONS(13096), 1, - anon_sym_ATendforelse, - [204699] = 1, - ACTIONS(11645), 1, - anon_sym_RPAREN, - [204703] = 1, - ACTIONS(13098), 1, - anon_sym_ATendtask, - [204707] = 1, - ACTIONS(13100), 1, - anon_sym_ATendsetup, - [204711] = 1, - ACTIONS(13102), 1, - anon_sym_ATendwhile, - [204715] = 1, - ACTIONS(13104), 1, - anon_sym_ATendforelse, - [204719] = 1, - ACTIONS(13106), 1, - anon_sym_ATendforeach, - [204723] = 1, - ACTIONS(13108), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [204727] = 1, - ACTIONS(13110), 1, - anon_sym_RBRACE_RBRACE, - [204731] = 1, - ACTIONS(13112), 1, + [199455] = 1, + ACTIONS(13334), 1, anon_sym_BANG_BANG_RBRACE, - [204735] = 1, - ACTIONS(13114), 1, - anon_sym_ATendfor, - [204739] = 1, - ACTIONS(13116), 1, - anon_sym_ATendphp, - [204743] = 1, - ACTIONS(13118), 1, - anon_sym_ATendfragment, - [204747] = 1, - ACTIONS(13120), 1, - anon_sym_ATendforelse, - [204751] = 1, - ACTIONS(13122), 1, - anon_sym_ATendvolt, - [204755] = 1, - ACTIONS(13124), 1, - anon_sym_ATendpush, - [204759] = 1, - ACTIONS(13126), 1, - anon_sym_ATendPushOnce, - [204763] = 1, - ACTIONS(13128), 1, - anon_sym_ATendPushIf, - [204767] = 1, - ACTIONS(13130), 1, - anon_sym_ATendprepend, - [204771] = 1, - ACTIONS(13132), 1, - anon_sym_ATendPrependOnce, - [204775] = 1, - ACTIONS(13134), 1, - anon_sym_ATendif, - [204779] = 1, - ACTIONS(13136), 1, - anon_sym_ATendunless, - [204783] = 1, - ACTIONS(13138), 1, - anon_sym_ATendisset, - [204787] = 1, - ACTIONS(13140), 1, - anon_sym_ATendempty, - [204791] = 1, - ACTIONS(13142), 1, - anon_sym_ATendauth, - [204795] = 1, - ACTIONS(13144), 1, - anon_sym_ATendguest, - [204799] = 1, - ACTIONS(13146), 1, - anon_sym_ATendteleport, - [204803] = 1, - ACTIONS(13148), 1, - anon_sym_ATendenv, - [204807] = 1, - ACTIONS(13150), 1, - anon_sym_ATendif, - [204811] = 1, - ACTIONS(13152), 1, - anon_sym_ATendif, - [204815] = 1, - ACTIONS(13154), 1, - anon_sym_ATenderror, - [204819] = 1, - ACTIONS(13156), 1, - anon_sym_ATendforelse, - [204823] = 1, - ACTIONS(13158), 1, - anon_sym_ATendcan, - [204827] = 1, - ACTIONS(13160), 1, - anon_sym_ATendcannot, - [204831] = 1, - ACTIONS(13162), 1, - anon_sym_ATendcanany, - [204835] = 1, - ACTIONS(13164), 1, - anon_sym_ATendfeature, - [204839] = 1, - ACTIONS(13166), 1, - aux_sym__custom_token3, - [204843] = 1, - ACTIONS(13168), 1, + [199459] = 1, + ACTIONS(13336), 1, anon_sym_RBRACE_RBRACE, - [204847] = 1, - ACTIONS(13170), 1, - anon_sym_ATendfor, - [204851] = 1, - ACTIONS(13172), 1, - anon_sym_ATendforeach, - [204855] = 1, - ACTIONS(13174), 1, - anon_sym_ATendforelse, - [204859] = 1, - ACTIONS(13176), 1, - anon_sym_ATendwhile, - [204863] = 1, - ACTIONS(13178), 1, - anon_sym_ATendsetup, - [204867] = 1, - ACTIONS(13180), 1, - anon_sym_ATendtask, - [204871] = 1, - ACTIONS(13182), 1, - anon_sym_ATendstory, - [204875] = 1, - ACTIONS(13184), 1, - anon_sym_ATendfeature, - [204879] = 1, - ACTIONS(13186), 1, - anon_sym_ATendcanany, - [204883] = 1, - ACTIONS(11773), 1, - anon_sym_RPAREN, - [204887] = 1, - ACTIONS(13188), 1, - anon_sym_ATendcannot, - [204891] = 1, - ACTIONS(13190), 1, + [199463] = 1, + ACTIONS(13338), 1, anon_sym_ATendpersist, - [204895] = 1, - ACTIONS(13192), 1, + [199467] = 1, + ACTIONS(13340), 1, anon_sym_ATendteleport, - [204899] = 1, - ACTIONS(13194), 1, - anon_sym_ATendvolt, - [204903] = 1, - ACTIONS(13196), 1, - anon_sym_ATendcan, - [204907] = 1, - ACTIONS(13198), 1, - anon_sym_ATendpersist, - [204911] = 1, - ACTIONS(13200), 1, - anon_sym_RBRACE_RBRACE, - [204915] = 1, - ACTIONS(13202), 1, - anon_sym_ATenderror, - [204919] = 1, - ACTIONS(13204), 1, - anon_sym_ATendif, - [204923] = 1, - ACTIONS(13206), 1, - anon_sym_ATendif, - [204927] = 1, - ACTIONS(11757), 1, - anon_sym_RPAREN, - [204931] = 1, - ACTIONS(13208), 1, - anon_sym_ATendenv, - [204935] = 1, - ACTIONS(13210), 1, - anon_sym_BANG_BANG_RBRACE, - [204939] = 1, - ACTIONS(13212), 1, - anon_sym_ATendguest, - [204943] = 1, - ACTIONS(13214), 1, + [199471] = 1, + ACTIONS(13342), 1, anon_sym_ATendvolt, - [204947] = 1, - ACTIONS(13216), 1, - anon_sym_ATendteleport, - [204951] = 1, - ACTIONS(13218), 1, - anon_sym_RPAREN, - [204955] = 1, - ACTIONS(13220), 1, - anon_sym_ATendpersist, - [204959] = 1, - ACTIONS(13222), 1, - anon_sym_ATendauth, - [204963] = 1, - ACTIONS(13224), 1, - anon_sym_ATendempty, - [204967] = 1, - ACTIONS(13226), 1, - anon_sym_ATendisset, - [204971] = 1, - ACTIONS(13228), 1, - anon_sym_ATendunless, - [204975] = 1, - ACTIONS(13230), 1, - anon_sym_ATendif, - [204979] = 1, - ACTIONS(13232), 1, - anon_sym_ATendPrependOnce, - [204983] = 1, - ACTIONS(13234), 1, - anon_sym_ATendprepend, - [204987] = 1, - ACTIONS(13236), 1, - anon_sym_ATendPushIf, - [204991] = 1, - ACTIONS(13238), 1, - anon_sym_ATendPushOnce, - [204995] = 1, - ACTIONS(13240), 1, - anon_sym_ATendpush, - [204999] = 1, - ACTIONS(13242), 1, - anon_sym_ATendsetup, - [205003] = 1, - ACTIONS(13244), 1, - anon_sym_ATendfragment, - [205007] = 1, - ACTIONS(13246), 1, - anon_sym_ATendphp, - [205011] = 1, - ACTIONS(13248), 1, - anon_sym_BANG_BANG_RBRACE, - [205015] = 1, - ACTIONS(13250), 1, - anon_sym_ATendforelse, - [205019] = 1, - ACTIONS(13252), 1, - anon_sym_ATenderror, - [205023] = 1, - ACTIONS(13254), 1, - anon_sym_ATendcan, - [205027] = 1, - ACTIONS(13256), 1, - anon_sym_ATendcannot, - [205031] = 1, - ACTIONS(13258), 1, - anon_sym_ATendcanany, - [205035] = 1, - ACTIONS(13260), 1, - anon_sym_ATenderror, - [205039] = 1, - ACTIONS(13262), 1, - anon_sym_ATendfeature, - [205043] = 1, - ACTIONS(13264), 1, - aux_sym__custom_token3, - [205047] = 1, - ACTIONS(13266), 1, - anon_sym_ATendif, - [205051] = 1, - ACTIONS(13268), 1, - anon_sym_BANG_BANG_RBRACE, - [205055] = 1, - ACTIONS(13270), 1, - anon_sym_ATendstory, - [205059] = 1, - ACTIONS(13272), 1, - anon_sym_ATendtask, - [205063] = 1, - ACTIONS(13274), 1, - anon_sym_ATendunless, - [205067] = 1, - ACTIONS(13276), 1, - anon_sym_ATendsetup, - [205071] = 1, - ACTIONS(13278), 1, - anon_sym_ATendif, - [205075] = 1, - ACTIONS(13280), 1, - anon_sym_ATendenv, - [205079] = 1, - ACTIONS(13282), 1, + [199475] = 1, + ACTIONS(12231), 1, anon_sym_RPAREN, - [205083] = 1, - ACTIONS(13284), 1, - anon_sym_ATendguest, - [205087] = 1, - ACTIONS(13286), 1, - anon_sym_ATendfor, - [205091] = 1, - ACTIONS(13288), 1, + [199479] = 1, + ACTIONS(13344), 1, anon_sym_RPAREN, - [205095] = 1, - ACTIONS(13290), 1, - anon_sym_ATendtask, - [205099] = 1, - ACTIONS(13292), 1, - anon_sym_ATendforeach, - [205103] = 1, - ACTIONS(13294), 1, - anon_sym_ATendif, - [205107] = 1, - ACTIONS(13296), 1, - anon_sym_ATendPrependOnce, - [205111] = 1, - ACTIONS(13298), 1, - anon_sym_ATendstory, - [205115] = 1, - ACTIONS(13300), 1, - anon_sym_ATendwhile, - [205119] = 1, - ACTIONS(11781), 1, + [199483] = 1, + ACTIONS(12235), 1, anon_sym_RPAREN, - [205123] = 1, - ACTIONS(13302), 1, - anon_sym_ATendauth, - [205127] = 1, - ACTIONS(13304), 1, - anon_sym_ATendempty, - [205131] = 1, - ACTIONS(13306), 1, - anon_sym_ATendsetup, - [205135] = 1, - ACTIONS(13308), 1, - anon_sym_ATendtask, - [205139] = 1, - ACTIONS(13310), 1, - anon_sym_ATendpersist, - [205143] = 1, - ACTIONS(13312), 1, - anon_sym_ATendisset, - [205147] = 1, - ACTIONS(13314), 1, - anon_sym_ATendtask, - [205151] = 1, - ACTIONS(13316), 1, - anon_sym_ATendunless, - [205155] = 1, - ACTIONS(13318), 1, - anon_sym_ATendvolt, - [205159] = 1, - ACTIONS(13320), 1, - anon_sym_ATendteleport, - [205163] = 1, - ACTIONS(13322), 1, - anon_sym_ATendpersist, - [205167] = 1, - ACTIONS(13324), 1, - anon_sym_ATendstory, - [205171] = 1, - ACTIONS(13326), 1, - anon_sym_ATendpersist, - [205175] = 1, - ACTIONS(13328), 1, - anon_sym_ATendteleport, - [205179] = 1, - ACTIONS(13330), 1, - anon_sym_ATendsetup, - [205183] = 1, - ACTIONS(13332), 1, - anon_sym_ATendsetup, - [205187] = 1, - ACTIONS(13334), 1, - anon_sym_ATendwhile, - [205191] = 1, - ACTIONS(13336), 1, - anon_sym_ATendvolt, - [205195] = 1, - ACTIONS(13338), 1, - anon_sym_ATendstory, - [205199] = 1, - ACTIONS(13340), 1, - anon_sym_ATendtask, - [205203] = 1, - ACTIONS(13342), 1, - anon_sym_ATendsetup, - [205207] = 1, - ACTIONS(13344), 1, - anon_sym_ATendwhile, - [205211] = 1, + [199487] = 1, ACTIONS(13346), 1, - anon_sym_ATendforelse, - [205215] = 1, + anon_sym_ATendvolt, + [199491] = 1, ACTIONS(13348), 1, - anon_sym_ATendforeach, - [205219] = 1, + anon_sym_RPAREN, + [199495] = 1, ACTIONS(13350), 1, - anon_sym_ATendfor, - [205223] = 1, - ACTIONS(13352), 1, anon_sym_ATendteleport, - [205227] = 1, + [199499] = 1, + ACTIONS(13352), 1, + anon_sym_ATendpersist, + [199503] = 1, ACTIONS(13354), 1, - anon_sym_ATendif, - [205231] = 1, + anon_sym_ATendstory, + [199507] = 1, ACTIONS(13356), 1, - aux_sym__custom_token3, - [205235] = 1, + anon_sym_ATendtask, + [199511] = 1, ACTIONS(13358), 1, - anon_sym_ATendfeature, - [205239] = 1, + anon_sym_ATendsetup, + [199515] = 1, ACTIONS(13360), 1, - anon_sym_ATendcanany, - [205243] = 1, + anon_sym_ATendwhile, + [199519] = 1, ACTIONS(13362), 1, - anon_sym_ATendcannot, - [205247] = 1, + anon_sym_ATendforelse, + [199523] = 1, ACTIONS(13364), 1, - anon_sym_ATendcan, - [205251] = 1, + anon_sym_ATendforeach, + [199527] = 1, ACTIONS(13366), 1, - anon_sym_ATendPrependOnce, - [205255] = 1, + anon_sym_ATendfor, + [199531] = 1, ACTIONS(13368), 1, - anon_sym_ATenderror, - [205259] = 1, + anon_sym_RBRACE_RBRACE, + [199535] = 1, ACTIONS(13370), 1, - anon_sym_ATendif, - [205263] = 1, + anon_sym_BANG_BANG_RBRACE, + [199539] = 1, ACTIONS(13372), 1, - anon_sym_ATendwhile, - [205267] = 1, + anon_sym_ATendphp, + [199543] = 1, ACTIONS(13374), 1, - anon_sym_ATendif, - [205271] = 1, + anon_sym_ATendfragment, + [199547] = 1, ACTIONS(13376), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [205275] = 1, + anon_sym_ATendpush, + [199551] = 1, ACTIONS(13378), 1, - anon_sym_ATendenv, - [205279] = 1, - ACTIONS(11777), 1, - anon_sym_RPAREN, - [205283] = 1, + aux_sym__custom_token3, + [199555] = 1, ACTIONS(13380), 1, - anon_sym_ATendguest, - [205287] = 1, + anon_sym_ATendpush, + [199559] = 1, ACTIONS(13382), 1, - anon_sym_ATendauth, - [205291] = 1, + anon_sym_ATendPushOnce, + [199563] = 1, ACTIONS(13384), 1, - anon_sym_ATendempty, - [205295] = 1, + anon_sym_ATendPushIf, + [199567] = 1, ACTIONS(13386), 1, - anon_sym_ATendisset, - [205299] = 1, + anon_sym_ATendprepend, + [199571] = 1, ACTIONS(13388), 1, - anon_sym_ATendunless, - [205303] = 1, + anon_sym_ATendPrependOnce, + [199575] = 1, ACTIONS(13390), 1, anon_sym_ATendif, - [205307] = 1, + [199579] = 1, ACTIONS(13392), 1, - anon_sym_ATendempty, - [205311] = 1, + anon_sym_ATendunless, + [199583] = 1, ACTIONS(13394), 1, - anon_sym_ATendforeach, - [205315] = 1, + anon_sym_ATendisset, + [199587] = 1, ACTIONS(13396), 1, - anon_sym_ATendfor, - [205319] = 1, + anon_sym_ATendempty, + [199591] = 1, ACTIONS(13398), 1, - anon_sym_ATendPrependOnce, - [205323] = 1, + anon_sym_ATendauth, + [199595] = 1, ACTIONS(13400), 1, - anon_sym_ATendprepend, - [205327] = 1, + anon_sym_ATendguest, + [199599] = 1, ACTIONS(13402), 1, - anon_sym_ATendPushIf, - [205331] = 1, + anon_sym_ATendfeature, + [199603] = 1, ACTIONS(13404), 1, - anon_sym_ATendPushOnce, - [205335] = 1, + anon_sym_ATendenv, + [199607] = 1, ACTIONS(13406), 1, - anon_sym_ATendpush, - [205339] = 1, + anon_sym_ATendif, + [199611] = 1, ACTIONS(13408), 1, - anon_sym_ATendprepend, - [205343] = 1, + anon_sym_ATendif, + [199615] = 1, ACTIONS(13410), 1, - anon_sym_ATendfragment, - [205347] = 1, + anon_sym_ATenderror, + [199619] = 1, ACTIONS(13412), 1, - anon_sym_ATendphp, - [205351] = 1, + anon_sym_ATendcanany, + [199623] = 1, ACTIONS(13414), 1, - anon_sym_ATendisset, - [205355] = 1, + anon_sym_ATendcan, + [199627] = 1, ACTIONS(13416), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [205359] = 1, + anon_sym_ATendcannot, + [199631] = 1, ACTIONS(13418), 1, - anon_sym_BANG_BANG_RBRACE, - [205363] = 1, + anon_sym_ATendcanany, + [199635] = 1, ACTIONS(13420), 1, - anon_sym_RBRACE_RBRACE, - [205367] = 1, + anon_sym_ATendfeature, + [199639] = 1, ACTIONS(13422), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [205371] = 1, + aux_sym__custom_token3, + [199643] = 1, ACTIONS(13424), 1, - anon_sym_RBRACE_RBRACE, - [205375] = 1, + anon_sym_ATenderror, + [199647] = 1, ACTIONS(13426), 1, - anon_sym_BANG_BANG_RBRACE, - [205379] = 1, - ACTIONS(11771), 1, - anon_sym_RPAREN, - [205383] = 1, + anon_sym_ATendfor, + [199651] = 1, ACTIONS(13428), 1, - anon_sym_ATendphp, - [205387] = 1, + anon_sym_ATendforeach, + [199655] = 1, ACTIONS(13430), 1, - anon_sym_ATendfragment, - [205391] = 1, + anon_sym_ATendforelse, + [199659] = 1, ACTIONS(13432), 1, - anon_sym_ATendcanany, - [205395] = 1, + anon_sym_ATendwhile, + [199663] = 1, ACTIONS(13434), 1, - anon_sym_ATendpersist, - [205399] = 1, + anon_sym_ATendsetup, + [199667] = 1, ACTIONS(13436), 1, - anon_sym_RPAREN, - [205403] = 1, + anon_sym_ATendtask, + [199671] = 1, ACTIONS(13438), 1, - anon_sym_ATendvolt, - [205407] = 1, + anon_sym_ATendstory, + [199675] = 1, ACTIONS(13440), 1, - anon_sym_ATendunless, - [205411] = 1, + anon_sym_ATendcannot, + [199679] = 1, ACTIONS(13442), 1, - anon_sym_RPAREN, - [205415] = 1, + anon_sym_ATendcan, + [199683] = 1, ACTIONS(13444), 1, - anon_sym_ATendauth, - [205419] = 1, + anon_sym_ATenderror, + [199687] = 1, ACTIONS(13446), 1, - anon_sym_ATendcannot, - [205423] = 1, + anon_sym_ATendif, + [199691] = 1, ACTIONS(13448), 1, - anon_sym_ATendPushOnce, - [205427] = 1, + anon_sym_ATendpersist, + [199695] = 1, ACTIONS(13450), 1, - anon_sym_ATendpush, - [205431] = 1, + anon_sym_ATendteleport, + [199699] = 1, ACTIONS(13452), 1, - anon_sym_ATendPushOnce, - [205435] = 1, + anon_sym_ATendvolt, + [199703] = 1, ACTIONS(13454), 1, - anon_sym_ATendforeach, - [205439] = 1, + anon_sym_ATendif, + [199707] = 1, ACTIONS(13456), 1, - anon_sym_ATendfragment, - [205443] = 1, + anon_sym_ATendif, + [199711] = 1, ACTIONS(13458), 1, - aux_sym__custom_token3, - [205447] = 1, + anon_sym_ATendif, + [199715] = 1, ACTIONS(13460), 1, - anon_sym_ATbreak, - [205451] = 1, + anon_sym_ATendenv, + [199719] = 1, ACTIONS(13462), 1, - anon_sym_RPAREN, - [205455] = 1, + anon_sym_ATendfragment, + [199723] = 1, ACTIONS(13464), 1, - anon_sym_ATendPushIf, - [205459] = 1, - ACTIONS(13466), 1, anon_sym_ATendguest, - [205463] = 1, + [199727] = 1, + ACTIONS(12209), 1, + anon_sym_RPAREN, + [199731] = 1, + ACTIONS(13466), 1, + anon_sym_ATendauth, + [199735] = 1, ACTIONS(13468), 1, - anon_sym_ATendprepend, - [205467] = 1, + anon_sym_ATendenv, + [199739] = 1, ACTIONS(13470), 1, - anon_sym_ATendPrependOnce, - [205471] = 1, + anon_sym_ATendguest, + [199743] = 1, ACTIONS(13472), 1, - anon_sym_ATendif, - [205475] = 1, - ACTIONS(11765), 1, - anon_sym_RPAREN, - [205479] = 1, + anon_sym_ATendauth, + [199747] = 1, ACTIONS(13474), 1, - anon_sym_ATendforelse, - [205483] = 1, + anon_sym_ATendempty, + [199751] = 1, ACTIONS(13476), 1, - anon_sym_ATendunless, - [205487] = 1, + anon_sym_RPAREN, + [199755] = 1, ACTIONS(13478), 1, - anon_sym_ATendisset, - [205491] = 1, + anon_sym_ATendempty, + [199759] = 1, ACTIONS(13480), 1, - anon_sym_ATendenv, - [205495] = 1, + anon_sym_ATendisset, + [199763] = 1, ACTIONS(13482), 1, - anon_sym_ATendempty, - [205499] = 1, + anon_sym_ATendunless, + [199767] = 1, ACTIONS(13484), 1, - anon_sym_ATendauth, - [205503] = 1, + anon_sym_ATendisset, + [199771] = 1, ACTIONS(13486), 1, - anon_sym_ATendguest, - [205507] = 1, + anon_sym_ATendif, + [199775] = 1, ACTIONS(13488), 1, - anon_sym_ATendvolt, - [205511] = 1, + anon_sym_ATendPrependOnce, + [199779] = 1, ACTIONS(13490), 1, - anon_sym_ATendteleport, - [205515] = 1, + anon_sym_ATendunless, + [199783] = 1, ACTIONS(13492), 1, - anon_sym_ATendpersist, - [205519] = 1, + anon_sym_ATendif, + [199787] = 1, ACTIONS(13494), 1, - anon_sym_ATendfor, - [205523] = 1, + anon_sym_ATendPrependOnce, + [199791] = 1, ACTIONS(13496), 1, - anon_sym_ATendif, - [205527] = 1, - ACTIONS(11809), 1, - anon_sym_RPAREN, - [205531] = 1, - ACTIONS(11805), 1, - anon_sym_RPAREN, - [205535] = 1, + anon_sym_ATendprepend, + [199795] = 1, ACTIONS(13498), 1, - anon_sym_ATendpush, - [205539] = 1, + anon_sym_ATendprepend, + [199799] = 1, ACTIONS(13500), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [205543] = 1, + anon_sym_ATendPushIf, + [199803] = 1, ACTIONS(13502), 1, - anon_sym_ATendstory, - [205547] = 1, + anon_sym_ATendPushOnce, + [199807] = 1, ACTIONS(13504), 1, - anon_sym_ATendtask, - [205551] = 1, + anon_sym_ATendpush, + [199811] = 1, ACTIONS(13506), 1, - anon_sym_ATendsetup, - [205555] = 1, + anon_sym_RBRACE_RBRACE, + [199815] = 1, ACTIONS(13508), 1, - anon_sym_ATendwhile, - [205559] = 1, + anon_sym_BANG_BANG_RBRACE, + [199819] = 1, ACTIONS(13510), 1, - anon_sym_ATendforelse, - [205563] = 1, + anon_sym_ATendPushIf, + [199823] = 1, ACTIONS(13512), 1, - anon_sym_ATendfeature, - [205567] = 1, + anon_sym_ATendphp, + [199827] = 1, ACTIONS(13514), 1, - anon_sym_ATendcanany, - [205571] = 1, + anon_sym_ATendfragment, + [199831] = 1, ACTIONS(13516), 1, - anon_sym_ATendcannot, - [205575] = 1, + anon_sym_ATendPushOnce, + [199835] = 1, ACTIONS(13518), 1, - anon_sym_ATendforeach, - [205579] = 1, + anon_sym_ATendsetup, + [199839] = 1, ACTIONS(13520), 1, - anon_sym_ATendfor, - [205583] = 1, + anon_sym_ATendpush, + [199843] = 1, ACTIONS(13522), 1, - anon_sym_ATendenv, - [205587] = 1, + anon_sym_ATendPushOnce, + [199847] = 1, ACTIONS(13524), 1, - aux_sym__custom_token3, - [205591] = 1, + anon_sym_ATendPushIf, + [199851] = 1, ACTIONS(13526), 1, - anon_sym_ATendfeature, - [205595] = 1, + anon_sym_ATendprepend, + [199855] = 1, ACTIONS(13528), 1, - anon_sym_ATendcanany, - [205599] = 1, + anon_sym_ATendPrependOnce, + [199859] = 1, ACTIONS(13530), 1, - anon_sym_ATendcannot, - [205603] = 1, + anon_sym_ATendif, + [199863] = 1, ACTIONS(13532), 1, - anon_sym_ATendcan, - [205607] = 1, + anon_sym_ATendunless, + [199867] = 1, ACTIONS(13534), 1, - anon_sym_ATendif, - [205611] = 1, + anon_sym_ATendisset, + [199871] = 1, ACTIONS(13536), 1, - anon_sym_RBRACE_RBRACE, - [205615] = 1, + anon_sym_ATendempty, + [199875] = 1, ACTIONS(13538), 1, - anon_sym_ATenderror, - [205619] = 1, + anon_sym_ATendauth, + [199879] = 1, ACTIONS(13540), 1, - anon_sym_ATendif, - [205623] = 1, + anon_sym_ATendguest, + [199883] = 1, ACTIONS(13542), 1, - anon_sym_ATendif, - [205627] = 1, + anon_sym_ATendpersist, + [199887] = 1, ACTIONS(13544), 1, anon_sym_ATendenv, - [205631] = 1, + [199891] = 1, ACTIONS(13546), 1, - anon_sym_RPAREN, - [205635] = 1, + anon_sym_ATendif, + [199895] = 1, ACTIONS(13548), 1, - anon_sym_ATendguest, - [205639] = 1, + anon_sym_ATendif, + [199899] = 1, ACTIONS(13550), 1, - anon_sym_ATendauth, - [205643] = 1, + anon_sym_ATenderror, + [199903] = 1, ACTIONS(13552), 1, - anon_sym_ATendempty, - [205647] = 1, + anon_sym_ATendphp, + [199907] = 1, ACTIONS(13554), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [205651] = 1, + anon_sym_ATendcan, + [199911] = 1, ACTIONS(13556), 1, anon_sym_ATendcannot, - [205655] = 1, + [199915] = 1, ACTIONS(13558), 1, - anon_sym_ATendisset, - [205659] = 1, + anon_sym_ATendcanany, + [199919] = 1, ACTIONS(13560), 1, - anon_sym_ATendunless, - [205663] = 1, + anon_sym_ATendfeature, + [199923] = 1, ACTIONS(13562), 1, - anon_sym_ATendif, - [205667] = 1, + aux_sym__custom_token3, + [199927] = 1, ACTIONS(13564), 1, - anon_sym_ATendPrependOnce, - [205671] = 1, + anon_sym_ATendforeach, + [199931] = 1, ACTIONS(13566), 1, - anon_sym_ATendprepend, - [205675] = 1, + anon_sym_ATendfor, + [199935] = 1, ACTIONS(13568), 1, - anon_sym_ATendPushIf, - [205679] = 1, + anon_sym_ATendforeach, + [199939] = 1, ACTIONS(13570), 1, - anon_sym_ATendPushOnce, - [205683] = 1, + anon_sym_ATendforelse, + [199943] = 1, ACTIONS(13572), 1, - anon_sym_ATendpush, - [205687] = 1, + anon_sym_ATendwhile, + [199947] = 1, ACTIONS(13574), 1, - anon_sym_BANG_BANG_RBRACE, - [205691] = 1, + anon_sym_ATendsetup, + [199951] = 1, ACTIONS(13576), 1, - anon_sym_ATendcan, - [205695] = 1, + anon_sym_ATendtask, + [199955] = 1, ACTIONS(13578), 1, - aux_sym__custom_token3, - [205699] = 1, + anon_sym_ATendstory, + [199959] = 1, ACTIONS(13580), 1, - anon_sym_ATenderror, - [205703] = 1, + anon_sym_ATendpush, + [199963] = 1, ACTIONS(13582), 1, - anon_sym_ATendfragment, - [205707] = 1, + anon_sym_BANG_BANG_RBRACE, + [199967] = 1, ACTIONS(13584), 1, - anon_sym_ATendphp, - [205711] = 1, + anon_sym_RBRACE_RBRACE, + [199971] = 1, ACTIONS(13586), 1, - anon_sym_ATendif, - [205715] = 1, + anon_sym_ATendfragment, + [199975] = 1, ACTIONS(13588), 1, - anon_sym_BANG_BANG_RBRACE, - [205719] = 1, + anon_sym_ATendpersist, + [199979] = 1, ACTIONS(13590), 1, - anon_sym_RBRACE_RBRACE, - [205723] = 1, + anon_sym_ATendteleport, + [199983] = 1, ACTIONS(13592), 1, - anon_sym_ATendcannot, - [205727] = 1, + anon_sym_ATendvolt, + [199987] = 1, ACTIONS(13594), 1, - anon_sym_ATendif, - [205731] = 1, + anon_sym_ATendphp, + [199991] = 1, ACTIONS(13596), 1, - anon_sym_ATenderror, - [205735] = 1, + anon_sym_BANG_BANG_RBRACE, + [199995] = 1, ACTIONS(13598), 1, - anon_sym_ATendforeach, - [205739] = 1, + anon_sym_RBRACE_RBRACE, + [199999] = 1, ACTIONS(13600), 1, - anon_sym_ATendfragment, - [205743] = 1, + anon_sym_ATendvolt, + [200003] = 1, ACTIONS(13602), 1, - anon_sym_ATendpush, - [205747] = 1, + anon_sym_ATendPushOnce, + [200007] = 1, ACTIONS(13604), 1, - anon_sym_ATendfragment, - [205751] = 1, + anon_sym_ATendteleport, + [200011] = 1, + ACTIONS(12185), 1, + anon_sym_RPAREN, + [200015] = 1, ACTIONS(13606), 1, - anon_sym_ATendPushOnce, - [205755] = 1, + anon_sym_ATendpersist, + [200019] = 1, ACTIONS(13608), 1, - anon_sym_RPAREN, - [205759] = 1, - ACTIONS(13610), 1, anon_sym_ATendPushIf, - [205763] = 1, + [200023] = 1, + ACTIONS(13610), 1, + anon_sym_ATendprepend, + [200027] = 1, ACTIONS(13612), 1, - anon_sym_ATendcan, - [205767] = 1, + anon_sym_RPAREN, + [200031] = 1, ACTIONS(13614), 1, - anon_sym_ATendvolt, - [205771] = 1, + anon_sym_ATendPrependOnce, + [200035] = 1, ACTIONS(13616), 1, - anon_sym_ATendcan, - [205775] = 1, + anon_sym_RPAREN, + [200039] = 1, + ACTIONS(12177), 1, + anon_sym_RPAREN, + [200043] = 1, ACTIONS(13618), 1, - anon_sym_ATendfeature, - [205779] = 1, + anon_sym_ATendif, + [200047] = 1, ACTIONS(13620), 1, - anon_sym_ATendteleport, - [205783] = 1, + anon_sym_ATendunless, + [200051] = 1, ACTIONS(13622), 1, - anon_sym_ATendif, - [205787] = 1, + anon_sym_ATendisset, + [200055] = 1, ACTIONS(13624), 1, - anon_sym_ATendcanany, - [205791] = 1, + anon_sym_ATendempty, + [200059] = 1, ACTIONS(13626), 1, - anon_sym_ATendfeature, - [205795] = 1, + anon_sym_RPAREN, + [200063] = 1, ACTIONS(13628), 1, - anon_sym_ATendprepend, - [205799] = 1, + anon_sym_ATendauth, + [200067] = 1, ACTIONS(13630), 1, - anon_sym_RPAREN, - [205803] = 1, + anon_sym_ATendguest, + [200071] = 1, ACTIONS(13632), 1, - anon_sym_ATendPrependOnce, - [205807] = 1, + anon_sym_ATendenv, + [200075] = 1, ACTIONS(13634), 1, anon_sym_ATendif, - [205811] = 1, + [200079] = 1, ACTIONS(13636), 1, - anon_sym_ATendunless, - [205815] = 1, + anon_sym_ATendif, + [200083] = 1, + ACTIONS(12255), 1, + anon_sym_RPAREN, + [200087] = 1, ACTIONS(13638), 1, - aux_sym__custom_token3, - [205819] = 1, + anon_sym_ATendphp, + [200091] = 1, ACTIONS(13640), 1, - anon_sym_ATendPrependOnce, - [205823] = 1, + anon_sym_ATenderror, + [200095] = 1, ACTIONS(13642), 1, - anon_sym_ATendif, - [205827] = 1, + anon_sym_ATendcan, + [200099] = 1, ACTIONS(13644), 1, - anon_sym_ATendif, - [205831] = 1, + anon_sym_ATendcannot, + [200103] = 1, ACTIONS(13646), 1, - anon_sym_ATendisset, - [205835] = 1, - ACTIONS(11753), 1, - anon_sym_RPAREN, - [205839] = 1, + anon_sym_ATendvolt, + [200107] = 1, ACTIONS(13648), 1, - anon_sym_ATendempty, - [205843] = 1, + anon_sym_ATendteleport, + [200111] = 1, ACTIONS(13650), 1, - anon_sym_ATendfor, - [205847] = 1, + anon_sym_ATendpersist, + [200115] = 1, ACTIONS(13652), 1, - anon_sym_ATendauth, - [205851] = 1, + anon_sym_ATendcanany, + [200119] = 1, ACTIONS(13654), 1, - anon_sym_ATendforeach, - [205855] = 1, + anon_sym_ATendfeature, + [200123] = 1, ACTIONS(13656), 1, - anon_sym_ATendguest, - [205859] = 1, + aux_sym__custom_token3, + [200127] = 1, ACTIONS(13658), 1, - anon_sym_ATendforelse, - [205863] = 1, + anon_sym_ATendstory, + [200131] = 1, ACTIONS(13660), 1, - anon_sym_ATendcanany, - [205867] = 1, + anon_sym_ATendtask, + [200135] = 1, ACTIONS(13662), 1, - anon_sym_ATendvolt, - [205871] = 1, + anon_sym_ATendsetup, + [200139] = 1, ACTIONS(13664), 1, - anon_sym_ATendteleport, - [205875] = 1, + anon_sym_ATendwhile, + [200143] = 1, ACTIONS(13666), 1, - anon_sym_ATendpersist, - [205879] = 1, + anon_sym_ATendforelse, + [200147] = 1, ACTIONS(13668), 1, - anon_sym_ATendenv, - [205883] = 1, + anon_sym_ATendforeach, + [200151] = 1, ACTIONS(13670), 1, - anon_sym_ATendif, - [205887] = 1, + anon_sym_ATendfor, + [200155] = 1, ACTIONS(13672), 1, - anon_sym_ATendif, - [205891] = 1, + aux_sym__custom_token3, + [200159] = 1, ACTIONS(13674), 1, - anon_sym_ATendcannot, - [205895] = 1, + anon_sym_ATendfeature, + [200163] = 1, ACTIONS(13676), 1, - anon_sym_ATendstory, - [205899] = 1, + anon_sym_ATendcanany, + [200167] = 1, ACTIONS(13678), 1, - anon_sym_ATendtask, - [205903] = 1, - ACTIONS(13680), 1, anon_sym_ATendcannot, - [205907] = 1, + [200171] = 1, + ACTIONS(13680), 1, + anon_sym_ATendcan, + [200175] = 1, ACTIONS(13682), 1, - anon_sym_ATendcanany, - [205911] = 1, + anon_sym_ATendfor, + [200179] = 1, ACTIONS(13684), 1, - anon_sym_ATendsetup, - [205915] = 1, + anon_sym_ATenderror, + [200183] = 1, ACTIONS(13686), 1, - anon_sym_ATendwhile, - [205919] = 1, + anon_sym_ATendif, + [200187] = 1, ACTIONS(13688), 1, - anon_sym_ATendforelse, - [205923] = 1, + anon_sym_ATendif, + [200191] = 1, ACTIONS(13690), 1, - anon_sym_ATendforeach, - [205927] = 1, + anon_sym_ATendenv, + [200195] = 1, ACTIONS(13692), 1, - anon_sym_ATendfor, - [205931] = 1, + anon_sym_ATendsetup, + [200199] = 1, ACTIONS(13694), 1, - anon_sym_ATendPushIf, - [205935] = 1, + anon_sym_ATendguest, + [200203] = 1, ACTIONS(13696), 1, - aux_sym__custom_token3, - [205939] = 1, + anon_sym_ATendauth, + [200207] = 1, ACTIONS(13698), 1, - anon_sym_ATendfeature, - [205943] = 1, + anon_sym_ATendempty, + [200211] = 1, ACTIONS(13700), 1, - anon_sym_ATendcanany, - [205947] = 1, + anon_sym_ATendisset, + [200215] = 1, ACTIONS(13702), 1, - anon_sym_ATendif, - [205951] = 1, + anon_sym_ATendunless, + [200219] = 1, ACTIONS(13704), 1, - anon_sym_ATendenv, - [205955] = 1, + anon_sym_ATendif, + [200223] = 1, ACTIONS(13706), 1, - anon_sym_ATendguest, - [205959] = 1, + anon_sym_ATendPrependOnce, + [200227] = 1, ACTIONS(13708), 1, - anon_sym_ATendcannot, - [205963] = 1, + anon_sym_ATendprepend, + [200231] = 1, ACTIONS(13710), 1, - anon_sym_ATendcan, - [205967] = 1, + anon_sym_ATendPushIf, + [200235] = 1, ACTIONS(13712), 1, - anon_sym_ATenderror, - [205971] = 1, + anon_sym_ATendPushOnce, + [200239] = 1, ACTIONS(13714), 1, - anon_sym_ATenderror, - [205975] = 1, + anon_sym_ATendpush, + [200243] = 1, ACTIONS(13716), 1, - anon_sym_ATendif, - [205979] = 1, + anon_sym_ATendfragment, + [200247] = 1, ACTIONS(13718), 1, - anon_sym_ATendif, - [205983] = 1, + anon_sym_ATendphp, + [200251] = 1, ACTIONS(13720), 1, - anon_sym_ATendenv, - [205987] = 1, + anon_sym_BANG_BANG_RBRACE, + [200255] = 1, ACTIONS(13722), 1, - anon_sym_ATendcan, - [205991] = 1, + anon_sym_RBRACE_RBRACE, + [200259] = 1, ACTIONS(13724), 1, - anon_sym_ATendfeature, - [205995] = 1, + anon_sym_ATendforelse, + [200263] = 1, ACTIONS(13726), 1, - anon_sym_ATendguest, - [205999] = 1, + anon_sym_ATendvolt, + [200267] = 1, ACTIONS(13728), 1, - anon_sym_ATendauth, - [206003] = 1, + anon_sym_ATendstory, + [200271] = 1, ACTIONS(13730), 1, - anon_sym_ATendempty, - [206007] = 1, + anon_sym_ATendtask, + [200275] = 1, ACTIONS(13732), 1, - anon_sym_ATendisset, - [206011] = 1, + anon_sym_ATendwhile, + [200279] = 1, ACTIONS(13734), 1, - anon_sym_ATendunless, - [206015] = 1, + anon_sym_ATendsetup, + [200283] = 1, ACTIONS(13736), 1, - anon_sym_ATendif, - [206019] = 1, + anon_sym_ATendtask, + [200287] = 1, ACTIONS(13738), 1, - anon_sym_ATendPrependOnce, - [206023] = 1, + anon_sym_ATendstory, + [200291] = 1, ACTIONS(13740), 1, - anon_sym_ATendprepend, - [206027] = 1, + anon_sym_ATendpersist, + [200295] = 1, ACTIONS(13742), 1, - anon_sym_ATendPushIf, - [206031] = 1, + anon_sym_ATendteleport, + [200299] = 1, ACTIONS(13744), 1, - anon_sym_ATendcan, - [206035] = 1, + anon_sym_ATendvolt, + [200303] = 1, ACTIONS(13746), 1, - aux_sym__custom_token3, - [206039] = 1, + anon_sym_RPAREN, + [200307] = 1, + ACTIONS(12291), 1, + anon_sym_RPAREN, + [200311] = 1, ACTIONS(13748), 1, - anon_sym_ATendPushOnce, - [206043] = 1, + anon_sym_RPAREN, + [200315] = 1, + ACTIONS(12283), 1, + anon_sym_RPAREN, + [200319] = 1, ACTIONS(13750), 1, - anon_sym_ATendpush, - [206047] = 1, + anon_sym_RBRACE_RBRACE, + [200323] = 1, ACTIONS(13752), 1, - anon_sym_ATendphp, - [206051] = 1, + anon_sym_ATendvolt, + [200327] = 1, ACTIONS(13754), 1, - anon_sym_ATendcanany, - [206055] = 1, + anon_sym_ATendteleport, + [200331] = 1, ACTIONS(13756), 1, - anon_sym_ATendfragment, - [206059] = 1, + anon_sym_ATendpersist, + [200335] = 1, ACTIONS(13758), 1, - anon_sym_ATendphp, - [206063] = 1, + anon_sym_BANG_BANG_RBRACE, + [200339] = 1, ACTIONS(13760), 1, - anon_sym_ATendsetup, - [206067] = 1, + anon_sym_ATendphp, + [200343] = 1, ACTIONS(13762), 1, - anon_sym_BANG_BANG_RBRACE, - [206071] = 1, + anon_sym_ATendstory, + [200347] = 1, ACTIONS(13764), 1, - anon_sym_RBRACE_RBRACE, - [206075] = 1, + anon_sym_ATendteleport, + [200351] = 1, ACTIONS(13766), 1, - anon_sym_ATendauth, - [206079] = 1, + anon_sym_ATendtask, + [200355] = 1, ACTIONS(13768), 1, - anon_sym_ATenderror, - [206083] = 1, + anon_sym_ATendforelse, + [200359] = 1, ACTIONS(13770), 1, - anon_sym_ATendempty, - [206087] = 1, + anon_sym_ATendwhile, + [200363] = 1, ACTIONS(13772), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [206091] = 1, + anon_sym_ATendforelse, + [200367] = 1, ACTIONS(13774), 1, - anon_sym_ATendfeature, - [206095] = 1, + anon_sym_ATendforeach, + [200371] = 1, ACTIONS(13776), 1, - aux_sym__custom_token3, - [206099] = 1, + anon_sym_ATendfor, + [200375] = 1, ACTIONS(13778), 1, - anon_sym_ATendtask, - [206103] = 1, + aux_sym__custom_token3, + [200379] = 1, ACTIONS(13780), 1, - anon_sym_ATendfor, - [206107] = 1, + anon_sym_ATendfeature, + [200383] = 1, ACTIONS(13782), 1, - anon_sym_ATendstory, - [206111] = 1, + anon_sym_ATendcanany, + [200387] = 1, ACTIONS(13784), 1, - anon_sym_ATendforeach, - [206115] = 1, + anon_sym_ATendcannot, + [200391] = 1, ACTIONS(13786), 1, - anon_sym_ATendphp, - [206119] = 1, + anon_sym_ATendcan, + [200395] = 1, ACTIONS(13788), 1, - anon_sym_ATendstory, - [206123] = 1, + anon_sym_ATendforeach, + [200399] = 1, ACTIONS(13790), 1, - anon_sym_ATendforelse, - [206127] = 1, + anon_sym_ATendwhile, + [200403] = 1, ACTIONS(13792), 1, - anon_sym_ATendtask, - [206131] = 1, + anon_sym_ATendcan, + [200407] = 1, ACTIONS(13794), 1, - anon_sym_ATendsetup, - [206135] = 1, + anon_sym_ATenderror, + [200411] = 1, ACTIONS(13796), 1, - anon_sym_BANG_BANG_RBRACE, - [206139] = 1, + anon_sym_ATendif, + [200415] = 1, ACTIONS(13798), 1, - anon_sym_RBRACE_RBRACE, - [206143] = 1, + anon_sym_ATendif, + [200419] = 1, ACTIONS(13800), 1, - anon_sym_ATendpersist, - [206147] = 1, + anon_sym_ATendenv, + [200423] = 1, ACTIONS(13802), 1, - anon_sym_ATendteleport, - [206151] = 1, + anon_sym_ATendpush, + [200427] = 1, ACTIONS(13804), 1, - anon_sym_ATendwhile, - [206155] = 1, + anon_sym_ATendguest, + [200431] = 1, ACTIONS(13806), 1, - anon_sym_RPAREN, - [206159] = 1, + anon_sym_ATendauth, + [200435] = 1, ACTIONS(13808), 1, - anon_sym_ATendwhile, - [206163] = 1, + anon_sym_ATendempty, + [200439] = 1, ACTIONS(13810), 1, - anon_sym_ATendforelse, - [206167] = 1, + anon_sym_ATendisset, + [200443] = 1, ACTIONS(13812), 1, - anon_sym_ATendvolt, - [206171] = 1, + anon_sym_ATendunless, + [200447] = 1, ACTIONS(13814), 1, - anon_sym_ATendsetup, - [206175] = 1, + anon_sym_ATendif, + [200451] = 1, ACTIONS(13816), 1, - anon_sym_ATendtask, - [206179] = 1, + anon_sym_ATendPrependOnce, + [200455] = 1, ACTIONS(13818), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [206183] = 1, + anon_sym_ATendprepend, + [200459] = 1, ACTIONS(13820), 1, - anon_sym_ATendstory, - [206187] = 1, - ACTIONS(11747), 1, - anon_sym_RPAREN, - [206191] = 1, + anon_sym_ATendPushIf, + [200463] = 1, ACTIONS(13822), 1, - anon_sym_ATendpersist, - [206195] = 1, + anon_sym_ATendPushOnce, + [200467] = 1, ACTIONS(13824), 1, - anon_sym_ATendforeach, - [206199] = 1, + anon_sym_ATendpush, + [200471] = 1, ACTIONS(13826), 1, - anon_sym_ATendteleport, - [206203] = 1, + anon_sym_ATendPushOnce, + [200475] = 1, ACTIONS(13828), 1, - anon_sym_ATendisset, - [206207] = 1, + anon_sym_ATendstory, + [200479] = 1, ACTIONS(13830), 1, - anon_sym_ATendunless, - [206211] = 1, + anon_sym_ATendPushIf, + [200483] = 1, ACTIONS(13832), 1, - anon_sym_ATendif, - [206215] = 1, - ACTIONS(11741), 1, - anon_sym_RPAREN, - [206219] = 1, + anon_sym_ATendfragment, + [200487] = 1, ACTIONS(13834), 1, - anon_sym_ATendvolt, - [206223] = 1, + anon_sym_ATendphp, + [200491] = 1, ACTIONS(13836), 1, - anon_sym_ATendfor, - [206227] = 1, + anon_sym_BANG_BANG_RBRACE, + [200495] = 1, ACTIONS(13838), 1, - anon_sym_ATendvolt, - [206231] = 1, + anon_sym_RBRACE_RBRACE, + [200499] = 1, ACTIONS(13840), 1, - anon_sym_ATendteleport, - [206235] = 1, + anon_sym_ATendprepend, + [200503] = 1, ACTIONS(13842), 1, - anon_sym_ATendpersist, - [206239] = 1, + anon_sym_ATendPrependOnce, + [200507] = 1, ACTIONS(13844), 1, - anon_sym_RPAREN, - [206243] = 1, + anon_sym_ATendif, + [200511] = 1, ACTIONS(13846), 1, - anon_sym_ATendwhile, - [206247] = 1, + anon_sym_ATendunless, + [200515] = 1, ACTIONS(13848), 1, - anon_sym_ATendfor, - [206251] = 1, + anon_sym_ATendisset, + [200519] = 1, ACTIONS(13850), 1, - aux_sym__custom_token3, - [206255] = 1, - ACTIONS(11733), 1, - anon_sym_RPAREN, - [206259] = 1, + anon_sym_ATendforelse, + [200523] = 1, ACTIONS(13852), 1, - anon_sym_ATendstory, - [206263] = 1, + anon_sym_ATendforeach, + [200527] = 1, ACTIONS(13854), 1, - anon_sym_ATendtask, - [206267] = 1, + anon_sym_ATendfor, + [200531] = 1, ACTIONS(13856), 1, - anon_sym_ATendsetup, - [206271] = 1, + anon_sym_ATendempty, + [200535] = 1, ACTIONS(13858), 1, - anon_sym_ATendwhile, - [206275] = 1, + anon_sym_ATendauth, + [200539] = 1, ACTIONS(13860), 1, - anon_sym_ATendforelse, - [206279] = 1, + anon_sym_ATendguest, + [200543] = 1, ACTIONS(13862), 1, - anon_sym_ATendforeach, - [206283] = 1, + anon_sym_RPAREN, + [200547] = 1, ACTIONS(13864), 1, - anon_sym_ATendfor, - [206287] = 1, + anon_sym_ATendenv, + [200551] = 1, ACTIONS(13866), 1, anon_sym_ATendif, - [206291] = 1, + [200555] = 1, ACTIONS(13868), 1, - anon_sym_ATendfeature, - [206295] = 1, + anon_sym_ATendif, + [200559] = 1, + ACTIONS(12305), 1, + anon_sym_RPAREN, + [200563] = 1, + ACTIONS(12301), 1, + anon_sym_RPAREN, + [200567] = 1, ACTIONS(13870), 1, - anon_sym_ATendguest, - [206299] = 1, + anon_sym_ATenderror, + [200571] = 1, ACTIONS(13872), 1, - aux_sym__custom_token3, - [206303] = 1, + anon_sym_ATendvolt, + [200575] = 1, ACTIONS(13874), 1, - anon_sym_ATendfeature, - [206307] = 1, + anon_sym_ATendteleport, + [200579] = 1, ACTIONS(13876), 1, - anon_sym_ATendcanany, - [206311] = 1, + anon_sym_ATendpersist, + [200583] = 1, ACTIONS(13878), 1, - anon_sym_ATendcannot, - [206315] = 1, - ACTIONS(13880), 1, anon_sym_ATendcan, - [206319] = 1, - ACTIONS(11731), 1, - anon_sym_RPAREN, - [206323] = 1, + [200587] = 1, + ACTIONS(13880), 1, + anon_sym_ATendcannot, + [200591] = 1, ACTIONS(13882), 1, - anon_sym_ATenderror, - [206327] = 1, + anon_sym_ATendcanany, + [200595] = 1, ACTIONS(13884), 1, - anon_sym_ATendif, - [206331] = 1, + anon_sym_ATendfeature, + [200599] = 1, ACTIONS(13886), 1, - anon_sym_ATendPushIf, - [206335] = 1, + anon_sym_ATendstory, + [200603] = 1, ACTIONS(13888), 1, - anon_sym_ATendprepend, - [206339] = 1, + anon_sym_ATendtask, + [200607] = 1, ACTIONS(13890), 1, - anon_sym_ATendPushIf, - [206343] = 1, + anon_sym_ATendtask, + [200611] = 1, ACTIONS(13892), 1, - anon_sym_ATendif, - [206347] = 1, + anon_sym_ATendsetup, + [200615] = 1, ACTIONS(13894), 1, - anon_sym_ATendenv, - [206351] = 1, + anon_sym_ATendwhile, + [200619] = 1, ACTIONS(13896), 1, - anon_sym_RPAREN, - [206355] = 1, + aux_sym__custom_token3, + [200623] = 1, ACTIONS(13898), 1, - anon_sym_ATendauth, - [206359] = 1, + anon_sym_ATendforeach, + [200627] = 1, ACTIONS(13900), 1, - anon_sym_ATendauth, - [206363] = 1, + anon_sym_ATendfor, + [200631] = 1, ACTIONS(13902), 1, - anon_sym_ATendempty, - [206367] = 1, + aux_sym__custom_token3, + [200635] = 1, ACTIONS(13904), 1, - anon_sym_ATendisset, - [206371] = 1, + anon_sym_ATendfeature, + [200639] = 1, ACTIONS(13906), 1, - anon_sym_ATendunless, - [206375] = 1, + anon_sym_ATendcanany, + [200643] = 1, ACTIONS(13908), 1, - anon_sym_ATendPrependOnce, - [206379] = 1, + anon_sym_ATendcannot, + [200647] = 1, ACTIONS(13910), 1, - anon_sym_ATendif, - [206383] = 1, + anon_sym_ATendsetup, + [200651] = 1, ACTIONS(13912), 1, - anon_sym_ATendPrependOnce, - [206387] = 1, + anon_sym_ATendcan, + [200655] = 1, ACTIONS(13914), 1, - anon_sym_ATendprepend, - [206391] = 1, + aux_sym__custom_token3, + [200659] = 1, ACTIONS(13916), 1, - anon_sym_ATendPushIf, - [206395] = 1, + aux_sym__custom_token3, + [200663] = 1, ACTIONS(13918), 1, - anon_sym_ATendPushOnce, - [206399] = 1, + anon_sym_ATenderror, + [200667] = 1, ACTIONS(13920), 1, - anon_sym_ATendpush, - [206403] = 1, + anon_sym_ATendif, + [200671] = 1, ACTIONS(13922), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [206407] = 1, + anon_sym_ATendif, + [200675] = 1, ACTIONS(13924), 1, - anon_sym_RBRACE_RBRACE, - [206411] = 1, + anon_sym_ATendenv, + [200679] = 1, ACTIONS(13926), 1, - anon_sym_ATendfragment, - [206415] = 1, + anon_sym_ATendguest, + [200683] = 1, ACTIONS(13928), 1, - anon_sym_ATendenv, - [206419] = 1, + anon_sym_ATendauth, + [200687] = 1, ACTIONS(13930), 1, - anon_sym_ATendcannot, - [206423] = 1, + anon_sym_ATendempty, + [200691] = 1, ACTIONS(13932), 1, - anon_sym_ATendphp, - [206427] = 1, + anon_sym_ATendisset, + [200695] = 1, ACTIONS(13934), 1, - anon_sym_BANG_BANG_RBRACE, - [206431] = 1, + anon_sym_ATendunless, + [200699] = 1, ACTIONS(13936), 1, - anon_sym_BANG_BANG_RBRACE, - [206435] = 1, + anon_sym_ATendif, + [200703] = 1, ACTIONS(13938), 1, - anon_sym_RBRACE_RBRACE, - [206439] = 1, + anon_sym_ATendPrependOnce, + [200707] = 1, ACTIONS(13940), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [206443] = 1, + anon_sym_ATendprepend, + [200711] = 1, ACTIONS(13942), 1, - anon_sym_ATendphp, - [206447] = 1, + anon_sym_ATendPushIf, + [200715] = 1, ACTIONS(13944), 1, - anon_sym_ATendfragment, - [206451] = 1, + anon_sym_ATendPushOnce, + [200719] = 1, ACTIONS(13946), 1, - anon_sym_ATendcan, - [206455] = 1, + anon_sym_ATendpush, + [200723] = 1, ACTIONS(13948), 1, - anon_sym_ATenderror, - [206459] = 1, + anon_sym_ATbreak, + [200727] = 1, ACTIONS(13950), 1, - anon_sym_ATendPushOnce, - [206463] = 1, + anon_sym_ATendfragment, + [200731] = 1, ACTIONS(13952), 1, - anon_sym_ATendpush, - [206467] = 1, + anon_sym_ATendwhile, + [200735] = 1, ACTIONS(13954), 1, - anon_sym_ATendguest, - [206471] = 1, + anon_sym_ATendphp, + [200739] = 1, ACTIONS(13956), 1, - anon_sym_ATendvolt, - [206475] = 1, + anon_sym_BANG_BANG_RBRACE, + [200743] = 1, ACTIONS(13958), 1, - anon_sym_ATendteleport, - [206479] = 1, + anon_sym_RBRACE_RBRACE, + [200747] = 1, ACTIONS(13960), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [206483] = 1, + anon_sym_ATendfor, + [200751] = 1, ACTIONS(13962), 1, - anon_sym_RBRACE_RBRACE, - [206487] = 1, + anon_sym_ATendforeach, + [200755] = 1, ACTIONS(13964), 1, - anon_sym_ATendif, - [206491] = 1, + anon_sym_ATendforelse, + [200759] = 1, ACTIONS(13966), 1, - anon_sym_ATendif, - [206495] = 1, + anon_sym_ATendwhile, + [200763] = 1, ACTIONS(13968), 1, - anon_sym_ATendpush, - [206499] = 1, + anon_sym_ATendsetup, + [200767] = 1, ACTIONS(13970), 1, - anon_sym_ATendPushOnce, - [206503] = 1, + anon_sym_ATendtask, + [200771] = 1, ACTIONS(13972), 1, - anon_sym_ATendenv, - [206507] = 1, + anon_sym_ATendstory, + [200775] = 1, ACTIONS(13974), 1, - anon_sym_ATendPushIf, - [206511] = 1, + anon_sym_ATendfeature, + [200779] = 1, ACTIONS(13976), 1, - anon_sym_ATendprepend, - [206515] = 1, + anon_sym_ATendcanany, + [200783] = 1, ACTIONS(13978), 1, - anon_sym_BANG_BANG_RBRACE, - [206519] = 1, + anon_sym_ATendcannot, + [200787] = 1, ACTIONS(13980), 1, anon_sym_RPAREN, - [206523] = 1, + [200791] = 1, ACTIONS(13982), 1, - anon_sym_ATendPrependOnce, - [206527] = 1, + anon_sym_ATendpersist, + [200795] = 1, ACTIONS(13984), 1, - anon_sym_ATendphp, - [206531] = 1, + anon_sym_ATendteleport, + [200799] = 1, ACTIONS(13986), 1, - anon_sym_ATendfragment, - [206535] = 1, + anon_sym_ATendvolt, + [200803] = 1, ACTIONS(13988), 1, - anon_sym_ATendif, - [206539] = 1, + anon_sym_RPAREN, + [200807] = 1, + ACTIONS(12325), 1, + anon_sym_RPAREN, + [200811] = 1, ACTIONS(13990), 1, - anon_sym_ATendunless, - [206543] = 1, + anon_sym_ATendfragment, + [200815] = 1, + ACTIONS(12339), 1, + anon_sym_RPAREN, + [200819] = 1, ACTIONS(13992), 1, - anon_sym_ATendauth, - [206547] = 1, + anon_sym_ATendvolt, + [200823] = 1, ACTIONS(13994), 1, - anon_sym_ATendguest, - [206551] = 1, - ACTIONS(11723), 1, - anon_sym_RPAREN, - [206555] = 1, + anon_sym_ATendteleport, + [200827] = 1, ACTIONS(13996), 1, - anon_sym_ATendisset, - [206559] = 1, + anon_sym_ATendpersist, + [200831] = 1, ACTIONS(13998), 1, - anon_sym_ATendempty, - [206563] = 1, + anon_sym_RPAREN, + [200835] = 1, ACTIONS(14000), 1, - anon_sym_ATendpush, - [206567] = 1, + anon_sym_ATendstory, + [200839] = 1, ACTIONS(14002), 1, - anon_sym_ATendauth, - [206571] = 1, + anon_sym_ATendtask, + [200843] = 1, ACTIONS(14004), 1, - anon_sym_ATendPushOnce, - [206575] = 1, + anon_sym_ATendsetup, + [200847] = 1, ACTIONS(14006), 1, - anon_sym_ATendguest, - [206579] = 1, + anon_sym_ATendwhile, + [200851] = 1, ACTIONS(14008), 1, - anon_sym_ATendvolt, - [206583] = 1, + anon_sym_ATendforelse, + [200855] = 1, ACTIONS(14010), 1, - anon_sym_ATendteleport, - [206587] = 1, + anon_sym_ATendforeach, + [200859] = 1, ACTIONS(14012), 1, - anon_sym_ATendsetup, - [206591] = 1, + anon_sym_ATendforelse, + [200863] = 1, ACTIONS(14014), 1, - anon_sym_ATendisset, - [206595] = 1, + anon_sym_ATendfor, + [200867] = 1, ACTIONS(14016), 1, - anon_sym_ATendfragment, - [206599] = 1, + anon_sym_ATendif, + [200871] = 1, ACTIONS(14018), 1, - anon_sym_ATendpersist, - [206603] = 1, + anon_sym_ATendfeature, + [200875] = 1, ACTIONS(14020), 1, - anon_sym_ATendPushIf, - [206607] = 1, + anon_sym_ATendcanany, + [200879] = 1, ACTIONS(14022), 1, - anon_sym_ATendprepend, - [206611] = 1, + anon_sym_ATendcannot, + [200883] = 1, ACTIONS(14024), 1, - anon_sym_ATendPrependOnce, - [206615] = 1, + anon_sym_ATendcan, + [200887] = 1, ACTIONS(14026), 1, - anon_sym_ATendcannot, - [206619] = 1, + anon_sym_ATenderror, + [200891] = 1, ACTIONS(14028), 1, - anon_sym_ATendstory, - [206623] = 1, + anon_sym_ATendif, + [200895] = 1, ACTIONS(14030), 1, - anon_sym_ATendtask, - [206627] = 1, + anon_sym_ATendif, + [200899] = 1, ACTIONS(14032), 1, - anon_sym_ATendsetup, - [206631] = 1, + anon_sym_ATendenv, + [200903] = 1, ACTIONS(14034), 1, - anon_sym_ATendauth, - [206635] = 1, + anon_sym_ATendisset, + [200907] = 1, ACTIONS(14036), 1, anon_sym_ATendcan, - [206639] = 1, + [200911] = 1, ACTIONS(14038), 1, - anon_sym_ATendforelse, - [206643] = 1, + anon_sym_ATenderror, + [200915] = 1, ACTIONS(14040), 1, - anon_sym_ATendforeach, - [206647] = 1, + anon_sym_ATendguest, + [200919] = 1, ACTIONS(14042), 1, - anon_sym_ATendfor, - [206651] = 1, + anon_sym_ATendauth, + [200923] = 1, ACTIONS(14044), 1, - anon_sym_ATendcan, - [206655] = 1, - ACTIONS(14046), 1, anon_sym_ATendempty, - [206659] = 1, + [200927] = 1, + ACTIONS(14046), 1, + anon_sym_ATendisset, + [200931] = 1, ACTIONS(14048), 1, - aux_sym__custom_token3, - [206663] = 1, + anon_sym_ATendunless, + [200935] = 1, ACTIONS(14050), 1, - anon_sym_ATendfeature, - [206667] = 1, + anon_sym_ATendif, + [200939] = 1, ACTIONS(14052), 1, - anon_sym_ATendcanany, - [206671] = 1, + anon_sym_ATendPrependOnce, + [200943] = 1, ACTIONS(14054), 1, - anon_sym_ATendunless, - [206675] = 1, + anon_sym_ATendprepend, + [200947] = 1, ACTIONS(14056), 1, - anon_sym_ATenderror, - [206679] = 1, + anon_sym_ATendPushIf, + [200951] = 1, ACTIONS(14058), 1, - anon_sym_ATendcannot, - [206683] = 1, + anon_sym_ATendPushOnce, + [200955] = 1, ACTIONS(14060), 1, - anon_sym_ATendcan, - [206687] = 1, + anon_sym_ATendpush, + [200959] = 1, ACTIONS(14062), 1, - anon_sym_ATendunless, - [206691] = 1, + anon_sym_RBRACE_RBRACE, + [200963] = 1, ACTIONS(14064), 1, - anon_sym_ATenderror, - [206695] = 1, + anon_sym_BANG_BANG_RBRACE, + [200967] = 1, ACTIONS(14066), 1, - anon_sym_ATendif, - [206699] = 1, + anon_sym_ATendfragment, + [200971] = 1, ACTIONS(14068), 1, - anon_sym_ATendif, - [206703] = 1, + anon_sym_ATendphp, + [200975] = 1, ACTIONS(14070), 1, - anon_sym_ATendenv, - [206707] = 1, + anon_sym_BANG_BANG_RBRACE, + [200979] = 1, ACTIONS(14072), 1, - anon_sym_ATendguest, - [206711] = 1, + anon_sym_RBRACE_RBRACE, + [200983] = 1, ACTIONS(14074), 1, - anon_sym_ATendauth, - [206715] = 1, + anon_sym_ATendphp, + [200987] = 1, ACTIONS(14076), 1, - anon_sym_ATendif, - [206719] = 1, + anon_sym_ATendfor, + [200991] = 1, ACTIONS(14078), 1, - anon_sym_ATendPrependOnce, - [206723] = 1, + anon_sym_ATendfragment, + [200995] = 1, ACTIONS(14080), 1, - anon_sym_ATendphp, - [206727] = 1, + anon_sym_ATendPushOnce, + [200999] = 1, ACTIONS(14082), 1, - anon_sym_ATendempty, - [206731] = 1, + anon_sym_ATendPushIf, + [201003] = 1, ACTIONS(14084), 1, - anon_sym_ATendisset, - [206735] = 1, + anon_sym_ATendprepend, + [201007] = 1, ACTIONS(14086), 1, - anon_sym_ATendunless, - [206739] = 1, + anon_sym_ATendPrependOnce, + [201011] = 1, ACTIONS(14088), 1, anon_sym_ATendif, - [206743] = 1, + [201015] = 1, ACTIONS(14090), 1, - anon_sym_ATendPrependOnce, - [206747] = 1, + anon_sym_RPAREN, + [201019] = 1, ACTIONS(14092), 1, - anon_sym_ATendprepend, - [206751] = 1, + anon_sym_ATendunless, + [201023] = 1, ACTIONS(14094), 1, - anon_sym_ATendPushIf, - [206755] = 1, + anon_sym_ATendisset, + [201027] = 1, ACTIONS(14096), 1, - anon_sym_ATendPushOnce, - [206759] = 1, + anon_sym_ATendempty, + [201031] = 1, ACTIONS(14098), 1, - anon_sym_ATendunless, - [206763] = 1, + anon_sym_ATendauth, + [201035] = 1, ACTIONS(14100), 1, - anon_sym_ATendpush, - [206767] = 1, + anon_sym_ATendguest, + [201039] = 1, ACTIONS(14102), 1, - anon_sym_ATendisset, - [206771] = 1, + anon_sym_ATendif, + [201043] = 1, + ACTIONS(12353), 1, + anon_sym_RPAREN, + [201047] = 1, ACTIONS(14104), 1, - anon_sym_ATendempty, - [206775] = 1, + anon_sym_ATendenv, + [201051] = 1, ACTIONS(14106), 1, - anon_sym_ATendfragment, - [206779] = 1, + anon_sym_ATendif, + [201055] = 1, ACTIONS(14108), 1, anon_sym_ATendphp, - [206783] = 1, + [201059] = 1, ACTIONS(14110), 1, - anon_sym_ATendenv, - [206787] = 1, + anon_sym_ATenderror, + [201063] = 1, ACTIONS(14112), 1, - anon_sym_BANG_BANG_RBRACE, - [206791] = 1, + anon_sym_ATendvolt, + [201067] = 1, ACTIONS(14114), 1, - anon_sym_RBRACE_RBRACE, - [206795] = 1, + anon_sym_ATendteleport, + [201071] = 1, ACTIONS(14116), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [206799] = 1, + anon_sym_ATendpersist, + [201075] = 1, ACTIONS(14118), 1, - anon_sym_ATendprepend, - [206803] = 1, + anon_sym_ATendcan, + [201079] = 1, ACTIONS(14120), 1, - anon_sym_ATendif, - [206807] = 1, + anon_sym_ATendcannot, + [201083] = 1, ACTIONS(14122), 1, - anon_sym_ATendtask, - [206811] = 1, + anon_sym_ATendcanany, + [201087] = 1, ACTIONS(14124), 1, - anon_sym_ATendguest, - [206815] = 1, + anon_sym_ATendfeature, + [201091] = 1, ACTIONS(14126), 1, - anon_sym_ATendenv, - [206819] = 1, + anon_sym_ATendstory, + [201095] = 1, ACTIONS(14128), 1, - anon_sym_ATendif, - [206823] = 1, + anon_sym_ATendtask, + [201099] = 1, ACTIONS(14130), 1, - anon_sym_ATendif, - [206827] = 1, + anon_sym_ATendsetup, + [201103] = 1, ACTIONS(14132), 1, - anon_sym_ATendif, - [206831] = 1, + anon_sym_ATendwhile, + [201107] = 1, ACTIONS(14134), 1, - anon_sym_ATendisset, - [206835] = 1, + anon_sym_ATendforelse, + [201111] = 1, ACTIONS(14136), 1, anon_sym_ATendforeach, - [206839] = 1, + [201115] = 1, ACTIONS(14138), 1, - anon_sym_ATendempty, - [206843] = 1, + aux_sym__custom_token3, + [201119] = 1, ACTIONS(14140), 1, - anon_sym_ATendprepend, - [206847] = 1, + anon_sym_ATendfor, + [201123] = 1, ACTIONS(14142), 1, - anon_sym_ATendprepend, - [206851] = 1, + aux_sym__custom_token3, + [201127] = 1, ACTIONS(14144), 1, - anon_sym_ATendPushOnce, - [206855] = 1, + anon_sym_ATendfeature, + [201131] = 1, ACTIONS(14146), 1, - anon_sym_ATendPushIf, - [206859] = 1, + anon_sym_ATendcanany, + [201135] = 1, ACTIONS(14148), 1, - anon_sym_ATendif, - [206863] = 1, + anon_sym_ATendcannot, + [201139] = 1, ACTIONS(14150), 1, - anon_sym_ATenderror, - [206867] = 1, + anon_sym_ATendcan, + [201143] = 1, ACTIONS(14152), 1, - anon_sym_ATendstory, - [206871] = 1, + aux_sym__custom_token3, + [201147] = 1, ACTIONS(14154), 1, - anon_sym_ATendcan, - [206875] = 1, + anon_sym_ATenderror, + [201151] = 1, ACTIONS(14156), 1, - anon_sym_ATendcannot, - [206879] = 1, + anon_sym_ATendif, + [201155] = 1, ACTIONS(14158), 1, - anon_sym_RPAREN, - [206883] = 1, + anon_sym_ATendif, + [201159] = 1, ACTIONS(14160), 1, - anon_sym_ATendcanany, - [206887] = 1, + anon_sym_ATendif, + [201163] = 1, ACTIONS(14162), 1, - anon_sym_ATendPushOnce, - [206891] = 1, + anon_sym_ATendenv, + [201167] = 1, ACTIONS(14164), 1, - anon_sym_ATendfeature, - [206895] = 1, + anon_sym_ATendguest, + [201171] = 1, ACTIONS(14166), 1, - aux_sym__custom_token3, - [206899] = 1, + anon_sym_ATendenv, + [201175] = 1, ACTIONS(14168), 1, - anon_sym_ATendcannot, - [206903] = 1, + anon_sym_ATendguest, + [201179] = 1, ACTIONS(14170), 1, - anon_sym_ATendcanany, - [206907] = 1, - ACTIONS(11717), 1, - anon_sym_RPAREN, - [206911] = 1, + anon_sym_ATendauth, + [201183] = 1, ACTIONS(14172), 1, - anon_sym_ATendfor, - [206915] = 1, + anon_sym_ATendempty, + [201187] = 1, ACTIONS(14174), 1, - anon_sym_ATendfeature, - [206919] = 1, + anon_sym_ATendisset, + [201191] = 1, ACTIONS(14176), 1, - anon_sym_ATendforeach, - [206923] = 1, + anon_sym_ATendunless, + [201195] = 1, ACTIONS(14178), 1, - aux_sym__custom_token3, - [206927] = 1, + anon_sym_ATendif, + [201199] = 1, ACTIONS(14180), 1, - anon_sym_ATendpush, - [206931] = 1, + anon_sym_ATendPrependOnce, + [201203] = 1, ACTIONS(14182), 1, - anon_sym_ATendpush, - [206935] = 1, + anon_sym_ATendprepend, + [201207] = 1, ACTIONS(14184), 1, - anon_sym_ATendforelse, - [206939] = 1, + anon_sym_ATendPushIf, + [201211] = 1, ACTIONS(14186), 1, - anon_sym_ATendfor, - [206943] = 1, + anon_sym_ATendPushOnce, + [201215] = 1, ACTIONS(14188), 1, - anon_sym_ATendvolt, - [206947] = 1, + anon_sym_ATendpush, + [201219] = 1, ACTIONS(14190), 1, - anon_sym_ATendteleport, - [206951] = 1, + anon_sym_ATendfor, + [201223] = 1, ACTIONS(14192), 1, - anon_sym_ATendpersist, - [206955] = 1, + anon_sym_ATendfragment, + [201227] = 1, ACTIONS(14194), 1, - anon_sym_ATendwhile, - [206959] = 1, + anon_sym_ATendphp, + [201231] = 1, ACTIONS(14196), 1, - anon_sym_ATendsetup, - [206963] = 1, + anon_sym_BANG_BANG_RBRACE, + [201235] = 1, ACTIONS(14198), 1, - anon_sym_ATendtask, - [206967] = 1, + anon_sym_RBRACE_RBRACE, + [201239] = 1, ACTIONS(14200), 1, - anon_sym_ATendstory, - [206971] = 1, + anon_sym_ATendforeach, + [201243] = 1, ACTIONS(14202), 1, - anon_sym_BANG_BANG_RBRACE, - [206975] = 1, + anon_sym_ATendfeature, + [201247] = 1, ACTIONS(14204), 1, - anon_sym_ATendfragment, - [206979] = 1, + anon_sym_ATendforelse, + [201251] = 1, ACTIONS(14206), 1, - anon_sym_ATendpush, - [206983] = 1, + anon_sym_ATendwhile, + [201255] = 1, ACTIONS(14208), 1, - anon_sym_ATendstory, - [206987] = 1, + anon_sym_ATendsetup, + [201259] = 1, ACTIONS(14210), 1, - anon_sym_RBRACE_RBRACE, - [206991] = 1, + anon_sym_ATendtask, + [201263] = 1, ACTIONS(14212), 1, - anon_sym_ATendsetup, - [206995] = 1, + anon_sym_ATendstory, + [201267] = 1, ACTIONS(14214), 1, - anon_sym_ATendwhile, - [206999] = 1, + anon_sym_ATendpush, + [201271] = 1, ACTIONS(14216), 1, - anon_sym_ATendforelse, - [207003] = 1, + anon_sym_ATendteleport, + [201275] = 1, ACTIONS(14218), 1, - anon_sym_ATendforeach, - [207007] = 1, + anon_sym_ATendvolt, + [201279] = 1, ACTIONS(14220), 1, - anon_sym_ATendfor, - [207011] = 1, + anon_sym_RPAREN, + [201283] = 1, + ACTIONS(12377), 1, + anon_sym_RPAREN, + [201287] = 1, ACTIONS(14222), 1, - anon_sym_ATendforeach, - [207015] = 1, + anon_sym_ATendauth, + [201291] = 1, ACTIONS(14224), 1, - anon_sym_ATendforeach, - [207019] = 1, + anon_sym_ATendcanany, + [201295] = 1, ACTIONS(14226), 1, - aux_sym__custom_token3, - [207023] = 1, + anon_sym_ATendempty, + [201299] = 1, ACTIONS(14228), 1, - anon_sym_ATendfeature, - [207027] = 1, + anon_sym_RPAREN, + [201303] = 1, + ACTIONS(12371), 1, + anon_sym_RPAREN, + [201307] = 1, ACTIONS(14230), 1, - anon_sym_ATendcanany, - [207031] = 1, + anon_sym_ATendvolt, + [201311] = 1, ACTIONS(14232), 1, - anon_sym_ATendcannot, - [207035] = 1, + anon_sym_ATendteleport, + [201315] = 1, ACTIONS(14234), 1, - anon_sym_ATendcan, - [207039] = 1, - ACTIONS(14236), 1, anon_sym_ATendpersist, - [207043] = 1, + [201319] = 1, + ACTIONS(14236), 1, + anon_sym_RBRACE_RBRACE, + [201323] = 1, ACTIONS(14238), 1, - anon_sym_ATenderror, - [207047] = 1, + anon_sym_BANG_BANG_RBRACE, + [201327] = 1, ACTIONS(14240), 1, - anon_sym_ATendif, - [207051] = 1, + anon_sym_ATendstory, + [201331] = 1, ACTIONS(14242), 1, - anon_sym_ATendif, - [207055] = 1, + anon_sym_ATendtask, + [201335] = 1, ACTIONS(14244), 1, - anon_sym_ATendphp, - [207059] = 1, + anon_sym_ATendsetup, + [201339] = 1, ACTIONS(14246), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207063] = 1, + anon_sym_ATendwhile, + [201343] = 1, ACTIONS(14248), 1, - anon_sym_ATendenv, - [207067] = 1, + anon_sym_ATendforelse, + [201347] = 1, ACTIONS(14250), 1, - anon_sym_ATendteleport, - [207071] = 1, + anon_sym_ATendforeach, + [201351] = 1, ACTIONS(14252), 1, - anon_sym_ATendguest, - [207075] = 1, + anon_sym_ATendfor, + [201355] = 1, ACTIONS(14254), 1, - anon_sym_ATendauth, - [207079] = 1, + aux_sym__custom_token3, + [201359] = 1, ACTIONS(14256), 1, - anon_sym_ATendempty, - [207083] = 1, + anon_sym_ATendfeature, + [201363] = 1, ACTIONS(14258), 1, - anon_sym_ATendisset, - [207087] = 1, + anon_sym_ATendcanany, + [201367] = 1, ACTIONS(14260), 1, - anon_sym_ATendunless, - [207091] = 1, + anon_sym_ATendcannot, + [201371] = 1, ACTIONS(14262), 1, - anon_sym_ATendif, - [207095] = 1, + anon_sym_ATendcannot, + [201375] = 1, ACTIONS(14264), 1, - anon_sym_ATendPrependOnce, - [207099] = 1, + anon_sym_ATendcan, + [201379] = 1, ACTIONS(14266), 1, - anon_sym_RBRACE_RBRACE, - [207103] = 1, + anon_sym_ATendauth, + [201383] = 1, ACTIONS(14268), 1, - anon_sym_ATendPushOnce, - [207107] = 1, + anon_sym_ATenderror, + [201387] = 1, ACTIONS(14270), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207111] = 1, + anon_sym_ATendif, + [201391] = 1, ACTIONS(14272), 1, - anon_sym_ATendprepend, - [207115] = 1, + anon_sym_ATendif, + [201395] = 1, ACTIONS(14274), 1, - anon_sym_ATendPushIf, - [207119] = 1, + anon_sym_ATendenv, + [201399] = 1, ACTIONS(14276), 1, - anon_sym_ATendPushOnce, - [207123] = 1, + anon_sym_ATendfragment, + [201403] = 1, ACTIONS(14278), 1, - anon_sym_ATendpush, - [207127] = 1, + anon_sym_ATendguest, + [201407] = 1, ACTIONS(14280), 1, - anon_sym_ATendvolt, - [207131] = 1, + anon_sym_ATendauth, + [201411] = 1, ACTIONS(14282), 1, - anon_sym_ATendforelse, - [207135] = 1, + anon_sym_ATendempty, + [201415] = 1, ACTIONS(14284), 1, - anon_sym_ATendfragment, - [207139] = 1, + anon_sym_ATendempty, + [201419] = 1, ACTIONS(14286), 1, - anon_sym_ATendphp, - [207143] = 1, + anon_sym_ATendunless, + [201423] = 1, ACTIONS(14288), 1, - anon_sym_ATendfragment, - [207147] = 1, + anon_sym_ATendif, + [201427] = 1, ACTIONS(14290), 1, - anon_sym_ATendwhile, - [207151] = 1, + anon_sym_ATendisset, + [201431] = 1, ACTIONS(14292), 1, - anon_sym_BANG_BANG_RBRACE, - [207155] = 1, + anon_sym_ATendunless, + [201435] = 1, ACTIONS(14294), 1, - anon_sym_RBRACE_RBRACE, - [207159] = 1, + anon_sym_ATendif, + [201439] = 1, ACTIONS(14296), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207163] = 1, + anon_sym_ATendPrependOnce, + [201443] = 1, ACTIONS(14298), 1, - anon_sym_ATendsetup, - [207167] = 1, + anon_sym_ATendprepend, + [201447] = 1, ACTIONS(14300), 1, - anon_sym_ATendtask, - [207171] = 1, - ACTIONS(11711), 1, - anon_sym_RPAREN, - [207175] = 1, + anon_sym_ATendPushIf, + [201451] = 1, ACTIONS(14302), 1, - anon_sym_ATendstory, - [207179] = 1, + anon_sym_ATendPushOnce, + [201455] = 1, ACTIONS(14304), 1, - anon_sym_ATendtask, - [207183] = 1, + anon_sym_ATendpush, + [201459] = 1, ACTIONS(14306), 1, - anon_sym_BANG_BANG_RBRACE, - [207187] = 1, + anon_sym_ATendpush, + [201463] = 1, ACTIONS(14308), 1, - anon_sym_ATendphp, - [207191] = 1, + anon_sym_ATendPushOnce, + [201467] = 1, ACTIONS(14310), 1, - anon_sym_RPAREN, - [207195] = 1, + anon_sym_ATendfragment, + [201471] = 1, ACTIONS(14312), 1, - anon_sym_ATendif, - [207199] = 1, + anon_sym_ATendphp, + [201475] = 1, ACTIONS(14314), 1, - anon_sym_ATendsetup, - [207203] = 1, + anon_sym_BANG_BANG_RBRACE, + [201479] = 1, ACTIONS(14316), 1, - anon_sym_ATendforelse, - [207207] = 1, + anon_sym_RBRACE_RBRACE, + [201483] = 1, ACTIONS(14318), 1, - anon_sym_BANG_BANG_RBRACE, - [207211] = 1, + anon_sym_ATendPushIf, + [201487] = 1, ACTIONS(14320), 1, - anon_sym_ATendwhile, - [207215] = 1, + anon_sym_ATendprepend, + [201491] = 1, ACTIONS(14322), 1, - anon_sym_ATendforelse, - [207219] = 1, + anon_sym_ATendPrependOnce, + [201495] = 1, ACTIONS(14324), 1, - anon_sym_ATendpersist, - [207223] = 1, + anon_sym_ATendif, + [201499] = 1, ACTIONS(14326), 1, - anon_sym_ATendteleport, - [207227] = 1, + anon_sym_ATenderror, + [201503] = 1, ACTIONS(14328), 1, - anon_sym_RBRACE_RBRACE, - [207231] = 1, + anon_sym_ATendunless, + [201507] = 1, ACTIONS(14330), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207235] = 1, + anon_sym_ATendisset, + [201511] = 1, ACTIONS(14332), 1, - anon_sym_ATendPushIf, - [207239] = 1, + anon_sym_ATendempty, + [201515] = 1, ACTIONS(14334), 1, - anon_sym_ATendvolt, - [207243] = 1, + anon_sym_ATendPushIf, + [201519] = 1, ACTIONS(14336), 1, - anon_sym_RPAREN, - [207247] = 1, + anon_sym_ATendguest, + [201523] = 1, ACTIONS(14338), 1, - anon_sym_ATendforeach, - [207251] = 1, + anon_sym_RPAREN, + [201527] = 1, ACTIONS(14340), 1, - anon_sym_RBRACE_RBRACE, - [207255] = 1, + anon_sym_ATendenv, + [201531] = 1, ACTIONS(14342), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207259] = 1, + anon_sym_ATendif, + [201535] = 1, ACTIONS(14344), 1, - anon_sym_ATendfor, - [207263] = 1, - ACTIONS(11697), 1, - anon_sym_RPAREN, - [207267] = 1, - ACTIONS(11705), 1, + anon_sym_ATendif, + [201539] = 1, + ACTIONS(12249), 1, anon_sym_RPAREN, - [207271] = 1, + [201543] = 1, ACTIONS(14346), 1, - anon_sym_RBRACE_RBRACE, - [207275] = 1, + anon_sym_ATendPrependOnce, + [201547] = 1, ACTIONS(14348), 1, - aux_sym__custom_token3, - [207279] = 1, + anon_sym_ATendprepend, + [201551] = 1, ACTIONS(14350), 1, - anon_sym_ATendfeature, - [207283] = 1, + anon_sym_ATendPushIf, + [201555] = 1, ACTIONS(14352), 1, - anon_sym_ATendcanany, - [207287] = 1, + anon_sym_ATenderror, + [201559] = 1, ACTIONS(14354), 1, - anon_sym_ATendcannot, - [207291] = 1, + anon_sym_ATendcan, + [201563] = 1, ACTIONS(14356), 1, - anon_sym_BANG_BANG_RBRACE, - [207295] = 1, + anon_sym_ATendcannot, + [201567] = 1, ACTIONS(14358), 1, - anon_sym_ATendpersist, - [207299] = 1, + anon_sym_ATendcanany, + [201571] = 1, ACTIONS(14360), 1, anon_sym_ATendvolt, - [207303] = 1, + [201575] = 1, ACTIONS(14362), 1, anon_sym_ATendteleport, - [207307] = 1, + [201579] = 1, ACTIONS(14364), 1, anon_sym_ATendpersist, - [207311] = 1, + [201583] = 1, ACTIONS(14366), 1, - anon_sym_ATendwhile, - [207315] = 1, + anon_sym_ATendfeature, + [201587] = 1, ACTIONS(14368), 1, - anon_sym_ATendphp, - [207319] = 1, + aux_sym__custom_token3, + [201591] = 1, ACTIONS(14370), 1, - anon_sym_ATendif, - [207323] = 1, + anon_sym_ATendfor, + [201595] = 1, ACTIONS(14372), 1, - anon_sym_BANG_BANG_RBRACE, - [207327] = 1, + anon_sym_ATendstory, + [201599] = 1, ACTIONS(14374), 1, - anon_sym_ATendcan, - [207331] = 1, + anon_sym_ATendtask, + [201603] = 1, ACTIONS(14376), 1, - anon_sym_ATendphp, - [207335] = 1, + anon_sym_ATendsetup, + [201607] = 1, ACTIONS(14378), 1, - anon_sym_ATendstory, - [207339] = 1, + anon_sym_ATendwhile, + [201611] = 1, ACTIONS(14380), 1, - anon_sym_ATendtask, - [207343] = 1, + anon_sym_ATendforelse, + [201615] = 1, ACTIONS(14382), 1, - anon_sym_ATendsetup, - [207347] = 1, + anon_sym_ATendforeach, + [201619] = 1, ACTIONS(14384), 1, - anon_sym_ATendwhile, - [207351] = 1, + anon_sym_ATendfor, + [201623] = 1, ACTIONS(14386), 1, - anon_sym_ATendforelse, - [207355] = 1, + aux_sym__custom_token3, + [201627] = 1, ACTIONS(14388), 1, - anon_sym_ATendenv, - [207359] = 1, + anon_sym_ATendfeature, + [201631] = 1, ACTIONS(14390), 1, - anon_sym_ATendPrependOnce, - [207363] = 1, - ACTIONS(11797), 1, - anon_sym_RPAREN, - [207367] = 1, + anon_sym_ATendcanany, + [201635] = 1, ACTIONS(14392), 1, - anon_sym_ATendforeach, - [207371] = 1, + anon_sym_ATendcannot, + [201639] = 1, ACTIONS(14394), 1, - anon_sym_ATendfor, - [207375] = 1, + anon_sym_ATendcan, + [201643] = 1, ACTIONS(14396), 1, - anon_sym_ATendfragment, - [207379] = 1, + anon_sym_ATendforeach, + [201647] = 1, ACTIONS(14398), 1, - aux_sym__custom_token3, - [207383] = 1, + anon_sym_ATenderror, + [201651] = 1, ACTIONS(14400), 1, - anon_sym_ATendfeature, - [207387] = 1, + anon_sym_ATendif, + [201655] = 1, ACTIONS(14402), 1, - anon_sym_ATendcanany, - [207391] = 1, + anon_sym_ATendif, + [201659] = 1, ACTIONS(14404), 1, - anon_sym_ATendcannot, - [207395] = 1, + anon_sym_ATendenv, + [201663] = 1, ACTIONS(14406), 1, - anon_sym_ATendcan, - [207399] = 1, + anon_sym_ATendforelse, + [201667] = 1, ACTIONS(14408), 1, - anon_sym_ATendtask, - [207403] = 1, + anon_sym_ATendguest, + [201671] = 1, ACTIONS(14410), 1, - anon_sym_ATendfragment, - [207407] = 1, + anon_sym_ATendPushOnce, + [201675] = 1, ACTIONS(14412), 1, - anon_sym_ATenderror, - [207411] = 1, + anon_sym_ATendpush, + [201679] = 1, ACTIONS(14414), 1, anon_sym_ATendif, - [207415] = 1, + [201683] = 1, ACTIONS(14416), 1, - anon_sym_ATendif, - [207419] = 1, + anon_sym_ATendauth, + [201687] = 1, ACTIONS(14418), 1, - anon_sym_ATendenv, - [207423] = 1, + anon_sym_ATendempty, + [201691] = 1, ACTIONS(14420), 1, - anon_sym_ATendpush, - [207427] = 1, + anon_sym_ATendisset, + [201695] = 1, ACTIONS(14422), 1, - anon_sym_ATendguest, - [207431] = 1, + anon_sym_ATendunless, + [201699] = 1, ACTIONS(14424), 1, - anon_sym_ATendauth, - [207435] = 1, + anon_sym_ATendif, + [201703] = 1, ACTIONS(14426), 1, - anon_sym_ATendempty, - [207439] = 1, + anon_sym_ATendPrependOnce, + [201707] = 1, ACTIONS(14428), 1, - anon_sym_ATendpush, - [207443] = 1, + anon_sym_ATendprepend, + [201711] = 1, ACTIONS(14430), 1, - anon_sym_ATendstory, - [207447] = 1, + anon_sym_ATendPushIf, + [201715] = 1, ACTIONS(14432), 1, - anon_sym_ATendisset, - [207451] = 1, + anon_sym_ATendPushOnce, + [201719] = 1, ACTIONS(14434), 1, - anon_sym_ATendunless, - [207455] = 1, + anon_sym_ATendpush, + [201723] = 1, ACTIONS(14436), 1, - anon_sym_ATendif, - [207459] = 1, + anon_sym_ATendpersist, + [201727] = 1, ACTIONS(14438), 1, - anon_sym_ATendPrependOnce, - [207463] = 1, + anon_sym_ATendsetup, + [201731] = 1, ACTIONS(14440), 1, - anon_sym_ATendprepend, - [207467] = 1, + anon_sym_ATendfragment, + [201735] = 1, ACTIONS(14442), 1, - anon_sym_ATendPushIf, - [207471] = 1, + anon_sym_ATendphp, + [201739] = 1, ACTIONS(14444), 1, - anon_sym_ATendPushOnce, - [207475] = 1, + anon_sym_BANG_BANG_RBRACE, + [201743] = 1, ACTIONS(14446), 1, - anon_sym_ATendpush, - [207479] = 1, + anon_sym_RBRACE_RBRACE, + [201747] = 1, ACTIONS(14448), 1, - anon_sym_ATendPushOnce, - [207483] = 1, + anon_sym_ATendtask, + [201751] = 1, ACTIONS(14450), 1, - anon_sym_ATendif, - [207487] = 1, + anon_sym_ATendstory, + [201755] = 1, ACTIONS(14452), 1, - anon_sym_RPAREN, - [207491] = 1, + anon_sym_ATendif, + [201759] = 1, ACTIONS(14454), 1, - anon_sym_ATendunless, - [207495] = 1, + anon_sym_ATendpersist, + [201763] = 1, ACTIONS(14456), 1, - anon_sym_ATendPushIf, - [207499] = 1, + anon_sym_ATendteleport, + [201767] = 1, ACTIONS(14458), 1, - anon_sym_ATendfragment, - [207503] = 1, + anon_sym_ATendvolt, + [201771] = 1, + ACTIONS(12375), 1, + anon_sym_RPAREN, + [201775] = 1, ACTIONS(14460), 1, - anon_sym_ATendphp, - [207507] = 1, + anon_sym_RPAREN, + [201779] = 1, ACTIONS(14462), 1, - anon_sym_ATendfor, - [207511] = 1, + anon_sym_RPAREN, + [201783] = 1, + ACTIONS(12171), 1, + anon_sym_RPAREN, + [201787] = 1, ACTIONS(14464), 1, - anon_sym_BANG_BANG_RBRACE, - [207515] = 1, + anon_sym_ATendwhile, + [201791] = 1, ACTIONS(14466), 1, anon_sym_RBRACE_RBRACE, - [207519] = 1, + [201795] = 1, ACTIONS(14468), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207523] = 1, + anon_sym_BANG_BANG_RBRACE, + [201799] = 1, ACTIONS(14470), 1, - anon_sym_ATendprepend, - [207527] = 1, + anon_sym_ATendenv, + [201803] = 1, ACTIONS(14472), 1, - aux_sym__custom_token3, - [207531] = 1, + anon_sym_ATendguest, + [201807] = 1, ACTIONS(14474), 1, - anon_sym_ATendPrependOnce, - [207535] = 1, + anon_sym_ATendfragment, + [201811] = 1, ACTIONS(14476), 1, - anon_sym_ATendif, - [207539] = 1, + anon_sym_ATendvolt, + [201815] = 1, ACTIONS(14478), 1, - anon_sym_ATendunless, - [207543] = 1, + anon_sym_ATendteleport, + [201819] = 1, ACTIONS(14480), 1, - anon_sym_ATenderror, - [207547] = 1, + anon_sym_ATendpersist, + [201823] = 1, ACTIONS(14482), 1, - anon_sym_ATendisset, - [207551] = 1, + anon_sym_ATendphp, + [201827] = 1, ACTIONS(14484), 1, - anon_sym_ATendempty, - [207555] = 1, + anon_sym_ATendfragment, + [201831] = 1, ACTIONS(14486), 1, - anon_sym_ATendauth, - [207559] = 1, + anon_sym_ATendpush, + [201835] = 1, ACTIONS(14488), 1, - anon_sym_ATendfeature, - [207563] = 1, + anon_sym_ATendPushOnce, + [201839] = 1, ACTIONS(14490), 1, - anon_sym_RPAREN, - [207567] = 1, + anon_sym_ATendstory, + [201843] = 1, ACTIONS(14492), 1, - anon_sym_ATendisset, - [207571] = 1, + anon_sym_ATendtask, + [201847] = 1, ACTIONS(14494), 1, - anon_sym_ATendpersist, - [207575] = 1, + anon_sym_ATendsetup, + [201851] = 1, ACTIONS(14496), 1, - anon_sym_ATendif, - [207579] = 1, + anon_sym_ATendwhile, + [201855] = 1, ACTIONS(14498), 1, - anon_sym_ATendenv, - [207583] = 1, + anon_sym_ATendforelse, + [201859] = 1, ACTIONS(14500), 1, - anon_sym_ATendguest, - [207587] = 1, + anon_sym_ATendforeach, + [201863] = 1, ACTIONS(14502), 1, - anon_sym_ATendauth, - [207591] = 1, + anon_sym_ATendfor, + [201867] = 1, ACTIONS(14504), 1, - anon_sym_ATendguest, - [207595] = 1, + aux_sym__custom_token3, + [201871] = 1, ACTIONS(14506), 1, - anon_sym_RPAREN, - [207599] = 1, + anon_sym_ATendfeature, + [201875] = 1, ACTIONS(14508), 1, - anon_sym_ATendenv, - [207603] = 1, + anon_sym_ATendcanany, + [201879] = 1, ACTIONS(14510), 1, - anon_sym_ATendif, - [207607] = 1, + anon_sym_ATendcannot, + [201883] = 1, ACTIONS(14512), 1, - anon_sym_ATendwhile, - [207611] = 1, + anon_sym_ATendauth, + [201887] = 1, ACTIONS(14514), 1, - ts_builtin_sym_end, - [207615] = 1, + anon_sym_ATendcan, + [201891] = 1, ACTIONS(14516), 1, - anon_sym_ATendempty, - [207619] = 1, + anon_sym_ATendphp, + [201895] = 1, ACTIONS(14518), 1, anon_sym_ATenderror, - [207623] = 1, - ACTIONS(11689), 1, - anon_sym_RPAREN, - [207627] = 1, + [201899] = 1, ACTIONS(14520), 1, - anon_sym_ATendcan, - [207631] = 1, + anon_sym_ATendif, + [201903] = 1, ACTIONS(14522), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207635] = 1, + anon_sym_ATendif, + [201907] = 1, ACTIONS(14524), 1, - anon_sym_ATendcannot, - [207639] = 1, + anon_sym_ATendenv, + [201911] = 1, ACTIONS(14526), 1, - anon_sym_RBRACE_RBRACE, - [207643] = 1, + anon_sym_ATendprepend, + [201915] = 1, ACTIONS(14528), 1, - anon_sym_ATendcanany, - [207647] = 1, + anon_sym_ATendguest, + [201919] = 1, ACTIONS(14530), 1, - anon_sym_BANG_BANG_RBRACE, - [207651] = 1, + anon_sym_ATendauth, + [201923] = 1, ACTIONS(14532), 1, - anon_sym_ATendvolt, - [207655] = 1, + anon_sym_ATendempty, + [201927] = 1, ACTIONS(14534), 1, - anon_sym_ATendPushOnce, - [207659] = 1, + anon_sym_BANG_BANG_RBRACE, + [201931] = 1, ACTIONS(14536), 1, - anon_sym_ATendteleport, - [207663] = 1, + anon_sym_ATendisset, + [201935] = 1, ACTIONS(14538), 1, - anon_sym_ATendpersist, - [207667] = 1, + anon_sym_ATendphp, + [201939] = 1, ACTIONS(14540), 1, - anon_sym_ATendfeature, - [207671] = 1, + anon_sym_ATendisset, + [201943] = 1, ACTIONS(14542), 1, - aux_sym__custom_token3, - [207675] = 1, + anon_sym_ATendunless, + [201947] = 1, ACTIONS(14544), 1, - anon_sym_ATendphp, - [207679] = 1, + anon_sym_ATendif, + [201951] = 1, ACTIONS(14546), 1, - anon_sym_ATendfor, - [207683] = 1, + anon_sym_ATendPrependOnce, + [201955] = 1, ACTIONS(14548), 1, - anon_sym_ATendstory, - [207687] = 1, + anon_sym_ATendprepend, + [201959] = 1, ACTIONS(14550), 1, - anon_sym_ATendtask, - [207691] = 1, + anon_sym_ATendPushIf, + [201963] = 1, ACTIONS(14552), 1, - anon_sym_ATendsetup, - [207695] = 1, + anon_sym_ATendPushOnce, + [201967] = 1, ACTIONS(14554), 1, - anon_sym_ATendempty, - [207699] = 1, + anon_sym_ATendpush, + [201971] = 1, ACTIONS(14556), 1, - anon_sym_ATendPushIf, - [207703] = 1, + anon_sym_ATendPrependOnce, + [201975] = 1, ACTIONS(14558), 1, - anon_sym_ATendwhile, - [207707] = 1, + anon_sym_ATendif, + [201979] = 1, ACTIONS(14560), 1, - anon_sym_ATendforelse, - [207711] = 1, + anon_sym_ATendfragment, + [201983] = 1, ACTIONS(14562), 1, - anon_sym_ATendforeach, - [207715] = 1, + anon_sym_ATendif, + [201987] = 1, ACTIONS(14564), 1, - anon_sym_ATendfor, - [207719] = 1, + anon_sym_BANG_BANG_RBRACE, + [201991] = 1, ACTIONS(14566), 1, - anon_sym_ATendfragment, - [207723] = 1, + anon_sym_RBRACE_RBRACE, + [201995] = 1, ACTIONS(14568), 1, - aux_sym__custom_token3, - [207727] = 1, + anon_sym_ATendunless, + [201999] = 1, ACTIONS(14570), 1, - anon_sym_ATendfeature, - [207731] = 1, + anon_sym_ATendisset, + [202003] = 1, ACTIONS(14572), 1, - anon_sym_ATendcanany, - [207735] = 1, + anon_sym_ATendempty, + [202007] = 1, ACTIONS(14574), 1, - anon_sym_ATendcannot, - [207739] = 1, + anon_sym_ATendauth, + [202011] = 1, ACTIONS(14576), 1, - anon_sym_ATendcan, - [207743] = 1, - ACTIONS(11681), 1, - anon_sym_RPAREN, - [207747] = 1, + anon_sym_ATendunless, + [202015] = 1, ACTIONS(14578), 1, - anon_sym_ATendauth, - [207751] = 1, + anon_sym_ATendguest, + [202019] = 1, ACTIONS(14580), 1, - anon_sym_ATendforeach, - [207755] = 1, + anon_sym_ATendenv, + [202023] = 1, ACTIONS(14582), 1, - anon_sym_ATenderror, - [207759] = 1, - ACTIONS(14584), 1, anon_sym_ATendif, - [207763] = 1, + [202027] = 1, + ACTIONS(14584), 1, + anon_sym_RPAREN, + [202031] = 1, ACTIONS(14586), 1, anon_sym_ATendif, - [207767] = 1, + [202035] = 1, ACTIONS(14588), 1, - anon_sym_ATendenv, - [207771] = 1, + anon_sym_ATenderror, + [202039] = 1, ACTIONS(14590), 1, - anon_sym_ATendforelse, - [207775] = 1, + anon_sym_ATendcan, + [202043] = 1, ACTIONS(14592), 1, - anon_sym_ATendguest, - [207779] = 1, + anon_sym_ATendcannot, + [202047] = 1, ACTIONS(14594), 1, - anon_sym_ATendauth, - [207783] = 1, + anon_sym_ATendcanany, + [202051] = 1, + ACTIONS(12349), 1, + anon_sym_RPAREN, + [202055] = 1, ACTIONS(14596), 1, - anon_sym_ATendteleport, - [207787] = 1, + anon_sym_ATendif, + [202059] = 1, ACTIONS(14598), 1, - anon_sym_ATendempty, - [207791] = 1, + anon_sym_ATendfeature, + [202063] = 1, ACTIONS(14600), 1, - anon_sym_ATendisset, - [207795] = 1, + anon_sym_ATendPrependOnce, + [202067] = 1, ACTIONS(14602), 1, - anon_sym_ATendunless, - [207799] = 1, + aux_sym__custom_token3, + [202071] = 1, ACTIONS(14604), 1, - anon_sym_ATendif, - [207803] = 1, + anon_sym_ATendfor, + [202075] = 1, ACTIONS(14606), 1, - anon_sym_ATendPrependOnce, - [207807] = 1, + anon_sym_ATendvolt, + [202079] = 1, ACTIONS(14608), 1, - anon_sym_ATendprepend, - [207811] = 1, + anon_sym_ATendteleport, + [202083] = 1, ACTIONS(14610), 1, - anon_sym_ATendPushIf, - [207815] = 1, + anon_sym_ATendpersist, + [202087] = 1, ACTIONS(14612), 1, - anon_sym_ATendPushOnce, - [207819] = 1, + anon_sym_ATendforeach, + [202091] = 1, ACTIONS(14614), 1, - anon_sym_ATendpush, - [207823] = 1, + anon_sym_ATendforelse, + [202095] = 1, ACTIONS(14616), 1, - anon_sym_ATendguest, - [207827] = 1, + anon_sym_ATendwhile, + [202099] = 1, ACTIONS(14618), 1, - anon_sym_ATendprepend, - [207831] = 1, + anon_sym_ATendsetup, + [202103] = 1, ACTIONS(14620), 1, - anon_sym_BANG_BANG_RBRACE, - [207835] = 1, + anon_sym_ATendstory, + [202107] = 1, ACTIONS(14622), 1, - anon_sym_ATendsetup, - [207839] = 1, + anon_sym_ATendtask, + [202111] = 1, ACTIONS(14624), 1, - anon_sym_ATendfragment, - [207843] = 1, + anon_sym_ATendsetup, + [202115] = 1, ACTIONS(14626), 1, - anon_sym_ATendphp, - [207847] = 1, + anon_sym_ATendwhile, + [202119] = 1, ACTIONS(14628), 1, - anon_sym_ATendisset, - [207851] = 1, + anon_sym_ATendforelse, + [202123] = 1, ACTIONS(14630), 1, - anon_sym_BANG_BANG_RBRACE, - [207855] = 1, + anon_sym_ATendforeach, + [202127] = 1, ACTIONS(14632), 1, - anon_sym_RBRACE_RBRACE, - [207859] = 1, + anon_sym_ATendfor, + [202131] = 1, ACTIONS(14634), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207863] = 1, + aux_sym__custom_token3, + [202135] = 1, ACTIONS(14636), 1, - anon_sym_ATendtask, - [207867] = 1, + anon_sym_ATendfeature, + [202139] = 1, ACTIONS(14638), 1, - anon_sym_ATendstory, - [207871] = 1, + anon_sym_ATendprepend, + [202143] = 1, ACTIONS(14640), 1, - anon_sym_ATendphp, - [207875] = 1, + anon_sym_ATendcanany, + [202147] = 1, ACTIONS(14642), 1, - anon_sym_ATendpersist, - [207879] = 1, + anon_sym_ATendcannot, + [202151] = 1, ACTIONS(14644), 1, - anon_sym_ATendteleport, - [207883] = 1, + anon_sym_ATendcan, + [202155] = 1, ACTIONS(14646), 1, - anon_sym_ATendunless, - [207887] = 1, + anon_sym_ATenderror, + [202159] = 1, ACTIONS(14648), 1, - anon_sym_ATendvolt, - [207891] = 1, + anon_sym_ATendif, + [202163] = 1, ACTIONS(14650), 1, - anon_sym_ATendpush, - [207895] = 1, + anon_sym_ATendPushIf, + [202167] = 1, ACTIONS(14652), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [207899] = 1, + anon_sym_ATendif, + [202171] = 1, ACTIONS(14654), 1, - anon_sym_ATendwhile, - [207903] = 1, + anon_sym_ATendenv, + [202175] = 1, ACTIONS(14656), 1, - anon_sym_ATendPrependOnce, - [207907] = 1, + anon_sym_ATendstory, + [202179] = 1, ACTIONS(14658), 1, - anon_sym_ATendPushOnce, - [207911] = 1, + anon_sym_ATendguest, + [202183] = 1, ACTIONS(14660), 1, - anon_sym_ATendvolt, - [207915] = 1, + anon_sym_BANG_BANG_RBRACE, + [202187] = 1, ACTIONS(14662), 1, - anon_sym_RPAREN, - [207919] = 1, + anon_sym_ATendPushOnce, + [202191] = 1, ACTIONS(14664), 1, - anon_sym_ATendprepend, - [207923] = 1, + anon_sym_ATendauth, + [202195] = 1, ACTIONS(14666), 1, - anon_sym_ATendPrependOnce, - [207927] = 1, + anon_sym_ATendempty, + [202199] = 1, ACTIONS(14668), 1, - anon_sym_ATendif, - [207931] = 1, + anon_sym_ATendisset, + [202203] = 1, ACTIONS(14670), 1, - anon_sym_RPAREN, - [207935] = 1, - ACTIONS(14672), 1, anon_sym_ATendunless, - [207939] = 1, - ACTIONS(11679), 1, - anon_sym_RPAREN, - [207943] = 1, + [202207] = 1, + ACTIONS(14672), 1, + anon_sym_ATendif, + [202211] = 1, ACTIONS(14674), 1, - anon_sym_ATendisset, - [207947] = 1, + anon_sym_ATendPrependOnce, + [202215] = 1, ACTIONS(14676), 1, - anon_sym_ATendempty, - [207951] = 1, + anon_sym_ATendprepend, + [202219] = 1, ACTIONS(14678), 1, - anon_sym_ATendvolt, - [207955] = 1, + anon_sym_ATendPushIf, + [202223] = 1, ACTIONS(14680), 1, - anon_sym_ATendif, - [207959] = 1, + anon_sym_ATendPushOnce, + [202227] = 1, ACTIONS(14682), 1, - anon_sym_ATendauth, - [207963] = 1, - ACTIONS(11677), 1, - anon_sym_RPAREN, - [207967] = 1, + anon_sym_ATendpush, + [202231] = 1, ACTIONS(14684), 1, - anon_sym_RPAREN, - [207971] = 1, + anon_sym_ATendpersist, + [202235] = 1, ACTIONS(14686), 1, - anon_sym_ATendguest, - [207975] = 1, + anon_sym_ATendteleport, + [202239] = 1, ACTIONS(14688), 1, - anon_sym_ATendif, - [207979] = 1, + anon_sym_ATendfragment, + [202243] = 1, ACTIONS(14690), 1, - anon_sym_ATendenv, - [207983] = 1, + anon_sym_ATendphp, + [202247] = 1, ACTIONS(14692), 1, - anon_sym_ATendif, - [207987] = 1, + anon_sym_BANG_BANG_RBRACE, + [202251] = 1, ACTIONS(14694), 1, - anon_sym_ATendif, - [207991] = 1, + anon_sym_RBRACE_RBRACE, + [202255] = 1, ACTIONS(14696), 1, anon_sym_ATendvolt, - [207995] = 1, + [202259] = 1, + ACTIONS(12343), 1, + anon_sym_RPAREN, + [202263] = 1, ACTIONS(14698), 1, - anon_sym_ATendteleport, - [207999] = 1, + anon_sym_RPAREN, + [202267] = 1, ACTIONS(14700), 1, - anon_sym_ATendteleport, - [208003] = 1, + anon_sym_ATendpush, + [202271] = 1, ACTIONS(14702), 1, - anon_sym_ATendpersist, - [208007] = 1, + anon_sym_RPAREN, + [202275] = 1, ACTIONS(14704), 1, - anon_sym_ATenderror, - [208011] = 1, + anon_sym_RBRACE_RBRACE, + [202279] = 1, ACTIONS(14706), 1, - anon_sym_ATendPrependOnce, - [208015] = 1, + anon_sym_BANG_BANG_RBRACE, + [202283] = 1, ACTIONS(14708), 1, - anon_sym_ATendcanany, - [208019] = 1, + anon_sym_ATendphp, + [202287] = 1, + ACTIONS(12323), 1, + anon_sym_RPAREN, + [202291] = 1, ACTIONS(14710), 1, - anon_sym_ATendfeature, - [208023] = 1, + anon_sym_ATendfragment, + [202295] = 1, ACTIONS(14712), 1, - anon_sym_ATendstory, - [208027] = 1, + anon_sym_ATendpush, + [202299] = 1, ACTIONS(14714), 1, - anon_sym_ATendtask, - [208031] = 1, + anon_sym_ATendPushOnce, + [202303] = 1, ACTIONS(14716), 1, - anon_sym_ATendsetup, - [208035] = 1, + anon_sym_ATendPushIf, + [202307] = 1, ACTIONS(14718), 1, - anon_sym_ATendwhile, - [208039] = 1, + anon_sym_ATendvolt, + [202311] = 1, ACTIONS(14720), 1, - anon_sym_ATendPushOnce, - [208043] = 1, + anon_sym_RBRACE_RBRACE, + [202315] = 1, ACTIONS(14722), 1, - anon_sym_ATendforelse, - [208047] = 1, + anon_sym_ATendfragment, + [202319] = 1, ACTIONS(14724), 1, - anon_sym_ATendforeach, - [208051] = 1, + anon_sym_ATendphp, + [202323] = 1, ACTIONS(14726), 1, - anon_sym_ATendfor, - [208055] = 1, + anon_sym_ATendteleport, + [202327] = 1, ACTIONS(14728), 1, - anon_sym_ATendcan, - [208059] = 1, + anon_sym_ATendpersist, + [202331] = 1, ACTIONS(14730), 1, - aux_sym__custom_token3, - [208063] = 1, + anon_sym_ATendprepend, + [202335] = 1, ACTIONS(14732), 1, - anon_sym_ATendfeature, - [208067] = 1, + anon_sym_ATendPrependOnce, + [202339] = 1, ACTIONS(14734), 1, - anon_sym_ATendcanany, - [208071] = 1, + anon_sym_ATendif, + [202343] = 1, ACTIONS(14736), 1, - anon_sym_ATendcannot, - [208075] = 1, + anon_sym_ATendunless, + [202347] = 1, ACTIONS(14738), 1, - anon_sym_ATendcan, - [208079] = 1, + anon_sym_ATendstory, + [202351] = 1, ACTIONS(14740), 1, - anon_sym_ATendpersist, - [208083] = 1, + anon_sym_ATendtask, + [202355] = 1, ACTIONS(14742), 1, - anon_sym_ATendvolt, - [208087] = 1, + anon_sym_ATendsetup, + [202359] = 1, ACTIONS(14744), 1, - anon_sym_ATendcannot, - [208091] = 1, + anon_sym_ATendwhile, + [202363] = 1, ACTIONS(14746), 1, - anon_sym_ATenderror, - [208095] = 1, + anon_sym_ATendforelse, + [202367] = 1, ACTIONS(14748), 1, - anon_sym_ATendif, - [208099] = 1, + anon_sym_ATendforeach, + [202371] = 1, ACTIONS(14750), 1, - anon_sym_ATendif, - [208103] = 1, + anon_sym_ATendfor, + [202375] = 1, ACTIONS(14752), 1, - anon_sym_ATendenv, - [208107] = 1, + aux_sym__custom_token3, + [202379] = 1, ACTIONS(14754), 1, - anon_sym_ATendteleport, - [208111] = 1, + anon_sym_ATendfeature, + [202383] = 1, ACTIONS(14756), 1, - anon_sym_ATendguest, - [208115] = 1, + anon_sym_ATendcanany, + [202387] = 1, ACTIONS(14758), 1, - anon_sym_ATendauth, - [208119] = 1, + anon_sym_ATendcannot, + [202391] = 1, ACTIONS(14760), 1, - anon_sym_ATendempty, - [208123] = 1, + anon_sym_ATendcan, + [202395] = 1, ACTIONS(14762), 1, anon_sym_ATendisset, - [208127] = 1, + [202399] = 1, ACTIONS(14764), 1, - anon_sym_ATendunless, - [208131] = 1, + anon_sym_ATenderror, + [202403] = 1, ACTIONS(14766), 1, - anon_sym_ATendif, - [208135] = 1, + anon_sym_ATendguest, + [202407] = 1, ACTIONS(14768), 1, - anon_sym_ATendPrependOnce, - [208139] = 1, + anon_sym_ATendif, + [202411] = 1, ACTIONS(14770), 1, - anon_sym_ATendprepend, - [208143] = 1, + anon_sym_ATendenv, + [202415] = 1, ACTIONS(14772), 1, - anon_sym_ATendPushIf, - [208147] = 1, + anon_sym_ATendempty, + [202419] = 1, ACTIONS(14774), 1, - anon_sym_ATendPushOnce, - [208151] = 1, + anon_sym_ATendforeach, + [202423] = 1, ACTIONS(14776), 1, - anon_sym_ATendpush, - [208155] = 1, + anon_sym_ATendauth, + [202427] = 1, ACTIONS(14778), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208159] = 1, + anon_sym_ATendempty, + [202431] = 1, ACTIONS(14780), 1, - anon_sym_RBRACE_RBRACE, - [208163] = 1, + anon_sym_ATendisset, + [202435] = 1, ACTIONS(14782), 1, - anon_sym_ATendfragment, - [208167] = 1, + anon_sym_ATendunless, + [202439] = 1, ACTIONS(14784), 1, - anon_sym_ATendpersist, - [208171] = 1, + anon_sym_ATendif, + [202443] = 1, ACTIONS(14786), 1, - anon_sym_ATendphp, - [208175] = 1, + anon_sym_RBRACE_RBRACE, + [202447] = 1, ACTIONS(14788), 1, - anon_sym_ATendcanany, - [208179] = 1, + anon_sym_ATendPrependOnce, + [202451] = 1, ACTIONS(14790), 1, - anon_sym_BANG_BANG_RBRACE, - [208183] = 1, + anon_sym_ATendprepend, + [202455] = 1, ACTIONS(14792), 1, - anon_sym_RBRACE_RBRACE, - [208187] = 1, + anon_sym_ATendPushIf, + [202459] = 1, ACTIONS(14794), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208191] = 1, + anon_sym_ATendPushOnce, + [202463] = 1, ACTIONS(14796), 1, - anon_sym_ATendguest, - [208195] = 1, + anon_sym_ATendpush, + [202467] = 1, ACTIONS(14798), 1, - anon_sym_ATendfeature, - [208199] = 1, + anon_sym_ATendauth, + [202471] = 1, ACTIONS(14800), 1, - anon_sym_ATendphp, - [208203] = 1, + anon_sym_ATendguest, + [202475] = 1, ACTIONS(14802), 1, anon_sym_ATendfragment, - [208207] = 1, + [202479] = 1, ACTIONS(14804), 1, - anon_sym_ATendif, - [208211] = 1, + anon_sym_ATendphp, + [202483] = 1, ACTIONS(14806), 1, - anon_sym_ATendisset, - [208215] = 1, + anon_sym_BANG_BANG_RBRACE, + [202487] = 1, ACTIONS(14808), 1, - aux_sym__custom_token3, - [208219] = 1, + anon_sym_RBRACE_RBRACE, + [202491] = 1, ACTIONS(14810), 1, - anon_sym_ATendpush, - [208223] = 1, + anon_sym_ATendenv, + [202495] = 1, ACTIONS(14812), 1, - anon_sym_ATendPushOnce, - [208227] = 1, + anon_sym_ATendif, + [202499] = 1, ACTIONS(14814), 1, - anon_sym_ATendPushIf, - [208231] = 1, + anon_sym_ATendif, + [202503] = 1, ACTIONS(14816), 1, - anon_sym_ATendempty, - [208235] = 1, + anon_sym_ATenderror, + [202507] = 1, ACTIONS(14818), 1, - anon_sym_ATendauth, - [208239] = 1, + anon_sym_ATendcan, + [202511] = 1, ACTIONS(14820), 1, - anon_sym_ATendfor, - [208243] = 1, + anon_sym_ATendcannot, + [202515] = 1, ACTIONS(14822), 1, - anon_sym_ATendforeach, - [208247] = 1, + anon_sym_ATendcanany, + [202519] = 1, ACTIONS(14824), 1, - anon_sym_ATendforelse, - [208251] = 1, + anon_sym_ATendfeature, + [202523] = 1, ACTIONS(14826), 1, - anon_sym_ATendif, - [208255] = 1, + anon_sym_RPAREN, + [202527] = 1, ACTIONS(14828), 1, - anon_sym_ATendguest, - [208259] = 1, + aux_sym__custom_token3, + [202531] = 1, ACTIONS(14830), 1, - anon_sym_ATendwhile, - [208263] = 1, + anon_sym_ATendfor, + [202535] = 1, ACTIONS(14832), 1, - anon_sym_ATendstory, - [208267] = 1, - ACTIONS(14834), 1, + anon_sym_ATendforeach, + [202539] = 1, + ACTIONS(12307), 1, anon_sym_RPAREN, - [208271] = 1, + [202543] = 1, + ACTIONS(14834), 1, + anon_sym_ATendforelse, + [202547] = 1, ACTIONS(14836), 1, - anon_sym_ATendprepend, - [208275] = 1, + anon_sym_ATendwhile, + [202551] = 1, ACTIONS(14838), 1, - anon_sym_ATendPrependOnce, - [208279] = 1, + anon_sym_ATendsetup, + [202555] = 1, ACTIONS(14840), 1, - anon_sym_ATendif, - [208283] = 1, + anon_sym_ATendvolt, + [202559] = 1, ACTIONS(14842), 1, - anon_sym_ATendsetup, - [208287] = 1, + anon_sym_ATendteleport, + [202563] = 1, ACTIONS(14844), 1, - anon_sym_ATendunless, - [208291] = 1, - ACTIONS(11667), 1, - anon_sym_RPAREN, - [208295] = 1, + anon_sym_ATendpersist, + [202567] = 1, ACTIONS(14846), 1, anon_sym_ATendtask, - [208299] = 1, + [202571] = 1, ACTIONS(14848), 1, - anon_sym_ATendisset, - [208303] = 1, + anon_sym_ATendstory, + [202575] = 1, ACTIONS(14850), 1, - anon_sym_ATendtask, - [208307] = 1, + anon_sym_ATendpersist, + [202579] = 1, ACTIONS(14852), 1, - anon_sym_ATendempty, - [208311] = 1, + anon_sym_ATendtask, + [202583] = 1, ACTIONS(14854), 1, anon_sym_ATendstory, - [208315] = 1, + [202587] = 1, ACTIONS(14856), 1, - anon_sym_ATendauth, - [208319] = 1, + anon_sym_ATendtask, + [202591] = 1, ACTIONS(14858), 1, - anon_sym_ATendprepend, - [208323] = 1, + anon_sym_ATendsetup, + [202595] = 1, ACTIONS(14860), 1, - anon_sym_ATendvolt, - [208327] = 1, + anon_sym_ATendwhile, + [202599] = 1, ACTIONS(14862), 1, - anon_sym_ATendteleport, - [208331] = 1, + anon_sym_ATendforelse, + [202603] = 1, ACTIONS(14864), 1, - anon_sym_ATendpersist, - [208335] = 1, + anon_sym_ATendforeach, + [202607] = 1, ACTIONS(14866), 1, - anon_sym_ATendfeature, - [208339] = 1, + anon_sym_ATendfor, + [202611] = 1, ACTIONS(14868), 1, - anon_sym_ATendsetup, - [208343] = 1, + aux_sym__custom_token3, + [202615] = 1, ACTIONS(14870), 1, - anon_sym_ATendauth, - [208347] = 1, + anon_sym_ATendfeature, + [202619] = 1, ACTIONS(14872), 1, - anon_sym_ATendenv, - [208351] = 1, + anon_sym_ATendcanany, + [202623] = 1, ACTIONS(14874), 1, - anon_sym_ATendif, - [208355] = 1, + anon_sym_ATendcannot, + [202627] = 1, ACTIONS(14876), 1, - anon_sym_ATendif, - [208359] = 1, + anon_sym_ATendcan, + [202631] = 1, ACTIONS(14878), 1, - anon_sym_ATendstory, - [208363] = 1, + anon_sym_ATenderror, + [202635] = 1, ACTIONS(14880), 1, - anon_sym_ATendtask, - [208367] = 1, + anon_sym_ATendif, + [202639] = 1, ACTIONS(14882), 1, - anon_sym_ATendsetup, - [208371] = 1, + anon_sym_ATendif, + [202643] = 1, ACTIONS(14884), 1, - anon_sym_ATendwhile, - [208375] = 1, + anon_sym_ATendenv, + [202647] = 1, ACTIONS(14886), 1, - anon_sym_ATendforelse, - [208379] = 1, + anon_sym_ATendguest, + [202651] = 1, ACTIONS(14888), 1, - anon_sym_ATendforeach, - [208383] = 1, + anon_sym_ATendauth, + [202655] = 1, ACTIONS(14890), 1, - anon_sym_ATendfor, - [208387] = 1, + anon_sym_ATendempty, + [202659] = 1, ACTIONS(14892), 1, - anon_sym_ATendPushIf, - [208391] = 1, + anon_sym_ATendisset, + [202663] = 1, ACTIONS(14894), 1, - aux_sym__custom_token3, - [208395] = 1, + anon_sym_ATendunless, + [202667] = 1, ACTIONS(14896), 1, - anon_sym_ATendfeature, - [208399] = 1, + anon_sym_ATendif, + [202671] = 1, ACTIONS(14898), 1, - anon_sym_ATendcanany, - [208403] = 1, + anon_sym_ATendPrependOnce, + [202675] = 1, ACTIONS(14900), 1, - anon_sym_ATendcannot, - [208407] = 1, + anon_sym_ATendprepend, + [202679] = 1, ACTIONS(14902), 1, - anon_sym_ATendcan, - [208411] = 1, + anon_sym_ATendPushIf, + [202683] = 1, ACTIONS(14904), 1, - anon_sym_ATenderror, - [208415] = 1, + anon_sym_ATendPushOnce, + [202687] = 1, ACTIONS(14906), 1, - anon_sym_ATenderror, - [208419] = 1, + anon_sym_ATendpush, + [202691] = 1, ACTIONS(14908), 1, - anon_sym_ATendif, - [208423] = 1, + anon_sym_ATendteleport, + [202695] = 1, ACTIONS(14910), 1, - anon_sym_ATendif, - [208427] = 1, + anon_sym_RPAREN, + [202699] = 1, ACTIONS(14912), 1, - anon_sym_ATendif, - [208431] = 1, + ts_builtin_sym_end, + [202703] = 1, ACTIONS(14914), 1, - anon_sym_ATendenv, - [208435] = 1, + anon_sym_ATendfragment, + [202707] = 1, ACTIONS(14916), 1, - anon_sym_ATendcan, - [208439] = 1, + anon_sym_ATendphp, + [202711] = 1, ACTIONS(14918), 1, - anon_sym_ATendguest, - [208443] = 1, + anon_sym_BANG_BANG_RBRACE, + [202715] = 1, ACTIONS(14920), 1, - anon_sym_ATendauth, - [208447] = 1, + anon_sym_RBRACE_RBRACE, + [202719] = 1, ACTIONS(14922), 1, - anon_sym_ATendempty, - [208451] = 1, + anon_sym_RBRACE_RBRACE, + [202723] = 1, ACTIONS(14924), 1, - anon_sym_ATendisset, - [208455] = 1, + anon_sym_BANG_BANG_RBRACE, + [202727] = 1, ACTIONS(14926), 1, - anon_sym_ATendunless, - [208459] = 1, + anon_sym_ATendphp, + [202731] = 1, ACTIONS(14928), 1, - anon_sym_ATendif, - [208463] = 1, + anon_sym_RPAREN, + [202735] = 1, ACTIONS(14930), 1, - anon_sym_ATendsetup, - [208467] = 1, + anon_sym_ATendfragment, + [202739] = 1, ACTIONS(14932), 1, - anon_sym_ATendforelse, - [208471] = 1, + anon_sym_ATendpush, + [202743] = 1, ACTIONS(14934), 1, - anon_sym_ATendPrependOnce, - [208475] = 1, + anon_sym_ATendPushOnce, + [202747] = 1, ACTIONS(14936), 1, - anon_sym_ATendprepend, - [208479] = 1, - ACTIONS(14938), 1, anon_sym_ATendPushIf, - [208483] = 1, + [202751] = 1, + ACTIONS(14938), 1, + anon_sym_ATendprepend, + [202755] = 1, + ACTIONS(12245), 1, + anon_sym_RPAREN, + [202759] = 1, ACTIONS(14940), 1, - anon_sym_ATendPushOnce, - [208487] = 1, + anon_sym_ATendPrependOnce, + [202763] = 1, ACTIONS(14942), 1, - anon_sym_ATendpush, - [208491] = 1, + anon_sym_ATendif, + [202767] = 1, ACTIONS(14944), 1, - anon_sym_ATendcannot, - [208495] = 1, + anon_sym_ATendunless, + [202771] = 1, ACTIONS(14946), 1, - anon_sym_ATendPushIf, - [208499] = 1, + anon_sym_ATendisset, + [202775] = 1, ACTIONS(14948), 1, - anon_sym_ATendfragment, - [208503] = 1, + anon_sym_ATendvolt, + [202779] = 1, ACTIONS(14950), 1, - anon_sym_ATendphp, - [208507] = 1, + anon_sym_ATendteleport, + [202783] = 1, ACTIONS(14952), 1, - anon_sym_ATendpush, - [208511] = 1, + anon_sym_ATendpersist, + [202787] = 1, ACTIONS(14954), 1, - anon_sym_ATenderror, - [208515] = 1, + anon_sym_ATendempty, + [202791] = 1, ACTIONS(14956), 1, - anon_sym_BANG_BANG_RBRACE, - [208519] = 1, + anon_sym_ATendauth, + [202795] = 1, ACTIONS(14958), 1, - anon_sym_RBRACE_RBRACE, - [208523] = 1, + anon_sym_ATendguest, + [202799] = 1, ACTIONS(14960), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208527] = 1, + anon_sym_ATendenv, + [202803] = 1, ACTIONS(14962), 1, - anon_sym_ATendfeature, - [208531] = 1, + anon_sym_ATendstory, + [202807] = 1, ACTIONS(14964), 1, - aux_sym__custom_token3, - [208535] = 1, + anon_sym_ATendtask, + [202811] = 1, ACTIONS(14966), 1, - anon_sym_ATendpersist, - [208539] = 1, + anon_sym_ATendsetup, + [202815] = 1, ACTIONS(14968), 1, - anon_sym_ATendfor, - [208543] = 1, + anon_sym_ATendwhile, + [202819] = 1, ACTIONS(14970), 1, - anon_sym_ATendteleport, - [208547] = 1, + anon_sym_ATendforelse, + [202823] = 1, ACTIONS(14972), 1, - anon_sym_ATendforeach, - [208551] = 1, + anon_sym_ATendpush, + [202827] = 1, ACTIONS(14974), 1, - anon_sym_ATendforeach, - [208555] = 1, + anon_sym_ATendfor, + [202831] = 1, ACTIONS(14976), 1, - anon_sym_ATendforelse, - [208559] = 1, + aux_sym__custom_token3, + [202835] = 1, ACTIONS(14978), 1, - anon_sym_ATendwhile, - [208563] = 1, + anon_sym_ATendfeature, + [202839] = 1, ACTIONS(14980), 1, - anon_sym_ATendfor, - [208567] = 1, + anon_sym_ATendcanany, + [202843] = 1, ACTIONS(14982), 1, - anon_sym_ATendcan, - [208571] = 1, + anon_sym_ATendcannot, + [202847] = 1, ACTIONS(14984), 1, - anon_sym_ATendvolt, - [208575] = 1, + anon_sym_ATendcan, + [202851] = 1, ACTIONS(14986), 1, - anon_sym_ATendPushOnce, - [208579] = 1, + anon_sym_ATendif, + [202855] = 1, ACTIONS(14988), 1, - anon_sym_ATendfragment, - [208583] = 1, + anon_sym_ATenderror, + [202859] = 1, ACTIONS(14990), 1, - anon_sym_ATendsetup, - [208587] = 1, + anon_sym_ATendif, + [202863] = 1, ACTIONS(14992), 1, - anon_sym_RPAREN, - [208591] = 1, + anon_sym_ATendif, + [202867] = 1, ACTIONS(14994), 1, - anon_sym_ATendcanany, - [208595] = 1, + anon_sym_ATendenv, + [202871] = 1, ACTIONS(14996), 1, - aux_sym__custom_token3, - [208599] = 1, + anon_sym_ATendif, + [202875] = 1, ACTIONS(14998), 1, - anon_sym_ATendtask, - [208603] = 1, + anon_sym_ATendguest, + [202879] = 1, ACTIONS(15000), 1, - anon_sym_ATendstory, - [208607] = 1, - ACTIONS(11659), 1, - anon_sym_RPAREN, - [208611] = 1, + anon_sym_ATendauth, + [202883] = 1, ACTIONS(15002), 1, - anon_sym_ATendphp, - [208615] = 1, + anon_sym_ATendempty, + [202887] = 1, ACTIONS(15004), 1, - anon_sym_ATendcanany, - [208619] = 1, - ACTIONS(11661), 1, - anon_sym_RPAREN, - [208623] = 1, + anon_sym_ATendisset, + [202891] = 1, ACTIONS(15006), 1, - anon_sym_ATendteleport, - [208627] = 1, + anon_sym_ATendunless, + [202895] = 1, ACTIONS(15008), 1, - anon_sym_BANG_BANG_RBRACE, - [208631] = 1, + anon_sym_ATendif, + [202899] = 1, ACTIONS(15010), 1, - anon_sym_ATendvolt, - [208635] = 1, + anon_sym_ATendPrependOnce, + [202903] = 1, ACTIONS(15012), 1, - anon_sym_RBRACE_RBRACE, - [208639] = 1, + anon_sym_ATendprepend, + [202907] = 1, ACTIONS(15014), 1, - anon_sym_RPAREN, - [208643] = 1, + anon_sym_ATendPushIf, + [202911] = 1, ACTIONS(15016), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208647] = 1, + anon_sym_ATendPushOnce, + [202915] = 1, ACTIONS(15018), 1, - anon_sym_ATendvolt, - [208651] = 1, + anon_sym_ATendenv, + [202919] = 1, ACTIONS(15020), 1, - anon_sym_ATendteleport, - [208655] = 1, + anon_sym_ATenderror, + [202923] = 1, ACTIONS(15022), 1, - anon_sym_ATendpersist, - [208659] = 1, + anon_sym_ATendfragment, + [202927] = 1, ACTIONS(15024), 1, - anon_sym_ATendfeature, - [208663] = 1, + anon_sym_ATendphp, + [202931] = 1, ACTIONS(15026), 1, - anon_sym_ATendcanany, - [208667] = 1, - ACTIONS(11651), 1, - anon_sym_RPAREN, - [208671] = 1, + anon_sym_BANG_BANG_RBRACE, + [202935] = 1, ACTIONS(15028), 1, - anon_sym_ATendcannot, - [208675] = 1, + anon_sym_RBRACE_RBRACE, + [202939] = 1, ACTIONS(15030), 1, - anon_sym_ATendstory, - [208679] = 1, - ACTIONS(15032), 1, anon_sym_ATendcan, - [208683] = 1, + [202943] = 1, + ACTIONS(15032), 1, + anon_sym_ATendcannot, + [202947] = 1, ACTIONS(15034), 1, - anon_sym_ATendtask, - [208687] = 1, + anon_sym_ATendcanany, + [202951] = 1, ACTIONS(15036), 1, - anon_sym_ATendsetup, - [208691] = 1, + anon_sym_ATendfeature, + [202955] = 1, ACTIONS(15038), 1, - anon_sym_ATendwhile, - [208695] = 1, + aux_sym__custom_token3, + [202959] = 1, ACTIONS(15040), 1, - anon_sym_ATendforelse, - [208699] = 1, + anon_sym_ATendfor, + [202963] = 1, ACTIONS(15042), 1, anon_sym_ATendforeach, - [208703] = 1, + [202967] = 1, ACTIONS(15044), 1, - anon_sym_ATendfor, - [208707] = 1, + anon_sym_ATendforelse, + [202971] = 1, ACTIONS(15046), 1, - anon_sym_ATendenv, - [208711] = 1, + anon_sym_RPAREN, + [202975] = 1, ACTIONS(15048), 1, - aux_sym__custom_token3, - [208715] = 1, + anon_sym_ATendwhile, + [202979] = 1, ACTIONS(15050), 1, - anon_sym_ATendfeature, - [208719] = 1, + anon_sym_ATendsetup, + [202983] = 1, ACTIONS(15052), 1, - anon_sym_ATendstory, - [208723] = 1, + anon_sym_ATendvolt, + [202987] = 1, ACTIONS(15054), 1, - anon_sym_ATenderror, - [208727] = 1, + anon_sym_ATendtask, + [202991] = 1, ACTIONS(15056), 1, - anon_sym_ATendcanany, - [208731] = 1, + anon_sym_ATendstory, + [202995] = 1, + ACTIONS(12265), 1, + anon_sym_RPAREN, + [202999] = 1, + ACTIONS(12293), 1, + anon_sym_RPAREN, + [203003] = 1, ACTIONS(15058), 1, - anon_sym_ATendcannot, - [208735] = 1, + anon_sym_ATendteleport, + [203007] = 1, ACTIONS(15060), 1, - anon_sym_ATendcan, - [208739] = 1, + anon_sym_ATendvolt, + [203011] = 1, ACTIONS(15062), 1, - anon_sym_RPAREN, - [208743] = 1, + anon_sym_ATendvolt, + [203015] = 1, ACTIONS(15064), 1, - anon_sym_ATenderror, - [208747] = 1, + anon_sym_ATendteleport, + [203019] = 1, ACTIONS(15066), 1, - anon_sym_ATendif, - [208751] = 1, + anon_sym_ATendpersist, + [203023] = 1, + ACTIONS(12251), 1, + anon_sym_RPAREN, + [203027] = 1, ACTIONS(15068), 1, - anon_sym_ATendif, - [208755] = 1, + anon_sym_RPAREN, + [203031] = 1, ACTIONS(15070), 1, - anon_sym_ATendenv, - [208759] = 1, + anon_sym_ATendstory, + [203035] = 1, ACTIONS(15072), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208763] = 1, + anon_sym_ATendtask, + [203039] = 1, ACTIONS(15074), 1, - anon_sym_ATendguest, - [208767] = 1, + anon_sym_ATendsetup, + [203043] = 1, ACTIONS(15076), 1, - anon_sym_ATendif, - [208771] = 1, + anon_sym_ATendwhile, + [203047] = 1, ACTIONS(15078), 1, - anon_sym_ATendempty, - [208775] = 1, + anon_sym_ATendforelse, + [203051] = 1, ACTIONS(15080), 1, - anon_sym_ATendisset, - [208779] = 1, + anon_sym_ATendforeach, + [203055] = 1, ACTIONS(15082), 1, - anon_sym_ATendunless, - [208783] = 1, + anon_sym_ATendfor, + [203059] = 1, ACTIONS(15084), 1, - anon_sym_ATendif, - [208787] = 1, + aux_sym__custom_token3, + [203063] = 1, ACTIONS(15086), 1, - anon_sym_ATendPrependOnce, - [208791] = 1, + anon_sym_ATendfeature, + [203067] = 1, ACTIONS(15088), 1, - anon_sym_ATendprepend, - [208795] = 1, + anon_sym_ATendcanany, + [203071] = 1, ACTIONS(15090), 1, - anon_sym_ATendPushIf, - [208799] = 1, + anon_sym_ATendcannot, + [203075] = 1, ACTIONS(15092), 1, - anon_sym_ATendPushOnce, - [208803] = 1, + anon_sym_ATendcan, + [203079] = 1, ACTIONS(15094), 1, - anon_sym_ATendpush, - [208807] = 1, + anon_sym_ATenderror, + [203083] = 1, ACTIONS(15096), 1, anon_sym_ATendif, - [208811] = 1, + [203087] = 1, ACTIONS(15098), 1, - anon_sym_RBRACE_RBRACE, - [208815] = 1, + anon_sym_ATendif, + [203091] = 1, ACTIONS(15100), 1, - anon_sym_BANG_BANG_RBRACE, - [208819] = 1, + anon_sym_ATendenv, + [203095] = 1, ACTIONS(15102), 1, - anon_sym_ATendfragment, - [208823] = 1, + anon_sym_ATendguest, + [203099] = 1, ACTIONS(15104), 1, - anon_sym_ATendphp, - [208827] = 1, + anon_sym_ATendauth, + [203103] = 1, ACTIONS(15106), 1, - anon_sym_ATendphp, - [208831] = 1, + anon_sym_ATendempty, + [203107] = 1, ACTIONS(15108), 1, - anon_sym_BANG_BANG_RBRACE, - [208835] = 1, + anon_sym_ATendisset, + [203111] = 1, ACTIONS(15110), 1, - anon_sym_RBRACE_RBRACE, - [208839] = 1, + anon_sym_ATendunless, + [203115] = 1, ACTIONS(15112), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208843] = 1, + anon_sym_ATendif, + [203119] = 1, ACTIONS(15114), 1, - anon_sym_ATendfragment, - [208847] = 1, + anon_sym_ATendPrependOnce, + [203123] = 1, ACTIONS(15116), 1, - anon_sym_ATendtask, - [208851] = 1, + anon_sym_ATendprepend, + [203127] = 1, ACTIONS(15118), 1, - anon_sym_ATendenv, - [208855] = 1, + anon_sym_ATendPushIf, + [203131] = 1, ACTIONS(15120), 1, - anon_sym_ATendenv, - [208859] = 1, - ACTIONS(11787), 1, - anon_sym_RPAREN, - [208863] = 1, + anon_sym_ATendPushOnce, + [203135] = 1, ACTIONS(15122), 1, - anon_sym_RPAREN, - [208867] = 1, - ACTIONS(15124), 1, anon_sym_ATendpush, - [208871] = 1, + [203139] = 1, + ACTIONS(15124), 1, + anon_sym_ATendfragment, + [203143] = 1, ACTIONS(15126), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [208875] = 1, + anon_sym_ATendphp, + [203147] = 1, ACTIONS(15128), 1, - anon_sym_RBRACE_RBRACE, - [208879] = 1, - ACTIONS(15130), 1, anon_sym_BANG_BANG_RBRACE, - [208883] = 1, + [203151] = 1, + ACTIONS(15130), 1, + anon_sym_RBRACE_RBRACE, + [203155] = 1, ACTIONS(15132), 1, - anon_sym_ATendguest, - [208887] = 1, + anon_sym_RBRACE_RBRACE, + [203159] = 1, ACTIONS(15134), 1, - anon_sym_ATendauth, - [208891] = 1, + anon_sym_BANG_BANG_RBRACE, + [203163] = 1, ACTIONS(15136), 1, - anon_sym_ATendcannot, - [208895] = 1, + anon_sym_ATendphp, + [203167] = 1, ACTIONS(15138), 1, - anon_sym_ATendPushOnce, - [208899] = 1, + anon_sym_ATendfragment, + [203171] = 1, ACTIONS(15140), 1, - anon_sym_ATendPushIf, - [208903] = 1, + anon_sym_ATendpush, + [203175] = 1, ACTIONS(15142), 1, - anon_sym_ATendprepend, - [208907] = 1, + anon_sym_ATendPushOnce, + [203179] = 1, ACTIONS(15144), 1, - anon_sym_ATendPrependOnce, - [208911] = 1, + anon_sym_ATendPushIf, + [203183] = 1, ACTIONS(15146), 1, - anon_sym_ATendif, - [208915] = 1, - ACTIONS(15148), 1, anon_sym_RPAREN, - [208919] = 1, + [203187] = 1, + ACTIONS(15148), 1, + anon_sym_ATendprepend, + [203191] = 1, ACTIONS(15150), 1, - anon_sym_ATendphp, - [208923] = 1, + anon_sym_ATendPrependOnce, + [203195] = 1, ACTIONS(15152), 1, - anon_sym_ATendfragment, - [208927] = 1, + anon_sym_ATendif, + [203199] = 1, ACTIONS(15154), 1, - anon_sym_ATendpush, - [208931] = 1, - ACTIONS(15156), 1, anon_sym_ATendunless, - [208935] = 1, + [203203] = 1, + ACTIONS(15156), 1, + anon_sym_ATendisset, + [203207] = 1, + ACTIONS(12241), 1, + anon_sym_RPAREN, + [203211] = 1, ACTIONS(15158), 1, anon_sym_ATendempty, - [208939] = 1, + [203215] = 1, ACTIONS(15160), 1, - anon_sym_ATendPushOnce, - [208943] = 1, - ACTIONS(11641), 1, - anon_sym_RPAREN, - [208947] = 1, + anon_sym_ATendauth, + [203219] = 1, ACTIONS(15162), 1, - anon_sym_ATendPushIf, - [208951] = 1, + anon_sym_ATendguest, + [203223] = 1, ACTIONS(15164), 1, - anon_sym_ATendisset, - [208955] = 1, + anon_sym_RPAREN, + [203227] = 1, ACTIONS(15166), 1, - anon_sym_ATendempty, - [208959] = 1, + anon_sym_ATendvolt, + [203231] = 1, ACTIONS(15168), 1, - anon_sym_ATendauth, - [208963] = 1, + anon_sym_ATendteleport, + [203235] = 1, ACTIONS(15170), 1, - anon_sym_ATendprepend, - [208967] = 1, + anon_sym_ATendpersist, + [203239] = 1, ACTIONS(15172), 1, - anon_sym_ATendguest, - [208971] = 1, + anon_sym_ATendif, + [203243] = 1, ACTIONS(15174), 1, - anon_sym_ATendvolt, - [208975] = 1, + anon_sym_ATendif, + [203247] = 1, ACTIONS(15176), 1, - anon_sym_ATendteleport, - [208979] = 1, + anon_sym_ATenderror, + [203251] = 1, ACTIONS(15178), 1, - anon_sym_ATendisset, - [208983] = 1, + anon_sym_ATendcan, + [203255] = 1, ACTIONS(15180), 1, - anon_sym_ATendpersist, - [208987] = 1, + anon_sym_ATendstory, + [203259] = 1, ACTIONS(15182), 1, - anon_sym_ATendPrependOnce, - [208991] = 1, + anon_sym_ATendtask, + [203263] = 1, ACTIONS(15184), 1, - anon_sym_ATendif, - [208995] = 1, + anon_sym_ATendsetup, + [203267] = 1, ACTIONS(15186), 1, - anon_sym_ATendunless, - [208999] = 1, + anon_sym_ATendwhile, + [203271] = 1, ACTIONS(15188), 1, - anon_sym_ATendisset, - [209003] = 1, + anon_sym_ATendforelse, + [203275] = 1, ACTIONS(15190), 1, - anon_sym_ATendstory, - [209007] = 1, + anon_sym_ATendforeach, + [203279] = 1, ACTIONS(15192), 1, - anon_sym_ATendtask, - [209011] = 1, + anon_sym_ATendfor, + [203283] = 1, ACTIONS(15194), 1, - anon_sym_ATendsetup, - [209015] = 1, + aux_sym__custom_token3, + [203287] = 1, ACTIONS(15196), 1, - anon_sym_ATendwhile, - [209019] = 1, + anon_sym_ATendfeature, + [203291] = 1, ACTIONS(15198), 1, - anon_sym_ATendforelse, - [209023] = 1, + anon_sym_ATendcanany, + [203295] = 1, ACTIONS(15200), 1, - anon_sym_LPAREN, - [209027] = 1, + anon_sym_ATendcannot, + [203299] = 1, ACTIONS(15202), 1, - anon_sym_ATendforeach, - [209031] = 1, + anon_sym_ATendcan, + [203303] = 1, ACTIONS(15204), 1, - anon_sym_ATendfor, - [209035] = 1, + anon_sym_ATendcannot, + [203307] = 1, ACTIONS(15206), 1, - anon_sym_ATendempty, - [209039] = 1, + anon_sym_ATenderror, + [203311] = 1, ACTIONS(15208), 1, - aux_sym__custom_token3, - [209043] = 1, + anon_sym_ATendif, + [203315] = 1, ACTIONS(15210), 1, - anon_sym_ATendfeature, - [209047] = 1, + anon_sym_ATendif, + [203319] = 1, ACTIONS(15212), 1, - anon_sym_ATendcanany, - [209051] = 1, + anon_sym_ATendenv, + [203323] = 1, ACTIONS(15214), 1, - anon_sym_ATendcannot, - [209055] = 1, + anon_sym_ATendcanany, + [203327] = 1, ACTIONS(15216), 1, - anon_sym_ATendcan, - [209059] = 1, + anon_sym_ATendguest, + [203331] = 1, ACTIONS(15218), 1, - anon_sym_ATendpersist, - [209063] = 1, + anon_sym_ATendauth, + [203335] = 1, ACTIONS(15220), 1, - anon_sym_ATendunless, - [209067] = 1, + anon_sym_ATendempty, + [203339] = 1, ACTIONS(15222), 1, - anon_sym_ATenderror, - [209071] = 1, + anon_sym_ATendisset, + [203343] = 1, ACTIONS(15224), 1, - anon_sym_ATendif, - [209075] = 1, + anon_sym_ATendunless, + [203347] = 1, ACTIONS(15226), 1, anon_sym_ATendif, - [209079] = 1, + [203351] = 1, ACTIONS(15228), 1, - anon_sym_ATendenv, - [209083] = 1, + anon_sym_ATendPrependOnce, + [203355] = 1, ACTIONS(15230), 1, - anon_sym_ATendauth, - [209087] = 1, + anon_sym_ATendprepend, + [203359] = 1, ACTIONS(15232), 1, - anon_sym_ATendguest, - [209091] = 1, + anon_sym_ATendPushIf, + [203363] = 1, ACTIONS(15234), 1, - anon_sym_ATendauth, - [209095] = 1, + anon_sym_ATendPushOnce, + [203367] = 1, ACTIONS(15236), 1, - anon_sym_ATendempty, - [209099] = 1, + anon_sym_ATendpush, + [203371] = 1, ACTIONS(15238), 1, - anon_sym_ATendisset, - [209103] = 1, + anon_sym_ATendfeature, + [203375] = 1, ACTIONS(15240), 1, - anon_sym_ATendwhile, - [209107] = 1, + aux_sym__custom_token3, + [203379] = 1, ACTIONS(15242), 1, - anon_sym_ATendif, - [209111] = 1, + anon_sym_ATendfragment, + [203383] = 1, ACTIONS(15244), 1, - anon_sym_ATendunless, - [209115] = 1, + anon_sym_ATendphp, + [203387] = 1, ACTIONS(15246), 1, - anon_sym_ATendif, - [209119] = 1, + anon_sym_BANG_BANG_RBRACE, + [203391] = 1, ACTIONS(15248), 1, - anon_sym_ATendPrependOnce, - [209123] = 1, + anon_sym_RBRACE_RBRACE, + [203395] = 1, ACTIONS(15250), 1, - anon_sym_ATendprepend, - [209127] = 1, + anon_sym_ATendfor, + [203399] = 1, ACTIONS(15252), 1, - anon_sym_ATendPushIf, - [209131] = 1, + anon_sym_ATendforeach, + [203403] = 1, ACTIONS(15254), 1, - anon_sym_ATendPushOnce, - [209135] = 1, + anon_sym_ATendforelse, + [203407] = 1, ACTIONS(15256), 1, - anon_sym_ATendpush, - [209139] = 1, + anon_sym_ATendwhile, + [203411] = 1, ACTIONS(15258), 1, - anon_sym_ATendguest, - [209143] = 1, + anon_sym_ATendsetup, + [203415] = 1, ACTIONS(15260), 1, - anon_sym_ATendenv, - [209147] = 1, + anon_sym_ATendpersist, + [203419] = 1, ACTIONS(15262), 1, - anon_sym_ATendPrependOnce, - [209151] = 1, + anon_sym_ATendstory, + [203423] = 1, ACTIONS(15264), 1, - anon_sym_ATendprepend, - [209155] = 1, + anon_sym_ATendpersist, + [203427] = 1, ACTIONS(15266), 1, - anon_sym_ATendforelse, - [209159] = 1, + anon_sym_ATendisset, + [203431] = 1, ACTIONS(15268), 1, - anon_sym_ATendfragment, - [209163] = 1, + anon_sym_ATendteleport, + [203435] = 1, ACTIONS(15270), 1, - anon_sym_ATendphp, - [209167] = 1, + anon_sym_ATendvolt, + [203439] = 1, + ACTIONS(12215), 1, + anon_sym_RPAREN, + [203443] = 1, + ACTIONS(12221), 1, + anon_sym_RPAREN, + [203447] = 1, ACTIONS(15272), 1, - anon_sym_BANG_BANG_RBRACE, - [209171] = 1, + anon_sym_RPAREN, + [203451] = 1, ACTIONS(15274), 1, - anon_sym_RBRACE_RBRACE, - [209175] = 1, + anon_sym_ATendvolt, + [203455] = 1, ACTIONS(15276), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - [209179] = 1, + anon_sym_ATendteleport, + [203459] = 1, ACTIONS(15278), 1, - anon_sym_ATendif, - [209183] = 1, + anon_sym_ATendpersist, + [203463] = 1, ACTIONS(15280), 1, - anon_sym_ATendif, - [209187] = 1, + anon_sym_RBRACE_RBRACE, + [203467] = 1, ACTIONS(15282), 1, - anon_sym_ATenderror, - [209191] = 1, + anon_sym_ATendstory, + [203471] = 1, ACTIONS(15284), 1, - anon_sym_ATendPushIf, - [209195] = 1, + anon_sym_ATendtask, + [203475] = 1, ACTIONS(15286), 1, - anon_sym_ATendcan, - [209199] = 1, + anon_sym_ATendsetup, + [203479] = 1, ACTIONS(15288), 1, - anon_sym_ATenderror, - [209203] = 1, + anon_sym_ATendwhile, + [203483] = 1, ACTIONS(15290), 1, - aux_sym__custom_token3, - [209207] = 1, + anon_sym_ATendforelse, + [203487] = 1, ACTIONS(15292), 1, - anon_sym_ATendPushOnce, - [209211] = 1, + anon_sym_ATendforeach, + [203491] = 1, ACTIONS(15294), 1, - anon_sym_ATendpush, - [209215] = 1, - ACTIONS(15296), 1, anon_sym_ATendfor, - [209219] = 1, + [203495] = 1, + ACTIONS(15296), 1, + aux_sym__custom_token3, + [203499] = 1, ACTIONS(15298), 1, - anon_sym_RPAREN, - [209223] = 1, + anon_sym_ATendfeature, + [203503] = 1, ACTIONS(15300), 1, - anon_sym_ATendforeach, - [209227] = 1, + anon_sym_ATendcanany, + [203507] = 1, ACTIONS(15302), 1, - anon_sym_ATendforelse, - [209231] = 1, + anon_sym_ATendcannot, + [203511] = 1, ACTIONS(15304), 1, - anon_sym_ATendforeach, - [209235] = 1, + anon_sym_ATendcan, + [203515] = 1, ACTIONS(15306), 1, - anon_sym_ATendif, - [209239] = 1, + anon_sym_BANG_BANG_RBRACE, + [203519] = 1, ACTIONS(15308), 1, - anon_sym_ATendwhile, - [209243] = 1, + anon_sym_ATenderror, + [203523] = 1, ACTIONS(15310), 1, - anon_sym_ATendsetup, - [209247] = 1, - ACTIONS(11631), 1, - anon_sym_RPAREN, - [209251] = 1, + anon_sym_ATendif, + [203527] = 1, ACTIONS(15312), 1, - anon_sym_ATendtask, - [209255] = 1, + anon_sym_ATendif, + [203531] = 1, ACTIONS(15314), 1, - anon_sym_ATendstory, - [209259] = 1, + anon_sym_ATendenv, + [203535] = 1, ACTIONS(15316), 1, - anon_sym_ATendpersist, - [209263] = 1, + anon_sym_ATendguest, + [203539] = 1, ACTIONS(15318), 1, - anon_sym_ATendvolt, - [209267] = 1, + anon_sym_ATendauth, + [203543] = 1, ACTIONS(15320), 1, - anon_sym_ATendteleport, - [209271] = 1, + anon_sym_ATendempty, + [203547] = 1, ACTIONS(15322), 1, - anon_sym_ATendpersist, - [209275] = 1, + anon_sym_ATendisset, + [203551] = 1, ACTIONS(15324), 1, - anon_sym_ATendfor, - [209279] = 1, + anon_sym_ATendunless, + [203555] = 1, ACTIONS(15326), 1, - aux_sym__custom_token3, - [209283] = 1, + anon_sym_ATendif, + [203559] = 1, ACTIONS(15328), 1, - anon_sym_ATendfeature, - [209287] = 1, + anon_sym_ATendPrependOnce, + [203563] = 1, ACTIONS(15330), 1, - anon_sym_ATendteleport, - [209291] = 1, + anon_sym_ATendprepend, + [203567] = 1, ACTIONS(15332), 1, - anon_sym_ATendvolt, - [209295] = 1, + anon_sym_ATendPushIf, + [203571] = 1, ACTIONS(15334), 1, - anon_sym_ATendstory, - [209299] = 1, + anon_sym_ATendPushOnce, + [203575] = 1, ACTIONS(15336), 1, - anon_sym_ATendtask, - [209303] = 1, + anon_sym_ATendpush, + [203579] = 1, ACTIONS(15338), 1, - anon_sym_ATendsetup, - [209307] = 1, + anon_sym_ATendphp, + [203583] = 1, ACTIONS(15340), 1, - anon_sym_ATendwhile, - [209311] = 1, + anon_sym_ATendfragment, + [203587] = 1, ACTIONS(15342), 1, - anon_sym_ATendforelse, - [209315] = 1, + anon_sym_ATendfragment, + [203591] = 1, ACTIONS(15344), 1, - anon_sym_ATendforeach, - [209319] = 1, + anon_sym_ATendphp, + [203595] = 1, ACTIONS(15346), 1, - anon_sym_ATendfragment, - [209323] = 1, + anon_sym_BANG_BANG_RBRACE, + [203599] = 1, ACTIONS(15348), 1, - anon_sym_ATendfor, - [209327] = 1, + anon_sym_RBRACE_RBRACE, + [203603] = 1, ACTIONS(15350), 1, - aux_sym__custom_token3, - [209331] = 1, + anon_sym_ATendpush, + [203607] = 1, ACTIONS(15352), 1, - anon_sym_ATendfeature, - [209335] = 1, + anon_sym_ATendPushOnce, + [203611] = 1, ACTIONS(15354), 1, - anon_sym_ATendcanany, - [209339] = 1, + anon_sym_ATendPushIf, + [203615] = 1, ACTIONS(15356), 1, - anon_sym_ATendcannot, - [209343] = 1, + anon_sym_ATendprepend, + [203619] = 1, ACTIONS(15358), 1, - anon_sym_ATendcan, - [209347] = 1, + anon_sym_ATendPrependOnce, + [203623] = 1, ACTIONS(15360), 1, - anon_sym_ATenderror, - [209351] = 1, - ACTIONS(15362), 1, anon_sym_ATendif, - [209355] = 1, + [203627] = 1, + ACTIONS(15362), 1, + anon_sym_ATendunless, + [203631] = 1, ACTIONS(15364), 1, - anon_sym_ATendif, - [209359] = 1, + anon_sym_ATendforeach, + [203635] = 1, ACTIONS(15366), 1, - anon_sym_ATendcanany, - [209363] = 1, + anon_sym_ATendempty, + [203639] = 1, ACTIONS(15368), 1, - anon_sym_ATendphp, - [209367] = 1, + anon_sym_RPAREN, + [203643] = 1, ACTIONS(15370), 1, - anon_sym_LPAREN, - [209371] = 1, + anon_sym_ATendauth, + [203647] = 1, ACTIONS(15372), 1, - anon_sym_LPAREN, - [209375] = 1, + anon_sym_ATendguest, + [203651] = 1, ACTIONS(15374), 1, - anon_sym_LPAREN, - [209379] = 1, + anon_sym_ATendenv, + [203655] = 1, ACTIONS(15376), 1, - anon_sym_LPAREN, - [209383] = 1, + anon_sym_ATendif, + [203659] = 1, ACTIONS(15378), 1, - anon_sym_LPAREN, - [209387] = 1, + anon_sym_ATendif, + [203663] = 1, + ACTIONS(12197), 1, + anon_sym_RPAREN, + [203667] = 1, ACTIONS(15380), 1, - anon_sym_LPAREN, - [209391] = 1, + anon_sym_ATenderror, + [203671] = 1, ACTIONS(15382), 1, - anon_sym_LPAREN, - [209395] = 1, + anon_sym_ATendcan, + [203675] = 1, ACTIONS(15384), 1, - anon_sym_LPAREN, - [209399] = 1, + anon_sym_ATendcannot, + [203679] = 1, ACTIONS(15386), 1, - anon_sym_LPAREN, - [209403] = 1, + anon_sym_ATendcanany, + [203683] = 1, ACTIONS(15388), 1, - anon_sym_LPAREN, - [209407] = 1, + anon_sym_ATendvolt, + [203687] = 1, ACTIONS(15390), 1, - anon_sym_LPAREN, - [209411] = 1, + anon_sym_ATendteleport, + [203691] = 1, ACTIONS(15392), 1, - anon_sym_LPAREN, - [209415] = 1, + anon_sym_ATendpersist, + [203695] = 1, ACTIONS(15394), 1, - anon_sym_LPAREN, - [209419] = 1, + anon_sym_ATendfeature, + [203699] = 1, ACTIONS(15396), 1, - anon_sym_LPAREN, - [209423] = 1, + aux_sym__custom_token3, + [203703] = 1, ACTIONS(15398), 1, - anon_sym_LPAREN, - [209427] = 1, + anon_sym_ATendfor, + [203707] = 1, ACTIONS(15400), 1, - anon_sym_LPAREN, - [209431] = 1, + anon_sym_ATendstory, + [203711] = 1, ACTIONS(15402), 1, - anon_sym_LPAREN, - [209435] = 1, + anon_sym_ATendtask, + [203715] = 1, ACTIONS(15404), 1, - anon_sym_LPAREN, - [209439] = 1, + anon_sym_ATendsetup, + [203719] = 1, ACTIONS(15406), 1, - anon_sym_LPAREN, - [209443] = 1, + anon_sym_ATendwhile, + [203723] = 1, ACTIONS(15408), 1, - anon_sym_LPAREN, - [209447] = 1, + anon_sym_ATendforelse, + [203727] = 1, ACTIONS(15410), 1, - anon_sym_LPAREN, - [209451] = 1, + anon_sym_ATendforeach, + [203731] = 1, ACTIONS(15412), 1, - anon_sym_LPAREN, - [209455] = 1, + anon_sym_ATendfor, + [203735] = 1, ACTIONS(15414), 1, - anon_sym_LPAREN, - [209459] = 1, + aux_sym__custom_token3, + [203739] = 1, ACTIONS(15416), 1, - anon_sym_LPAREN, - [209463] = 1, + anon_sym_ATendfeature, + [203743] = 1, ACTIONS(15418), 1, - anon_sym_LPAREN, - [209467] = 1, + anon_sym_ATendcanany, + [203747] = 1, ACTIONS(15420), 1, - anon_sym_LPAREN, - [209471] = 1, + anon_sym_ATendcannot, + [203751] = 1, ACTIONS(15422), 1, - anon_sym_LPAREN, - [209475] = 1, + anon_sym_ATendcan, + [203755] = 1, ACTIONS(15424), 1, - anon_sym_LPAREN, - [209479] = 1, + anon_sym_ATendforeach, + [203759] = 1, ACTIONS(15426), 1, - anon_sym_LPAREN, - [209483] = 1, + anon_sym_ATenderror, + [203763] = 1, ACTIONS(15428), 1, - anon_sym_LPAREN, - [209487] = 1, + anon_sym_ATendif, + [203767] = 1, ACTIONS(15430), 1, - anon_sym_LPAREN, - [209491] = 1, + anon_sym_ATendif, + [203771] = 1, ACTIONS(15432), 1, - anon_sym_LPAREN, - [209495] = 1, + anon_sym_ATendenv, + [203775] = 1, ACTIONS(15434), 1, - anon_sym_LPAREN, - [209499] = 1, + anon_sym_ATendforelse, + [203779] = 1, ACTIONS(15436), 1, + anon_sym_ATendguest, + [203783] = 1, + ACTIONS(15438), 1, + anon_sym_ATendauth, + [203787] = 1, + ACTIONS(15440), 1, + anon_sym_ATendempty, + [203791] = 1, + ACTIONS(15442), 1, + anon_sym_ATendisset, + [203795] = 1, + ACTIONS(15444), 1, + anon_sym_ATendunless, + [203799] = 1, + ACTIONS(15446), 1, + anon_sym_ATendif, + [203803] = 1, + ACTIONS(15448), 1, + anon_sym_ATendPrependOnce, + [203807] = 1, + ACTIONS(15450), 1, + anon_sym_ATendprepend, + [203811] = 1, + ACTIONS(15452), 1, + anon_sym_ATendPushIf, + [203815] = 1, + ACTIONS(15454), 1, + anon_sym_ATendPushOnce, + [203819] = 1, + ACTIONS(15456), 1, + anon_sym_ATendpush, + [203823] = 1, + ACTIONS(15458), 1, + anon_sym_ATendwhile, + [203827] = 1, + ACTIONS(15460), 1, + anon_sym_ATendtask, + [203831] = 1, + ACTIONS(15462), 1, + anon_sym_ATendfragment, + [203835] = 1, + ACTIONS(15464), 1, + anon_sym_ATendphp, + [203839] = 1, + ACTIONS(15466), 1, + anon_sym_BANG_BANG_RBRACE, + [203843] = 1, + ACTIONS(15468), 1, + anon_sym_RBRACE_RBRACE, + [203847] = 1, + ACTIONS(15470), 1, + anon_sym_ATendtask, + [203851] = 1, + ACTIONS(15472), 1, + anon_sym_ATendstory, + [203855] = 1, + ACTIONS(15474), 1, + anon_sym_ATendpersist, + [203859] = 1, + ACTIONS(15476), 1, + anon_sym_ATendteleport, + [203863] = 1, + ACTIONS(15478), 1, + anon_sym_ATendvolt, + [203867] = 1, + ACTIONS(12175), 1, + anon_sym_RPAREN, + [203871] = 1, + ACTIONS(15480), 1, + anon_sym_RPAREN, + [203875] = 1, + ACTIONS(15482), 1, + anon_sym_RPAREN, + [203879] = 1, + ACTIONS(12193), 1, + anon_sym_RPAREN, + [203883] = 1, + ACTIONS(15484), 1, + anon_sym_RBRACE_RBRACE, + [203887] = 1, + ACTIONS(15486), 1, + anon_sym_BANG_BANG_RBRACE, + [203891] = 1, + ACTIONS(15488), 1, + anon_sym_ATendvolt, + [203895] = 1, + ACTIONS(15490), 1, + anon_sym_ATendteleport, + [203899] = 1, + ACTIONS(15492), 1, + anon_sym_ATendpersist, + [203903] = 1, + ACTIONS(15494), 1, + anon_sym_ATendphp, + [203907] = 1, + ACTIONS(15496), 1, + anon_sym_ATendfragment, + [203911] = 1, + ACTIONS(15498), 1, + anon_sym_ATendpush, + [203915] = 1, + ACTIONS(15500), 1, + anon_sym_ATendPushOnce, + [203919] = 1, + ACTIONS(15502), 1, + anon_sym_ATendstory, + [203923] = 1, + ACTIONS(15504), 1, + anon_sym_ATendtask, + [203927] = 1, + ACTIONS(15506), 1, + anon_sym_ATendsetup, + [203931] = 1, + ACTIONS(15508), 1, + anon_sym_ATendwhile, + [203935] = 1, + ACTIONS(15510), 1, + anon_sym_ATendforelse, + [203939] = 1, + ACTIONS(15512), 1, + anon_sym_ATendphp, + [203943] = 1, + ACTIONS(15514), 1, + anon_sym_ATendfor, + [203947] = 1, + ACTIONS(15516), 1, + aux_sym__custom_token3, + [203951] = 1, + ACTIONS(15518), 1, + anon_sym_ATendfeature, + [203955] = 1, + ACTIONS(15520), 1, + anon_sym_ATendcanany, + [203959] = 1, + ACTIONS(15522), 1, + anon_sym_ATendcannot, + [203963] = 1, + ACTIONS(15524), 1, + anon_sym_ATendcan, + [203967] = 1, + ACTIONS(15526), 1, + anon_sym_ATendPushIf, + [203971] = 1, + ACTIONS(15528), 1, + anon_sym_ATenderror, + [203975] = 1, + ACTIONS(15530), 1, + anon_sym_ATendif, + [203979] = 1, + ACTIONS(15532), 1, + anon_sym_ATendif, + [203983] = 1, + ACTIONS(15534), 1, + anon_sym_ATendenv, + [203987] = 1, + ACTIONS(15536), 1, + anon_sym_ATendprepend, + [203991] = 1, + ACTIONS(15538), 1, + anon_sym_ATendguest, + [203995] = 1, + ACTIONS(15540), 1, + anon_sym_ATendauth, + [203999] = 1, + ACTIONS(15542), 1, + anon_sym_ATendempty, + [204003] = 1, + ACTIONS(15544), 1, + anon_sym_ATendisset, + [204007] = 1, + ACTIONS(15546), 1, + anon_sym_ATendunless, + [204011] = 1, + ACTIONS(15548), 1, + anon_sym_ATendif, + [204015] = 1, + ACTIONS(15550), 1, + anon_sym_ATendPrependOnce, + [204019] = 1, + ACTIONS(15552), 1, + anon_sym_ATendprepend, + [204023] = 1, + ACTIONS(15554), 1, + anon_sym_ATendPushIf, + [204027] = 1, + ACTIONS(15556), 1, + anon_sym_ATendPushOnce, + [204031] = 1, + ACTIONS(15558), 1, + anon_sym_ATendpush, + [204035] = 1, + ACTIONS(15560), 1, + anon_sym_ATendPrependOnce, + [204039] = 1, + ACTIONS(15562), 1, + anon_sym_ATendif, + [204043] = 1, + ACTIONS(15564), 1, + anon_sym_ATendfragment, + [204047] = 1, + ACTIONS(15566), 1, + anon_sym_ATendvolt, + [204051] = 1, + ACTIONS(15568), 1, + anon_sym_BANG_BANG_RBRACE, + [204055] = 1, + ACTIONS(15570), 1, + anon_sym_RBRACE_RBRACE, + [204059] = 1, + ACTIONS(15572), 1, + anon_sym_ATendunless, + [204063] = 1, + ACTIONS(15574), 1, + anon_sym_ATendisset, + [204067] = 1, + ACTIONS(15576), 1, + anon_sym_ATendempty, + [204071] = 1, + ACTIONS(15578), 1, + anon_sym_ATendauth, + [204075] = 1, + ACTIONS(15580), 1, + anon_sym_ATendguest, + [204079] = 1, + ACTIONS(15582), 1, + anon_sym_ATendenv, + [204083] = 1, + ACTIONS(15584), 1, + anon_sym_ATendif, + [204087] = 1, + ACTIONS(15586), 1, + anon_sym_ATendsetup, + [204091] = 1, + ACTIONS(15588), 1, + anon_sym_ATenderror, + [204095] = 1, + ACTIONS(15590), 1, + anon_sym_RPAREN, + [204099] = 1, + ACTIONS(15592), 1, + anon_sym_ATendcan, + [204103] = 1, + ACTIONS(15594), 1, + anon_sym_ATendcannot, + [204107] = 1, + ACTIONS(15596), 1, + anon_sym_ATendcanany, + [204111] = 1, + ACTIONS(15598), 1, + anon_sym_LPAREN, + [204115] = 1, + ACTIONS(15600), 1, + anon_sym_ATendfeature, + [204119] = 1, + ACTIONS(15602), 1, + aux_sym__custom_token3, + [204123] = 1, + ACTIONS(12269), 1, + anon_sym_RPAREN, + [204127] = 1, + ACTIONS(15604), 1, + anon_sym_ATendfor, + [204131] = 1, + ACTIONS(15606), 1, + anon_sym_ATendforeach, + [204135] = 1, + ACTIONS(15608), 1, + anon_sym_ATendforelse, + [204139] = 1, + ACTIONS(15610), 1, + anon_sym_ATendvolt, + [204143] = 1, + ACTIONS(15612), 1, + anon_sym_ATendteleport, + [204147] = 1, + ACTIONS(15614), 1, + anon_sym_ATendpersist, + [204151] = 1, + ACTIONS(15616), 1, + anon_sym_ATendwhile, + [204155] = 1, + ACTIONS(15618), 1, + anon_sym_ATendsetup, + [204159] = 1, + ACTIONS(15620), 1, + anon_sym_ATendtask, + [204163] = 1, + ACTIONS(15622), 1, + anon_sym_ATendstory, + [204167] = 1, + ACTIONS(15624), 1, + anon_sym_ATendstory, + [204171] = 1, + ACTIONS(15626), 1, + anon_sym_ATendtask, + [204175] = 1, + ACTIONS(15628), 1, + anon_sym_ATendsetup, + [204179] = 1, + ACTIONS(15630), 1, + anon_sym_ATendwhile, + [204183] = 1, + ACTIONS(15632), 1, + anon_sym_ATendforelse, + [204187] = 1, + ACTIONS(15634), 1, + anon_sym_ATendforeach, + [204191] = 1, + ACTIONS(15636), 1, + anon_sym_ATendfor, + [204195] = 1, + ACTIONS(15638), 1, + aux_sym__custom_token3, + [204199] = 1, + ACTIONS(15640), 1, + anon_sym_ATendfeature, + [204203] = 1, + ACTIONS(15642), 1, + anon_sym_ATendcanany, + [204207] = 1, + ACTIONS(15644), 1, + anon_sym_ATendcannot, + [204211] = 1, + ACTIONS(15646), 1, + anon_sym_ATendcan, + [204215] = 1, + ACTIONS(15648), 1, + anon_sym_ATendif, + [204219] = 1, + ACTIONS(15650), 1, + anon_sym_ATenderror, + [204223] = 1, + ACTIONS(15652), 1, + anon_sym_ATendif, + [204227] = 1, + ACTIONS(15654), 1, + anon_sym_ATendif, + [204231] = 1, + ACTIONS(15656), 1, + anon_sym_ATendenv, + [204235] = 1, + ACTIONS(15658), 1, + anon_sym_ATendpersist, + [204239] = 1, + ACTIONS(15660), 1, + anon_sym_ATendguest, + [204243] = 1, + ACTIONS(15662), 1, + anon_sym_ATendauth, + [204247] = 1, + ACTIONS(15664), 1, + anon_sym_ATendempty, + [204251] = 1, + ACTIONS(15666), 1, + anon_sym_ATendisset, + [204255] = 1, + ACTIONS(15668), 1, + anon_sym_ATendunless, + [204259] = 1, + ACTIONS(15670), 1, + anon_sym_ATendif, + [204263] = 1, + ACTIONS(15672), 1, + anon_sym_ATendPrependOnce, + [204267] = 1, + ACTIONS(15674), 1, + anon_sym_ATendprepend, + [204271] = 1, + ACTIONS(15676), 1, + anon_sym_ATendPushIf, + [204275] = 1, + ACTIONS(15678), 1, + anon_sym_ATendPushOnce, + [204279] = 1, + ACTIONS(15680), 1, + anon_sym_ATendpush, + [204283] = 1, + ACTIONS(15682), 1, + anon_sym_ATendfragment, + [204287] = 1, + ACTIONS(15684), 1, + anon_sym_ATendphp, + [204291] = 1, + ACTIONS(15686), 1, + anon_sym_BANG_BANG_RBRACE, + [204295] = 1, + ACTIONS(15688), 1, + anon_sym_RBRACE_RBRACE, + [204299] = 1, + ACTIONS(15690), 1, + anon_sym_RPAREN, + [204303] = 1, + ACTIONS(12363), 1, + anon_sym_RPAREN, + [204307] = 1, + ACTIONS(15692), 1, + anon_sym_ATendvolt, + [204311] = 1, + ACTIONS(15694), 1, + anon_sym_ATendteleport, + [204315] = 1, + ACTIONS(15696), 1, + anon_sym_ATendpersist, + [204319] = 1, + ACTIONS(15698), 1, + anon_sym_ATendstory, + [204323] = 1, + ACTIONS(15700), 1, + anon_sym_ATendtask, + [204327] = 1, + ACTIONS(15702), 1, + anon_sym_ATendsetup, + [204331] = 1, + ACTIONS(15704), 1, + anon_sym_ATendwhile, + [204335] = 1, + ACTIONS(15706), 1, + anon_sym_ATendforelse, + [204339] = 1, + ACTIONS(15708), 1, + anon_sym_ATendforeach, + [204343] = 1, + ACTIONS(15710), 1, + anon_sym_ATendfor, + [204347] = 1, + ACTIONS(15712), 1, + aux_sym__custom_token3, + [204351] = 1, + ACTIONS(15714), 1, + anon_sym_ATendfeature, + [204355] = 1, + ACTIONS(15716), 1, + anon_sym_ATendcanany, + [204359] = 1, + ACTIONS(15718), 1, + anon_sym_ATendcannot, + [204363] = 1, + ACTIONS(15720), 1, + anon_sym_ATendcan, + [204367] = 1, + ACTIONS(15722), 1, + anon_sym_ATenderror, + [204371] = 1, + ACTIONS(15724), 1, + anon_sym_ATendif, + [204375] = 1, + ACTIONS(15726), 1, + anon_sym_ATendif, + [204379] = 1, + ACTIONS(15728), 1, + anon_sym_ATendenv, + [204383] = 1, + ACTIONS(15730), 1, + anon_sym_ATendguest, + [204387] = 1, + ACTIONS(15732), 1, + anon_sym_ATendauth, + [204391] = 1, + ACTIONS(15734), 1, + anon_sym_ATendempty, + [204395] = 1, + ACTIONS(15736), 1, + anon_sym_ATendisset, + [204399] = 1, + ACTIONS(15738), 1, + anon_sym_ATendunless, + [204403] = 1, + ACTIONS(15740), 1, + anon_sym_ATendif, + [204407] = 1, + ACTIONS(15742), 1, + anon_sym_ATendPrependOnce, + [204411] = 1, + ACTIONS(15744), 1, + anon_sym_ATendprepend, + [204415] = 1, + ACTIONS(15746), 1, + anon_sym_ATendPushIf, + [204419] = 1, + ACTIONS(15748), 1, + anon_sym_ATendPushOnce, + [204423] = 1, + ACTIONS(15750), 1, + anon_sym_ATendpush, + [204427] = 1, + ACTIONS(15752), 1, + anon_sym_ATendfragment, + [204431] = 1, + ACTIONS(15754), 1, + anon_sym_ATendphp, + [204435] = 1, + ACTIONS(15756), 1, + anon_sym_BANG_BANG_RBRACE, + [204439] = 1, + ACTIONS(15758), 1, + anon_sym_RBRACE_RBRACE, + [204443] = 1, + ACTIONS(15760), 1, + anon_sym_RPAREN, + [204447] = 1, + ACTIONS(12321), 1, + anon_sym_RPAREN, + [204451] = 1, + ACTIONS(15762), 1, + anon_sym_LPAREN, + [204455] = 1, + ACTIONS(15764), 1, + anon_sym_LPAREN, + [204459] = 1, + ACTIONS(15766), 1, + anon_sym_LPAREN, + [204463] = 1, + ACTIONS(15768), 1, + anon_sym_LPAREN, + [204467] = 1, + ACTIONS(15770), 1, + anon_sym_LPAREN, + [204471] = 1, + ACTIONS(15772), 1, + anon_sym_LPAREN, + [204475] = 1, + ACTIONS(15774), 1, + anon_sym_LPAREN, + [204479] = 1, + ACTIONS(15776), 1, + anon_sym_LPAREN, + [204483] = 1, + ACTIONS(15778), 1, + anon_sym_LPAREN, + [204487] = 1, + ACTIONS(15780), 1, + anon_sym_LPAREN, + [204491] = 1, + ACTIONS(15782), 1, + anon_sym_LPAREN, + [204495] = 1, + ACTIONS(15784), 1, + anon_sym_LPAREN, + [204499] = 1, + ACTIONS(15786), 1, + anon_sym_LPAREN, + [204503] = 1, + ACTIONS(15788), 1, + anon_sym_LPAREN, + [204507] = 1, + ACTIONS(15790), 1, + anon_sym_LPAREN, + [204511] = 1, + ACTIONS(15792), 1, + anon_sym_LPAREN, + [204515] = 1, + ACTIONS(15794), 1, + anon_sym_LPAREN, + [204519] = 1, + ACTIONS(15796), 1, + anon_sym_LPAREN, + [204523] = 1, + ACTIONS(15798), 1, + anon_sym_LPAREN, + [204527] = 1, + ACTIONS(15800), 1, + anon_sym_LPAREN, + [204531] = 1, + ACTIONS(15802), 1, + anon_sym_LPAREN, + [204535] = 1, + ACTIONS(15804), 1, + anon_sym_LPAREN, + [204539] = 1, + ACTIONS(15806), 1, + anon_sym_LPAREN, + [204543] = 1, + ACTIONS(15808), 1, + anon_sym_LPAREN, + [204547] = 1, + ACTIONS(15810), 1, + anon_sym_LPAREN, + [204551] = 1, + ACTIONS(15812), 1, + anon_sym_LPAREN, + [204555] = 1, + ACTIONS(15814), 1, + anon_sym_LPAREN, + [204559] = 1, + ACTIONS(15816), 1, + anon_sym_LPAREN, + [204563] = 1, + ACTIONS(15818), 1, + anon_sym_LPAREN, + [204567] = 1, + ACTIONS(15820), 1, + anon_sym_LPAREN, + [204571] = 1, + ACTIONS(15822), 1, + anon_sym_LPAREN, + [204575] = 1, + ACTIONS(15824), 1, + anon_sym_LPAREN, + [204579] = 1, + ACTIONS(15826), 1, + anon_sym_LPAREN, + [204583] = 1, + ACTIONS(15828), 1, anon_sym_LPAREN, }; @@ -300121,60 +294405,60 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(671)] = 897, [SMALL_STATE(672)] = 966, [SMALL_STATE(673)] = 1032, - [SMALL_STATE(674)] = 1100, + [SMALL_STATE(674)] = 1098, [SMALL_STATE(675)] = 1166, [SMALL_STATE(676)] = 1232, - [SMALL_STATE(677)] = 1300, - [SMALL_STATE(678)] = 1368, - [SMALL_STATE(679)] = 1434, + [SMALL_STATE(677)] = 1298, + [SMALL_STATE(678)] = 1366, + [SMALL_STATE(679)] = 1432, [SMALL_STATE(680)] = 1500, - [SMALL_STATE(681)] = 1568, + [SMALL_STATE(681)] = 1566, [SMALL_STATE(682)] = 1634, - [SMALL_STATE(683)] = 1702, + [SMALL_STATE(683)] = 1700, [SMALL_STATE(684)] = 1768, [SMALL_STATE(685)] = 1836, [SMALL_STATE(686)] = 1902, - [SMALL_STATE(687)] = 1968, + [SMALL_STATE(687)] = 1970, [SMALL_STATE(688)] = 2036, - [SMALL_STATE(689)] = 2102, - [SMALL_STATE(690)] = 2170, + [SMALL_STATE(689)] = 2104, + [SMALL_STATE(690)] = 2172, [SMALL_STATE(691)] = 2238, [SMALL_STATE(692)] = 2304, - [SMALL_STATE(693)] = 2370, - [SMALL_STATE(694)] = 2436, - [SMALL_STATE(695)] = 2504, - [SMALL_STATE(696)] = 2572, - [SMALL_STATE(697)] = 2638, - [SMALL_STATE(698)] = 2704, - [SMALL_STATE(699)] = 2772, - [SMALL_STATE(700)] = 2838, + [SMALL_STATE(693)] = 2372, + [SMALL_STATE(694)] = 2438, + [SMALL_STATE(695)] = 2506, + [SMALL_STATE(696)] = 2574, + [SMALL_STATE(697)] = 2642, + [SMALL_STATE(698)] = 2708, + [SMALL_STATE(699)] = 2774, + [SMALL_STATE(700)] = 2840, [SMALL_STATE(701)] = 2906, [SMALL_STATE(702)] = 2974, [SMALL_STATE(703)] = 3040, - [SMALL_STATE(704)] = 3108, - [SMALL_STATE(705)] = 3176, - [SMALL_STATE(706)] = 3242, - [SMALL_STATE(707)] = 3310, - [SMALL_STATE(708)] = 3376, - [SMALL_STATE(709)] = 3444, - [SMALL_STATE(710)] = 3510, + [SMALL_STATE(704)] = 3106, + [SMALL_STATE(705)] = 3174, + [SMALL_STATE(706)] = 3240, + [SMALL_STATE(707)] = 3308, + [SMALL_STATE(708)] = 3374, + [SMALL_STATE(709)] = 3440, + [SMALL_STATE(710)] = 3508, [SMALL_STATE(711)] = 3576, [SMALL_STATE(712)] = 3644, - [SMALL_STATE(713)] = 3710, - [SMALL_STATE(714)] = 3776, - [SMALL_STATE(715)] = 3844, - [SMALL_STATE(716)] = 3910, - [SMALL_STATE(717)] = 3978, - [SMALL_STATE(718)] = 4046, - [SMALL_STATE(719)] = 4112, - [SMALL_STATE(720)] = 4180, - [SMALL_STATE(721)] = 4246, - [SMALL_STATE(722)] = 4314, - [SMALL_STATE(723)] = 4380, - [SMALL_STATE(724)] = 4448, - [SMALL_STATE(725)] = 4516, - [SMALL_STATE(726)] = 4584, - [SMALL_STATE(727)] = 4650, + [SMALL_STATE(713)] = 3712, + [SMALL_STATE(714)] = 3778, + [SMALL_STATE(715)] = 3846, + [SMALL_STATE(716)] = 3912, + [SMALL_STATE(717)] = 3980, + [SMALL_STATE(718)] = 4048, + [SMALL_STATE(719)] = 4116, + [SMALL_STATE(720)] = 4184, + [SMALL_STATE(721)] = 4252, + [SMALL_STATE(722)] = 4318, + [SMALL_STATE(723)] = 4386, + [SMALL_STATE(724)] = 4452, + [SMALL_STATE(725)] = 4518, + [SMALL_STATE(726)] = 4586, + [SMALL_STATE(727)] = 4652, [SMALL_STATE(728)] = 4718, [SMALL_STATE(729)] = 4785, [SMALL_STATE(730)] = 4852, @@ -300199,325 +294483,325 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(749)] = 6125, [SMALL_STATE(750)] = 6185, [SMALL_STATE(751)] = 6245, - [SMALL_STATE(752)] = 6309, - [SMALL_STATE(753)] = 6375, - [SMALL_STATE(754)] = 6435, - [SMALL_STATE(755)] = 6501, - [SMALL_STATE(756)] = 6561, - [SMALL_STATE(757)] = 6625, - [SMALL_STATE(758)] = 6685, - [SMALL_STATE(759)] = 6745, - [SMALL_STATE(760)] = 6809, - [SMALL_STATE(761)] = 6875, - [SMALL_STATE(762)] = 6935, - [SMALL_STATE(763)] = 6995, - [SMALL_STATE(764)] = 7055, - [SMALL_STATE(765)] = 7115, - [SMALL_STATE(766)] = 7175, - [SMALL_STATE(767)] = 7235, - [SMALL_STATE(768)] = 7295, - [SMALL_STATE(769)] = 7355, - [SMALL_STATE(770)] = 7415, - [SMALL_STATE(771)] = 7475, - [SMALL_STATE(772)] = 7535, - [SMALL_STATE(773)] = 7601, - [SMALL_STATE(774)] = 7661, - [SMALL_STATE(775)] = 7721, - [SMALL_STATE(776)] = 7781, - [SMALL_STATE(777)] = 7841, - [SMALL_STATE(778)] = 7901, - [SMALL_STATE(779)] = 7961, - [SMALL_STATE(780)] = 8021, - [SMALL_STATE(781)] = 8081, - [SMALL_STATE(782)] = 8141, - [SMALL_STATE(783)] = 8201, - [SMALL_STATE(784)] = 8261, - [SMALL_STATE(785)] = 8321, - [SMALL_STATE(786)] = 8381, - [SMALL_STATE(787)] = 8441, - [SMALL_STATE(788)] = 8501, - [SMALL_STATE(789)] = 8561, - [SMALL_STATE(790)] = 8621, - [SMALL_STATE(791)] = 8681, - [SMALL_STATE(792)] = 8741, - [SMALL_STATE(793)] = 8801, - [SMALL_STATE(794)] = 8861, - [SMALL_STATE(795)] = 8921, - [SMALL_STATE(796)] = 8981, - [SMALL_STATE(797)] = 9041, - [SMALL_STATE(798)] = 9101, - [SMALL_STATE(799)] = 9161, - [SMALL_STATE(800)] = 9221, - [SMALL_STATE(801)] = 9281, - [SMALL_STATE(802)] = 9341, - [SMALL_STATE(803)] = 9401, - [SMALL_STATE(804)] = 9461, - [SMALL_STATE(805)] = 9521, - [SMALL_STATE(806)] = 9581, - [SMALL_STATE(807)] = 9641, - [SMALL_STATE(808)] = 9701, - [SMALL_STATE(809)] = 9761, - [SMALL_STATE(810)] = 9821, - [SMALL_STATE(811)] = 9881, - [SMALL_STATE(812)] = 9945, - [SMALL_STATE(813)] = 10005, - [SMALL_STATE(814)] = 10065, - [SMALL_STATE(815)] = 10125, - [SMALL_STATE(816)] = 10185, - [SMALL_STATE(817)] = 10245, - [SMALL_STATE(818)] = 10305, - [SMALL_STATE(819)] = 10365, - [SMALL_STATE(820)] = 10431, - [SMALL_STATE(821)] = 10491, - [SMALL_STATE(822)] = 10551, - [SMALL_STATE(823)] = 10611, - [SMALL_STATE(824)] = 10671, - [SMALL_STATE(825)] = 10731, - [SMALL_STATE(826)] = 10791, - [SMALL_STATE(827)] = 10851, - [SMALL_STATE(828)] = 10911, - [SMALL_STATE(829)] = 10971, - [SMALL_STATE(830)] = 11031, - [SMALL_STATE(831)] = 11091, - [SMALL_STATE(832)] = 11151, - [SMALL_STATE(833)] = 11211, - [SMALL_STATE(834)] = 11277, - [SMALL_STATE(835)] = 11337, - [SMALL_STATE(836)] = 11397, - [SMALL_STATE(837)] = 11457, - [SMALL_STATE(838)] = 11517, - [SMALL_STATE(839)] = 11577, - [SMALL_STATE(840)] = 11637, - [SMALL_STATE(841)] = 11697, - [SMALL_STATE(842)] = 11757, - [SMALL_STATE(843)] = 11817, - [SMALL_STATE(844)] = 11877, - [SMALL_STATE(845)] = 11937, - [SMALL_STATE(846)] = 11997, - [SMALL_STATE(847)] = 12057, - [SMALL_STATE(848)] = 12117, - [SMALL_STATE(849)] = 12177, - [SMALL_STATE(850)] = 12237, - [SMALL_STATE(851)] = 12297, - [SMALL_STATE(852)] = 12357, - [SMALL_STATE(853)] = 12417, - [SMALL_STATE(854)] = 12477, - [SMALL_STATE(855)] = 12537, - [SMALL_STATE(856)] = 12597, - [SMALL_STATE(857)] = 12657, - [SMALL_STATE(858)] = 12717, - [SMALL_STATE(859)] = 12777, - [SMALL_STATE(860)] = 12837, - [SMALL_STATE(861)] = 12897, - [SMALL_STATE(862)] = 12957, - [SMALL_STATE(863)] = 13017, - [SMALL_STATE(864)] = 13077, - [SMALL_STATE(865)] = 13137, - [SMALL_STATE(866)] = 13197, - [SMALL_STATE(867)] = 13257, - [SMALL_STATE(868)] = 13317, - [SMALL_STATE(869)] = 13377, - [SMALL_STATE(870)] = 13437, - [SMALL_STATE(871)] = 13497, - [SMALL_STATE(872)] = 13557, - [SMALL_STATE(873)] = 13617, - [SMALL_STATE(874)] = 13677, - [SMALL_STATE(875)] = 13737, - [SMALL_STATE(876)] = 13797, - [SMALL_STATE(877)] = 13857, - [SMALL_STATE(878)] = 13917, - [SMALL_STATE(879)] = 13977, - [SMALL_STATE(880)] = 14037, - [SMALL_STATE(881)] = 14097, - [SMALL_STATE(882)] = 14157, - [SMALL_STATE(883)] = 14217, - [SMALL_STATE(884)] = 14277, - [SMALL_STATE(885)] = 14337, - [SMALL_STATE(886)] = 14397, - [SMALL_STATE(887)] = 14457, - [SMALL_STATE(888)] = 14517, - [SMALL_STATE(889)] = 14577, - [SMALL_STATE(890)] = 14637, - [SMALL_STATE(891)] = 14697, - [SMALL_STATE(892)] = 14757, - [SMALL_STATE(893)] = 14817, - [SMALL_STATE(894)] = 14877, - [SMALL_STATE(895)] = 14937, - [SMALL_STATE(896)] = 14997, - [SMALL_STATE(897)] = 15057, - [SMALL_STATE(898)] = 15117, - [SMALL_STATE(899)] = 15177, - [SMALL_STATE(900)] = 15237, - [SMALL_STATE(901)] = 15297, - [SMALL_STATE(902)] = 15357, - [SMALL_STATE(903)] = 15417, - [SMALL_STATE(904)] = 15477, - [SMALL_STATE(905)] = 15537, - [SMALL_STATE(906)] = 15601, - [SMALL_STATE(907)] = 15661, - [SMALL_STATE(908)] = 15721, - [SMALL_STATE(909)] = 15781, - [SMALL_STATE(910)] = 15841, - [SMALL_STATE(911)] = 15901, - [SMALL_STATE(912)] = 15961, - [SMALL_STATE(913)] = 16021, - [SMALL_STATE(914)] = 16081, - [SMALL_STATE(915)] = 16141, - [SMALL_STATE(916)] = 16201, - [SMALL_STATE(917)] = 16261, - [SMALL_STATE(918)] = 16321, - [SMALL_STATE(919)] = 16381, - [SMALL_STATE(920)] = 16441, - [SMALL_STATE(921)] = 16501, - [SMALL_STATE(922)] = 16561, - [SMALL_STATE(923)] = 16621, - [SMALL_STATE(924)] = 16681, - [SMALL_STATE(925)] = 16741, - [SMALL_STATE(926)] = 16801, - [SMALL_STATE(927)] = 16861, - [SMALL_STATE(928)] = 16921, - [SMALL_STATE(929)] = 16981, - [SMALL_STATE(930)] = 17047, - [SMALL_STATE(931)] = 17113, - [SMALL_STATE(932)] = 17179, - [SMALL_STATE(933)] = 17245, - [SMALL_STATE(934)] = 17311, - [SMALL_STATE(935)] = 17377, - [SMALL_STATE(936)] = 17443, - [SMALL_STATE(937)] = 17509, - [SMALL_STATE(938)] = 17575, - [SMALL_STATE(939)] = 17641, - [SMALL_STATE(940)] = 17701, - [SMALL_STATE(941)] = 17767, - [SMALL_STATE(942)] = 17833, - [SMALL_STATE(943)] = 17893, - [SMALL_STATE(944)] = 17959, - [SMALL_STATE(945)] = 18025, - [SMALL_STATE(946)] = 18091, - [SMALL_STATE(947)] = 18155, - [SMALL_STATE(948)] = 18215, - [SMALL_STATE(949)] = 18275, - [SMALL_STATE(950)] = 18335, - [SMALL_STATE(951)] = 18395, - [SMALL_STATE(952)] = 18461, - [SMALL_STATE(953)] = 18525, - [SMALL_STATE(954)] = 18585, - [SMALL_STATE(955)] = 18645, - [SMALL_STATE(956)] = 18705, - [SMALL_STATE(957)] = 18765, - [SMALL_STATE(958)] = 18825, - [SMALL_STATE(959)] = 18891, - [SMALL_STATE(960)] = 18955, - [SMALL_STATE(961)] = 19015, - [SMALL_STATE(962)] = 19075, - [SMALL_STATE(963)] = 19135, - [SMALL_STATE(964)] = 19195, - [SMALL_STATE(965)] = 19261, - [SMALL_STATE(966)] = 19325, - [SMALL_STATE(967)] = 19385, - [SMALL_STATE(968)] = 19445, - [SMALL_STATE(969)] = 19511, - [SMALL_STATE(970)] = 19575, - [SMALL_STATE(971)] = 19635, - [SMALL_STATE(972)] = 19695, - [SMALL_STATE(973)] = 19761, - [SMALL_STATE(974)] = 19825, - [SMALL_STATE(975)] = 19885, - [SMALL_STATE(976)] = 19945, - [SMALL_STATE(977)] = 20011, - [SMALL_STATE(978)] = 20075, - [SMALL_STATE(979)] = 20135, - [SMALL_STATE(980)] = 20195, - [SMALL_STATE(981)] = 20261, - [SMALL_STATE(982)] = 20325, - [SMALL_STATE(983)] = 20385, - [SMALL_STATE(984)] = 20445, - [SMALL_STATE(985)] = 20511, - [SMALL_STATE(986)] = 20575, - [SMALL_STATE(987)] = 20635, - [SMALL_STATE(988)] = 20695, - [SMALL_STATE(989)] = 20755, - [SMALL_STATE(990)] = 20821, - [SMALL_STATE(991)] = 20885, - [SMALL_STATE(992)] = 20945, - [SMALL_STATE(993)] = 21005, - [SMALL_STATE(994)] = 21069, - [SMALL_STATE(995)] = 21129, - [SMALL_STATE(996)] = 21189, + [SMALL_STATE(752)] = 6305, + [SMALL_STATE(753)] = 6365, + [SMALL_STATE(754)] = 6425, + [SMALL_STATE(755)] = 6485, + [SMALL_STATE(756)] = 6545, + [SMALL_STATE(757)] = 6605, + [SMALL_STATE(758)] = 6665, + [SMALL_STATE(759)] = 6725, + [SMALL_STATE(760)] = 6785, + [SMALL_STATE(761)] = 6845, + [SMALL_STATE(762)] = 6905, + [SMALL_STATE(763)] = 6965, + [SMALL_STATE(764)] = 7025, + [SMALL_STATE(765)] = 7085, + [SMALL_STATE(766)] = 7145, + [SMALL_STATE(767)] = 7205, + [SMALL_STATE(768)] = 7265, + [SMALL_STATE(769)] = 7325, + [SMALL_STATE(770)] = 7385, + [SMALL_STATE(771)] = 7445, + [SMALL_STATE(772)] = 7505, + [SMALL_STATE(773)] = 7565, + [SMALL_STATE(774)] = 7625, + [SMALL_STATE(775)] = 7685, + [SMALL_STATE(776)] = 7745, + [SMALL_STATE(777)] = 7805, + [SMALL_STATE(778)] = 7865, + [SMALL_STATE(779)] = 7925, + [SMALL_STATE(780)] = 7985, + [SMALL_STATE(781)] = 8045, + [SMALL_STATE(782)] = 8105, + [SMALL_STATE(783)] = 8165, + [SMALL_STATE(784)] = 8225, + [SMALL_STATE(785)] = 8285, + [SMALL_STATE(786)] = 8345, + [SMALL_STATE(787)] = 8405, + [SMALL_STATE(788)] = 8465, + [SMALL_STATE(789)] = 8525, + [SMALL_STATE(790)] = 8585, + [SMALL_STATE(791)] = 8645, + [SMALL_STATE(792)] = 8705, + [SMALL_STATE(793)] = 8765, + [SMALL_STATE(794)] = 8825, + [SMALL_STATE(795)] = 8885, + [SMALL_STATE(796)] = 8949, + [SMALL_STATE(797)] = 9009, + [SMALL_STATE(798)] = 9069, + [SMALL_STATE(799)] = 9129, + [SMALL_STATE(800)] = 9189, + [SMALL_STATE(801)] = 9249, + [SMALL_STATE(802)] = 9309, + [SMALL_STATE(803)] = 9369, + [SMALL_STATE(804)] = 9429, + [SMALL_STATE(805)] = 9489, + [SMALL_STATE(806)] = 9549, + [SMALL_STATE(807)] = 9609, + [SMALL_STATE(808)] = 9669, + [SMALL_STATE(809)] = 9729, + [SMALL_STATE(810)] = 9789, + [SMALL_STATE(811)] = 9849, + [SMALL_STATE(812)] = 9909, + [SMALL_STATE(813)] = 9969, + [SMALL_STATE(814)] = 10029, + [SMALL_STATE(815)] = 10089, + [SMALL_STATE(816)] = 10149, + [SMALL_STATE(817)] = 10209, + [SMALL_STATE(818)] = 10269, + [SMALL_STATE(819)] = 10335, + [SMALL_STATE(820)] = 10395, + [SMALL_STATE(821)] = 10455, + [SMALL_STATE(822)] = 10519, + [SMALL_STATE(823)] = 10579, + [SMALL_STATE(824)] = 10639, + [SMALL_STATE(825)] = 10699, + [SMALL_STATE(826)] = 10759, + [SMALL_STATE(827)] = 10819, + [SMALL_STATE(828)] = 10879, + [SMALL_STATE(829)] = 10939, + [SMALL_STATE(830)] = 10999, + [SMALL_STATE(831)] = 11059, + [SMALL_STATE(832)] = 11119, + [SMALL_STATE(833)] = 11179, + [SMALL_STATE(834)] = 11239, + [SMALL_STATE(835)] = 11299, + [SMALL_STATE(836)] = 11359, + [SMALL_STATE(837)] = 11419, + [SMALL_STATE(838)] = 11479, + [SMALL_STATE(839)] = 11539, + [SMALL_STATE(840)] = 11599, + [SMALL_STATE(841)] = 11659, + [SMALL_STATE(842)] = 11719, + [SMALL_STATE(843)] = 11779, + [SMALL_STATE(844)] = 11839, + [SMALL_STATE(845)] = 11899, + [SMALL_STATE(846)] = 11959, + [SMALL_STATE(847)] = 12019, + [SMALL_STATE(848)] = 12079, + [SMALL_STATE(849)] = 12139, + [SMALL_STATE(850)] = 12199, + [SMALL_STATE(851)] = 12259, + [SMALL_STATE(852)] = 12319, + [SMALL_STATE(853)] = 12379, + [SMALL_STATE(854)] = 12439, + [SMALL_STATE(855)] = 12499, + [SMALL_STATE(856)] = 12559, + [SMALL_STATE(857)] = 12619, + [SMALL_STATE(858)] = 12679, + [SMALL_STATE(859)] = 12739, + [SMALL_STATE(860)] = 12799, + [SMALL_STATE(861)] = 12859, + [SMALL_STATE(862)] = 12925, + [SMALL_STATE(863)] = 12985, + [SMALL_STATE(864)] = 13045, + [SMALL_STATE(865)] = 13105, + [SMALL_STATE(866)] = 13165, + [SMALL_STATE(867)] = 13225, + [SMALL_STATE(868)] = 13285, + [SMALL_STATE(869)] = 13345, + [SMALL_STATE(870)] = 13405, + [SMALL_STATE(871)] = 13465, + [SMALL_STATE(872)] = 13531, + [SMALL_STATE(873)] = 13591, + [SMALL_STATE(874)] = 13655, + [SMALL_STATE(875)] = 13715, + [SMALL_STATE(876)] = 13775, + [SMALL_STATE(877)] = 13835, + [SMALL_STATE(878)] = 13895, + [SMALL_STATE(879)] = 13955, + [SMALL_STATE(880)] = 14015, + [SMALL_STATE(881)] = 14075, + [SMALL_STATE(882)] = 14135, + [SMALL_STATE(883)] = 14195, + [SMALL_STATE(884)] = 14255, + [SMALL_STATE(885)] = 14315, + [SMALL_STATE(886)] = 14375, + [SMALL_STATE(887)] = 14435, + [SMALL_STATE(888)] = 14499, + [SMALL_STATE(889)] = 14559, + [SMALL_STATE(890)] = 14619, + [SMALL_STATE(891)] = 14679, + [SMALL_STATE(892)] = 14739, + [SMALL_STATE(893)] = 14799, + [SMALL_STATE(894)] = 14859, + [SMALL_STATE(895)] = 14919, + [SMALL_STATE(896)] = 14985, + [SMALL_STATE(897)] = 15045, + [SMALL_STATE(898)] = 15105, + [SMALL_STATE(899)] = 15165, + [SMALL_STATE(900)] = 15225, + [SMALL_STATE(901)] = 15285, + [SMALL_STATE(902)] = 15345, + [SMALL_STATE(903)] = 15405, + [SMALL_STATE(904)] = 15465, + [SMALL_STATE(905)] = 15525, + [SMALL_STATE(906)] = 15585, + [SMALL_STATE(907)] = 15645, + [SMALL_STATE(908)] = 15705, + [SMALL_STATE(909)] = 15765, + [SMALL_STATE(910)] = 15825, + [SMALL_STATE(911)] = 15885, + [SMALL_STATE(912)] = 15945, + [SMALL_STATE(913)] = 16005, + [SMALL_STATE(914)] = 16065, + [SMALL_STATE(915)] = 16125, + [SMALL_STATE(916)] = 16185, + [SMALL_STATE(917)] = 16245, + [SMALL_STATE(918)] = 16305, + [SMALL_STATE(919)] = 16365, + [SMALL_STATE(920)] = 16425, + [SMALL_STATE(921)] = 16491, + [SMALL_STATE(922)] = 16551, + [SMALL_STATE(923)] = 16611, + [SMALL_STATE(924)] = 16671, + [SMALL_STATE(925)] = 16731, + [SMALL_STATE(926)] = 16791, + [SMALL_STATE(927)] = 16851, + [SMALL_STATE(928)] = 16911, + [SMALL_STATE(929)] = 16971, + [SMALL_STATE(930)] = 17031, + [SMALL_STATE(931)] = 17091, + [SMALL_STATE(932)] = 17151, + [SMALL_STATE(933)] = 17211, + [SMALL_STATE(934)] = 17271, + [SMALL_STATE(935)] = 17337, + [SMALL_STATE(936)] = 17397, + [SMALL_STATE(937)] = 17457, + [SMALL_STATE(938)] = 17517, + [SMALL_STATE(939)] = 17583, + [SMALL_STATE(940)] = 17649, + [SMALL_STATE(941)] = 17715, + [SMALL_STATE(942)] = 17781, + [SMALL_STATE(943)] = 17847, + [SMALL_STATE(944)] = 17913, + [SMALL_STATE(945)] = 17979, + [SMALL_STATE(946)] = 18045, + [SMALL_STATE(947)] = 18111, + [SMALL_STATE(948)] = 18177, + [SMALL_STATE(949)] = 18243, + [SMALL_STATE(950)] = 18309, + [SMALL_STATE(951)] = 18375, + [SMALL_STATE(952)] = 18439, + [SMALL_STATE(953)] = 18503, + [SMALL_STATE(954)] = 18563, + [SMALL_STATE(955)] = 18623, + [SMALL_STATE(956)] = 18683, + [SMALL_STATE(957)] = 18749, + [SMALL_STATE(958)] = 18815, + [SMALL_STATE(959)] = 18879, + [SMALL_STATE(960)] = 18939, + [SMALL_STATE(961)] = 18999, + [SMALL_STATE(962)] = 19059, + [SMALL_STATE(963)] = 19119, + [SMALL_STATE(964)] = 19185, + [SMALL_STATE(965)] = 19249, + [SMALL_STATE(966)] = 19309, + [SMALL_STATE(967)] = 19369, + [SMALL_STATE(968)] = 19429, + [SMALL_STATE(969)] = 19489, + [SMALL_STATE(970)] = 19555, + [SMALL_STATE(971)] = 19619, + [SMALL_STATE(972)] = 19679, + [SMALL_STATE(973)] = 19739, + [SMALL_STATE(974)] = 19805, + [SMALL_STATE(975)] = 19869, + [SMALL_STATE(976)] = 19929, + [SMALL_STATE(977)] = 19989, + [SMALL_STATE(978)] = 20055, + [SMALL_STATE(979)] = 20119, + [SMALL_STATE(980)] = 20183, + [SMALL_STATE(981)] = 20243, + [SMALL_STATE(982)] = 20303, + [SMALL_STATE(983)] = 20369, + [SMALL_STATE(984)] = 20433, + [SMALL_STATE(985)] = 20493, + [SMALL_STATE(986)] = 20553, + [SMALL_STATE(987)] = 20619, + [SMALL_STATE(988)] = 20685, + [SMALL_STATE(989)] = 20749, + [SMALL_STATE(990)] = 20809, + [SMALL_STATE(991)] = 20869, + [SMALL_STATE(992)] = 20935, + [SMALL_STATE(993)] = 20999, + [SMALL_STATE(994)] = 21059, + [SMALL_STATE(995)] = 21119, + [SMALL_STATE(996)] = 21185, [SMALL_STATE(997)] = 21249, - [SMALL_STATE(998)] = 21313, - [SMALL_STATE(999)] = 21373, - [SMALL_STATE(1000)] = 21437, - [SMALL_STATE(1001)] = 21497, - [SMALL_STATE(1002)] = 21557, - [SMALL_STATE(1003)] = 21617, - [SMALL_STATE(1004)] = 21677, - [SMALL_STATE(1005)] = 21737, - [SMALL_STATE(1006)] = 21797, - [SMALL_STATE(1007)] = 21857, - [SMALL_STATE(1008)] = 21923, - [SMALL_STATE(1009)] = 21983, - [SMALL_STATE(1010)] = 22043, - [SMALL_STATE(1011)] = 22103, - [SMALL_STATE(1012)] = 22163, - [SMALL_STATE(1013)] = 22223, - [SMALL_STATE(1014)] = 22283, - [SMALL_STATE(1015)] = 22343, - [SMALL_STATE(1016)] = 22403, - [SMALL_STATE(1017)] = 22463, - [SMALL_STATE(1018)] = 22523, - [SMALL_STATE(1019)] = 22583, - [SMALL_STATE(1020)] = 22643, - [SMALL_STATE(1021)] = 22703, - [SMALL_STATE(1022)] = 22763, - [SMALL_STATE(1023)] = 22823, - [SMALL_STATE(1024)] = 22883, - [SMALL_STATE(1025)] = 22943, - [SMALL_STATE(1026)] = 23003, - [SMALL_STATE(1027)] = 23063, - [SMALL_STATE(1028)] = 23123, - [SMALL_STATE(1029)] = 23183, - [SMALL_STATE(1030)] = 23243, - [SMALL_STATE(1031)] = 23303, - [SMALL_STATE(1032)] = 23363, - [SMALL_STATE(1033)] = 23423, - [SMALL_STATE(1034)] = 23483, - [SMALL_STATE(1035)] = 23543, - [SMALL_STATE(1036)] = 23603, - [SMALL_STATE(1037)] = 23663, - [SMALL_STATE(1038)] = 23723, - [SMALL_STATE(1039)] = 23783, - [SMALL_STATE(1040)] = 23843, - [SMALL_STATE(1041)] = 23903, - [SMALL_STATE(1042)] = 23963, - [SMALL_STATE(1043)] = 24023, - [SMALL_STATE(1044)] = 24083, - [SMALL_STATE(1045)] = 24143, - [SMALL_STATE(1046)] = 24207, - [SMALL_STATE(1047)] = 24267, - [SMALL_STATE(1048)] = 24327, - [SMALL_STATE(1049)] = 24387, - [SMALL_STATE(1050)] = 24447, - [SMALL_STATE(1051)] = 24507, - [SMALL_STATE(1052)] = 24567, - [SMALL_STATE(1053)] = 24627, - [SMALL_STATE(1054)] = 24687, - [SMALL_STATE(1055)] = 24747, - [SMALL_STATE(1056)] = 24807, - [SMALL_STATE(1057)] = 24867, - [SMALL_STATE(1058)] = 24927, - [SMALL_STATE(1059)] = 24987, - [SMALL_STATE(1060)] = 25053, - [SMALL_STATE(1061)] = 25113, - [SMALL_STATE(1062)] = 25173, - [SMALL_STATE(1063)] = 25233, - [SMALL_STATE(1064)] = 25293, - [SMALL_STATE(1065)] = 25353, - [SMALL_STATE(1066)] = 25413, - [SMALL_STATE(1067)] = 25473, - [SMALL_STATE(1068)] = 25533, - [SMALL_STATE(1069)] = 25593, - [SMALL_STATE(1070)] = 25653, + [SMALL_STATE(998)] = 21309, + [SMALL_STATE(999)] = 21369, + [SMALL_STATE(1000)] = 21429, + [SMALL_STATE(1001)] = 21489, + [SMALL_STATE(1002)] = 21555, + [SMALL_STATE(1003)] = 21619, + [SMALL_STATE(1004)] = 21685, + [SMALL_STATE(1005)] = 21745, + [SMALL_STATE(1006)] = 21809, + [SMALL_STATE(1007)] = 21869, + [SMALL_STATE(1008)] = 21929, + [SMALL_STATE(1009)] = 21989, + [SMALL_STATE(1010)] = 22049, + [SMALL_STATE(1011)] = 22109, + [SMALL_STATE(1012)] = 22169, + [SMALL_STATE(1013)] = 22229, + [SMALL_STATE(1014)] = 22289, + [SMALL_STATE(1015)] = 22349, + [SMALL_STATE(1016)] = 22409, + [SMALL_STATE(1017)] = 22469, + [SMALL_STATE(1018)] = 22529, + [SMALL_STATE(1019)] = 22589, + [SMALL_STATE(1020)] = 22649, + [SMALL_STATE(1021)] = 22709, + [SMALL_STATE(1022)] = 22769, + [SMALL_STATE(1023)] = 22829, + [SMALL_STATE(1024)] = 22889, + [SMALL_STATE(1025)] = 22949, + [SMALL_STATE(1026)] = 23009, + [SMALL_STATE(1027)] = 23069, + [SMALL_STATE(1028)] = 23129, + [SMALL_STATE(1029)] = 23189, + [SMALL_STATE(1030)] = 23249, + [SMALL_STATE(1031)] = 23309, + [SMALL_STATE(1032)] = 23369, + [SMALL_STATE(1033)] = 23429, + [SMALL_STATE(1034)] = 23489, + [SMALL_STATE(1035)] = 23549, + [SMALL_STATE(1036)] = 23609, + [SMALL_STATE(1037)] = 23669, + [SMALL_STATE(1038)] = 23729, + [SMALL_STATE(1039)] = 23789, + [SMALL_STATE(1040)] = 23849, + [SMALL_STATE(1041)] = 23909, + [SMALL_STATE(1042)] = 23969, + [SMALL_STATE(1043)] = 24029, + [SMALL_STATE(1044)] = 24089, + [SMALL_STATE(1045)] = 24149, + [SMALL_STATE(1046)] = 24209, + [SMALL_STATE(1047)] = 24269, + [SMALL_STATE(1048)] = 24329, + [SMALL_STATE(1049)] = 24389, + [SMALL_STATE(1050)] = 24449, + [SMALL_STATE(1051)] = 24509, + [SMALL_STATE(1052)] = 24569, + [SMALL_STATE(1053)] = 24629, + [SMALL_STATE(1054)] = 24689, + [SMALL_STATE(1055)] = 24749, + [SMALL_STATE(1056)] = 24809, + [SMALL_STATE(1057)] = 24869, + [SMALL_STATE(1058)] = 24929, + [SMALL_STATE(1059)] = 24989, + [SMALL_STATE(1060)] = 25049, + [SMALL_STATE(1061)] = 25109, + [SMALL_STATE(1062)] = 25169, + [SMALL_STATE(1063)] = 25229, + [SMALL_STATE(1064)] = 25289, + [SMALL_STATE(1065)] = 25349, + [SMALL_STATE(1066)] = 25409, + [SMALL_STATE(1067)] = 25469, + [SMALL_STATE(1068)] = 25529, + [SMALL_STATE(1069)] = 25589, + [SMALL_STATE(1070)] = 25649, [SMALL_STATE(1071)] = 25713, [SMALL_STATE(1072)] = 25773, [SMALL_STATE(1073)] = 25833, @@ -300526,210 +294810,210 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1076)] = 26013, [SMALL_STATE(1077)] = 26073, [SMALL_STATE(1078)] = 26133, - [SMALL_STATE(1079)] = 26193, - [SMALL_STATE(1080)] = 26253, - [SMALL_STATE(1081)] = 26313, - [SMALL_STATE(1082)] = 26373, - [SMALL_STATE(1083)] = 26433, - [SMALL_STATE(1084)] = 26493, - [SMALL_STATE(1085)] = 26553, - [SMALL_STATE(1086)] = 26613, - [SMALL_STATE(1087)] = 26673, - [SMALL_STATE(1088)] = 26733, - [SMALL_STATE(1089)] = 26793, - [SMALL_STATE(1090)] = 26853, - [SMALL_STATE(1091)] = 26913, - [SMALL_STATE(1092)] = 26973, - [SMALL_STATE(1093)] = 27037, - [SMALL_STATE(1094)] = 27097, - [SMALL_STATE(1095)] = 27157, - [SMALL_STATE(1096)] = 27217, - [SMALL_STATE(1097)] = 27277, - [SMALL_STATE(1098)] = 27337, - [SMALL_STATE(1099)] = 27397, - [SMALL_STATE(1100)] = 27457, - [SMALL_STATE(1101)] = 27523, - [SMALL_STATE(1102)] = 27583, - [SMALL_STATE(1103)] = 27643, - [SMALL_STATE(1104)] = 27703, - [SMALL_STATE(1105)] = 27763, - [SMALL_STATE(1106)] = 27823, - [SMALL_STATE(1107)] = 27883, - [SMALL_STATE(1108)] = 27943, - [SMALL_STATE(1109)] = 28003, - [SMALL_STATE(1110)] = 28063, - [SMALL_STATE(1111)] = 28123, - [SMALL_STATE(1112)] = 28183, - [SMALL_STATE(1113)] = 28243, - [SMALL_STATE(1114)] = 28303, - [SMALL_STATE(1115)] = 28363, - [SMALL_STATE(1116)] = 28423, - [SMALL_STATE(1117)] = 28483, - [SMALL_STATE(1118)] = 28543, - [SMALL_STATE(1119)] = 28603, - [SMALL_STATE(1120)] = 28663, - [SMALL_STATE(1121)] = 28723, - [SMALL_STATE(1122)] = 28783, - [SMALL_STATE(1123)] = 28843, - [SMALL_STATE(1124)] = 28903, - [SMALL_STATE(1125)] = 28963, - [SMALL_STATE(1126)] = 29023, - [SMALL_STATE(1127)] = 29083, - [SMALL_STATE(1128)] = 29143, - [SMALL_STATE(1129)] = 29203, - [SMALL_STATE(1130)] = 29263, - [SMALL_STATE(1131)] = 29323, - [SMALL_STATE(1132)] = 29383, - [SMALL_STATE(1133)] = 29443, - [SMALL_STATE(1134)] = 29503, - [SMALL_STATE(1135)] = 29563, - [SMALL_STATE(1136)] = 29623, - [SMALL_STATE(1137)] = 29683, - [SMALL_STATE(1138)] = 29743, - [SMALL_STATE(1139)] = 29803, - [SMALL_STATE(1140)] = 29863, - [SMALL_STATE(1141)] = 29923, - [SMALL_STATE(1142)] = 29983, - [SMALL_STATE(1143)] = 30043, - [SMALL_STATE(1144)] = 30103, - [SMALL_STATE(1145)] = 30163, - [SMALL_STATE(1146)] = 30223, - [SMALL_STATE(1147)] = 30283, - [SMALL_STATE(1148)] = 30343, - [SMALL_STATE(1149)] = 30403, - [SMALL_STATE(1150)] = 30463, - [SMALL_STATE(1151)] = 30523, - [SMALL_STATE(1152)] = 30583, - [SMALL_STATE(1153)] = 30643, - [SMALL_STATE(1154)] = 30703, - [SMALL_STATE(1155)] = 30763, - [SMALL_STATE(1156)] = 30829, - [SMALL_STATE(1157)] = 30889, - [SMALL_STATE(1158)] = 30949, - [SMALL_STATE(1159)] = 31009, - [SMALL_STATE(1160)] = 31069, - [SMALL_STATE(1161)] = 31129, - [SMALL_STATE(1162)] = 31189, - [SMALL_STATE(1163)] = 31249, - [SMALL_STATE(1164)] = 31309, - [SMALL_STATE(1165)] = 31369, - [SMALL_STATE(1166)] = 31429, - [SMALL_STATE(1167)] = 31489, - [SMALL_STATE(1168)] = 31549, - [SMALL_STATE(1169)] = 31609, - [SMALL_STATE(1170)] = 31669, - [SMALL_STATE(1171)] = 31729, - [SMALL_STATE(1172)] = 31789, - [SMALL_STATE(1173)] = 31849, - [SMALL_STATE(1174)] = 31909, - [SMALL_STATE(1175)] = 31969, - [SMALL_STATE(1176)] = 32029, - [SMALL_STATE(1177)] = 32089, - [SMALL_STATE(1178)] = 32149, - [SMALL_STATE(1179)] = 32209, - [SMALL_STATE(1180)] = 32269, - [SMALL_STATE(1181)] = 32329, - [SMALL_STATE(1182)] = 32389, - [SMALL_STATE(1183)] = 32449, - [SMALL_STATE(1184)] = 32509, - [SMALL_STATE(1185)] = 32569, - [SMALL_STATE(1186)] = 32633, - [SMALL_STATE(1187)] = 32693, - [SMALL_STATE(1188)] = 32753, - [SMALL_STATE(1189)] = 32813, - [SMALL_STATE(1190)] = 32873, - [SMALL_STATE(1191)] = 32933, - [SMALL_STATE(1192)] = 32993, - [SMALL_STATE(1193)] = 33053, - [SMALL_STATE(1194)] = 33119, - [SMALL_STATE(1195)] = 33179, - [SMALL_STATE(1196)] = 33239, - [SMALL_STATE(1197)] = 33299, - [SMALL_STATE(1198)] = 33359, - [SMALL_STATE(1199)] = 33419, - [SMALL_STATE(1200)] = 33479, - [SMALL_STATE(1201)] = 33539, - [SMALL_STATE(1202)] = 33599, - [SMALL_STATE(1203)] = 33659, - [SMALL_STATE(1204)] = 33719, - [SMALL_STATE(1205)] = 33779, - [SMALL_STATE(1206)] = 33839, - [SMALL_STATE(1207)] = 33899, - [SMALL_STATE(1208)] = 33959, - [SMALL_STATE(1209)] = 34019, - [SMALL_STATE(1210)] = 34079, - [SMALL_STATE(1211)] = 34139, - [SMALL_STATE(1212)] = 34199, - [SMALL_STATE(1213)] = 34259, - [SMALL_STATE(1214)] = 34319, - [SMALL_STATE(1215)] = 34379, - [SMALL_STATE(1216)] = 34439, - [SMALL_STATE(1217)] = 34499, - [SMALL_STATE(1218)] = 34559, - [SMALL_STATE(1219)] = 34619, - [SMALL_STATE(1220)] = 34679, - [SMALL_STATE(1221)] = 34739, - [SMALL_STATE(1222)] = 34799, - [SMALL_STATE(1223)] = 34859, - [SMALL_STATE(1224)] = 34919, - [SMALL_STATE(1225)] = 34979, - [SMALL_STATE(1226)] = 35039, - [SMALL_STATE(1227)] = 35099, - [SMALL_STATE(1228)] = 35159, - [SMALL_STATE(1229)] = 35219, - [SMALL_STATE(1230)] = 35279, - [SMALL_STATE(1231)] = 35339, - [SMALL_STATE(1232)] = 35399, - [SMALL_STATE(1233)] = 35459, - [SMALL_STATE(1234)] = 35519, - [SMALL_STATE(1235)] = 35579, - [SMALL_STATE(1236)] = 35639, - [SMALL_STATE(1237)] = 35699, - [SMALL_STATE(1238)] = 35759, - [SMALL_STATE(1239)] = 35819, - [SMALL_STATE(1240)] = 35879, - [SMALL_STATE(1241)] = 35939, - [SMALL_STATE(1242)] = 35999, - [SMALL_STATE(1243)] = 36059, - [SMALL_STATE(1244)] = 36119, - [SMALL_STATE(1245)] = 36179, - [SMALL_STATE(1246)] = 36239, - [SMALL_STATE(1247)] = 36299, - [SMALL_STATE(1248)] = 36365, - [SMALL_STATE(1249)] = 36425, - [SMALL_STATE(1250)] = 36485, - [SMALL_STATE(1251)] = 36545, - [SMALL_STATE(1252)] = 36605, - [SMALL_STATE(1253)] = 36665, - [SMALL_STATE(1254)] = 36725, - [SMALL_STATE(1255)] = 36785, - [SMALL_STATE(1256)] = 36845, - [SMALL_STATE(1257)] = 36905, - [SMALL_STATE(1258)] = 36965, - [SMALL_STATE(1259)] = 37025, - [SMALL_STATE(1260)] = 37085, - [SMALL_STATE(1261)] = 37145, - [SMALL_STATE(1262)] = 37205, - [SMALL_STATE(1263)] = 37265, - [SMALL_STATE(1264)] = 37325, - [SMALL_STATE(1265)] = 37391, - [SMALL_STATE(1266)] = 37451, - [SMALL_STATE(1267)] = 37511, - [SMALL_STATE(1268)] = 37571, - [SMALL_STATE(1269)] = 37631, - [SMALL_STATE(1270)] = 37691, - [SMALL_STATE(1271)] = 37751, - [SMALL_STATE(1272)] = 37811, - [SMALL_STATE(1273)] = 37871, - [SMALL_STATE(1274)] = 37931, - [SMALL_STATE(1275)] = 37991, - [SMALL_STATE(1276)] = 38051, - [SMALL_STATE(1277)] = 38111, - [SMALL_STATE(1278)] = 38171, - [SMALL_STATE(1279)] = 38231, - [SMALL_STATE(1280)] = 38291, - [SMALL_STATE(1281)] = 38351, - [SMALL_STATE(1282)] = 38411, + [SMALL_STATE(1079)] = 26199, + [SMALL_STATE(1080)] = 26259, + [SMALL_STATE(1081)] = 26319, + [SMALL_STATE(1082)] = 26379, + [SMALL_STATE(1083)] = 26439, + [SMALL_STATE(1084)] = 26499, + [SMALL_STATE(1085)] = 26559, + [SMALL_STATE(1086)] = 26619, + [SMALL_STATE(1087)] = 26679, + [SMALL_STATE(1088)] = 26739, + [SMALL_STATE(1089)] = 26799, + [SMALL_STATE(1090)] = 26859, + [SMALL_STATE(1091)] = 26919, + [SMALL_STATE(1092)] = 26979, + [SMALL_STATE(1093)] = 27039, + [SMALL_STATE(1094)] = 27099, + [SMALL_STATE(1095)] = 27159, + [SMALL_STATE(1096)] = 27219, + [SMALL_STATE(1097)] = 27279, + [SMALL_STATE(1098)] = 27339, + [SMALL_STATE(1099)] = 27399, + [SMALL_STATE(1100)] = 27459, + [SMALL_STATE(1101)] = 27519, + [SMALL_STATE(1102)] = 27579, + [SMALL_STATE(1103)] = 27639, + [SMALL_STATE(1104)] = 27699, + [SMALL_STATE(1105)] = 27759, + [SMALL_STATE(1106)] = 27819, + [SMALL_STATE(1107)] = 27885, + [SMALL_STATE(1108)] = 27945, + [SMALL_STATE(1109)] = 28005, + [SMALL_STATE(1110)] = 28065, + [SMALL_STATE(1111)] = 28125, + [SMALL_STATE(1112)] = 28185, + [SMALL_STATE(1113)] = 28245, + [SMALL_STATE(1114)] = 28305, + [SMALL_STATE(1115)] = 28365, + [SMALL_STATE(1116)] = 28425, + [SMALL_STATE(1117)] = 28485, + [SMALL_STATE(1118)] = 28545, + [SMALL_STATE(1119)] = 28605, + [SMALL_STATE(1120)] = 28665, + [SMALL_STATE(1121)] = 28725, + [SMALL_STATE(1122)] = 28785, + [SMALL_STATE(1123)] = 28845, + [SMALL_STATE(1124)] = 28905, + [SMALL_STATE(1125)] = 28965, + [SMALL_STATE(1126)] = 29025, + [SMALL_STATE(1127)] = 29085, + [SMALL_STATE(1128)] = 29145, + [SMALL_STATE(1129)] = 29205, + [SMALL_STATE(1130)] = 29265, + [SMALL_STATE(1131)] = 29325, + [SMALL_STATE(1132)] = 29385, + [SMALL_STATE(1133)] = 29445, + [SMALL_STATE(1134)] = 29505, + [SMALL_STATE(1135)] = 29565, + [SMALL_STATE(1136)] = 29625, + [SMALL_STATE(1137)] = 29685, + [SMALL_STATE(1138)] = 29745, + [SMALL_STATE(1139)] = 29805, + [SMALL_STATE(1140)] = 29865, + [SMALL_STATE(1141)] = 29925, + [SMALL_STATE(1142)] = 29985, + [SMALL_STATE(1143)] = 30045, + [SMALL_STATE(1144)] = 30105, + [SMALL_STATE(1145)] = 30165, + [SMALL_STATE(1146)] = 30225, + [SMALL_STATE(1147)] = 30285, + [SMALL_STATE(1148)] = 30345, + [SMALL_STATE(1149)] = 30405, + [SMALL_STATE(1150)] = 30465, + [SMALL_STATE(1151)] = 30531, + [SMALL_STATE(1152)] = 30591, + [SMALL_STATE(1153)] = 30651, + [SMALL_STATE(1154)] = 30711, + [SMALL_STATE(1155)] = 30771, + [SMALL_STATE(1156)] = 30831, + [SMALL_STATE(1157)] = 30891, + [SMALL_STATE(1158)] = 30951, + [SMALL_STATE(1159)] = 31011, + [SMALL_STATE(1160)] = 31071, + [SMALL_STATE(1161)] = 31131, + [SMALL_STATE(1162)] = 31195, + [SMALL_STATE(1163)] = 31255, + [SMALL_STATE(1164)] = 31315, + [SMALL_STATE(1165)] = 31375, + [SMALL_STATE(1166)] = 31435, + [SMALL_STATE(1167)] = 31495, + [SMALL_STATE(1168)] = 31555, + [SMALL_STATE(1169)] = 31615, + [SMALL_STATE(1170)] = 31681, + [SMALL_STATE(1171)] = 31741, + [SMALL_STATE(1172)] = 31801, + [SMALL_STATE(1173)] = 31861, + [SMALL_STATE(1174)] = 31921, + [SMALL_STATE(1175)] = 31981, + [SMALL_STATE(1176)] = 32041, + [SMALL_STATE(1177)] = 32101, + [SMALL_STATE(1178)] = 32161, + [SMALL_STATE(1179)] = 32221, + [SMALL_STATE(1180)] = 32281, + [SMALL_STATE(1181)] = 32341, + [SMALL_STATE(1182)] = 32401, + [SMALL_STATE(1183)] = 32461, + [SMALL_STATE(1184)] = 32521, + [SMALL_STATE(1185)] = 32581, + [SMALL_STATE(1186)] = 32641, + [SMALL_STATE(1187)] = 32701, + [SMALL_STATE(1188)] = 32761, + [SMALL_STATE(1189)] = 32821, + [SMALL_STATE(1190)] = 32881, + [SMALL_STATE(1191)] = 32941, + [SMALL_STATE(1192)] = 33001, + [SMALL_STATE(1193)] = 33061, + [SMALL_STATE(1194)] = 33121, + [SMALL_STATE(1195)] = 33181, + [SMALL_STATE(1196)] = 33241, + [SMALL_STATE(1197)] = 33301, + [SMALL_STATE(1198)] = 33361, + [SMALL_STATE(1199)] = 33421, + [SMALL_STATE(1200)] = 33481, + [SMALL_STATE(1201)] = 33541, + [SMALL_STATE(1202)] = 33601, + [SMALL_STATE(1203)] = 33661, + [SMALL_STATE(1204)] = 33721, + [SMALL_STATE(1205)] = 33781, + [SMALL_STATE(1206)] = 33841, + [SMALL_STATE(1207)] = 33901, + [SMALL_STATE(1208)] = 33961, + [SMALL_STATE(1209)] = 34021, + [SMALL_STATE(1210)] = 34085, + [SMALL_STATE(1211)] = 34145, + [SMALL_STATE(1212)] = 34205, + [SMALL_STATE(1213)] = 34265, + [SMALL_STATE(1214)] = 34325, + [SMALL_STATE(1215)] = 34385, + [SMALL_STATE(1216)] = 34445, + [SMALL_STATE(1217)] = 34505, + [SMALL_STATE(1218)] = 34565, + [SMALL_STATE(1219)] = 34625, + [SMALL_STATE(1220)] = 34685, + [SMALL_STATE(1221)] = 34745, + [SMALL_STATE(1222)] = 34805, + [SMALL_STATE(1223)] = 34865, + [SMALL_STATE(1224)] = 34925, + [SMALL_STATE(1225)] = 34985, + [SMALL_STATE(1226)] = 35045, + [SMALL_STATE(1227)] = 35105, + [SMALL_STATE(1228)] = 35165, + [SMALL_STATE(1229)] = 35225, + [SMALL_STATE(1230)] = 35285, + [SMALL_STATE(1231)] = 35345, + [SMALL_STATE(1232)] = 35405, + [SMALL_STATE(1233)] = 35465, + [SMALL_STATE(1234)] = 35525, + [SMALL_STATE(1235)] = 35585, + [SMALL_STATE(1236)] = 35645, + [SMALL_STATE(1237)] = 35705, + [SMALL_STATE(1238)] = 35765, + [SMALL_STATE(1239)] = 35831, + [SMALL_STATE(1240)] = 35891, + [SMALL_STATE(1241)] = 35951, + [SMALL_STATE(1242)] = 36011, + [SMALL_STATE(1243)] = 36071, + [SMALL_STATE(1244)] = 36131, + [SMALL_STATE(1245)] = 36191, + [SMALL_STATE(1246)] = 36251, + [SMALL_STATE(1247)] = 36311, + [SMALL_STATE(1248)] = 36371, + [SMALL_STATE(1249)] = 36431, + [SMALL_STATE(1250)] = 36491, + [SMALL_STATE(1251)] = 36551, + [SMALL_STATE(1252)] = 36611, + [SMALL_STATE(1253)] = 36671, + [SMALL_STATE(1254)] = 36731, + [SMALL_STATE(1255)] = 36791, + [SMALL_STATE(1256)] = 36851, + [SMALL_STATE(1257)] = 36911, + [SMALL_STATE(1258)] = 36971, + [SMALL_STATE(1259)] = 37037, + [SMALL_STATE(1260)] = 37097, + [SMALL_STATE(1261)] = 37157, + [SMALL_STATE(1262)] = 37217, + [SMALL_STATE(1263)] = 37277, + [SMALL_STATE(1264)] = 37337, + [SMALL_STATE(1265)] = 37397, + [SMALL_STATE(1266)] = 37457, + [SMALL_STATE(1267)] = 37517, + [SMALL_STATE(1268)] = 37577, + [SMALL_STATE(1269)] = 37637, + [SMALL_STATE(1270)] = 37697, + [SMALL_STATE(1271)] = 37757, + [SMALL_STATE(1272)] = 37817, + [SMALL_STATE(1273)] = 37877, + [SMALL_STATE(1274)] = 37937, + [SMALL_STATE(1275)] = 37997, + [SMALL_STATE(1276)] = 38057, + [SMALL_STATE(1277)] = 38117, + [SMALL_STATE(1278)] = 38177, + [SMALL_STATE(1279)] = 38237, + [SMALL_STATE(1280)] = 38297, + [SMALL_STATE(1281)] = 38357, + [SMALL_STATE(1282)] = 38417, [SMALL_STATE(1283)] = 38477, [SMALL_STATE(1284)] = 38537, [SMALL_STATE(1285)] = 38597, @@ -300821,170 +295105,170 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1371)] = 43757, [SMALL_STATE(1372)] = 43817, [SMALL_STATE(1373)] = 43877, - [SMALL_STATE(1374)] = 43943, - [SMALL_STATE(1375)] = 44003, - [SMALL_STATE(1376)] = 44063, - [SMALL_STATE(1377)] = 44123, - [SMALL_STATE(1378)] = 44183, - [SMALL_STATE(1379)] = 44243, - [SMALL_STATE(1380)] = 44303, - [SMALL_STATE(1381)] = 44363, - [SMALL_STATE(1382)] = 44423, - [SMALL_STATE(1383)] = 44483, - [SMALL_STATE(1384)] = 44543, - [SMALL_STATE(1385)] = 44603, - [SMALL_STATE(1386)] = 44663, - [SMALL_STATE(1387)] = 44723, - [SMALL_STATE(1388)] = 44783, - [SMALL_STATE(1389)] = 44843, - [SMALL_STATE(1390)] = 44903, - [SMALL_STATE(1391)] = 44963, - [SMALL_STATE(1392)] = 45023, - [SMALL_STATE(1393)] = 45083, - [SMALL_STATE(1394)] = 45143, - [SMALL_STATE(1395)] = 45203, - [SMALL_STATE(1396)] = 45263, - [SMALL_STATE(1397)] = 45323, - [SMALL_STATE(1398)] = 45383, - [SMALL_STATE(1399)] = 45443, - [SMALL_STATE(1400)] = 45503, - [SMALL_STATE(1401)] = 45563, - [SMALL_STATE(1402)] = 45623, - [SMALL_STATE(1403)] = 45683, - [SMALL_STATE(1404)] = 45743, - [SMALL_STATE(1405)] = 45803, - [SMALL_STATE(1406)] = 45863, - [SMALL_STATE(1407)] = 45923, - [SMALL_STATE(1408)] = 45983, - [SMALL_STATE(1409)] = 46043, - [SMALL_STATE(1410)] = 46103, - [SMALL_STATE(1411)] = 46163, - [SMALL_STATE(1412)] = 46223, - [SMALL_STATE(1413)] = 46283, - [SMALL_STATE(1414)] = 46343, - [SMALL_STATE(1415)] = 46403, - [SMALL_STATE(1416)] = 46463, - [SMALL_STATE(1417)] = 46523, - [SMALL_STATE(1418)] = 46583, - [SMALL_STATE(1419)] = 46643, - [SMALL_STATE(1420)] = 46703, - [SMALL_STATE(1421)] = 46763, - [SMALL_STATE(1422)] = 46823, - [SMALL_STATE(1423)] = 46883, - [SMALL_STATE(1424)] = 46943, - [SMALL_STATE(1425)] = 47003, - [SMALL_STATE(1426)] = 47063, - [SMALL_STATE(1427)] = 47123, - [SMALL_STATE(1428)] = 47183, - [SMALL_STATE(1429)] = 47243, - [SMALL_STATE(1430)] = 47303, - [SMALL_STATE(1431)] = 47363, - [SMALL_STATE(1432)] = 47423, - [SMALL_STATE(1433)] = 47483, - [SMALL_STATE(1434)] = 47543, - [SMALL_STATE(1435)] = 47603, - [SMALL_STATE(1436)] = 47663, - [SMALL_STATE(1437)] = 47723, - [SMALL_STATE(1438)] = 47783, - [SMALL_STATE(1439)] = 47843, - [SMALL_STATE(1440)] = 47903, - [SMALL_STATE(1441)] = 47963, - [SMALL_STATE(1442)] = 48023, - [SMALL_STATE(1443)] = 48083, - [SMALL_STATE(1444)] = 48143, - [SMALL_STATE(1445)] = 48203, - [SMALL_STATE(1446)] = 48263, - [SMALL_STATE(1447)] = 48323, - [SMALL_STATE(1448)] = 48383, - [SMALL_STATE(1449)] = 48443, - [SMALL_STATE(1450)] = 48503, - [SMALL_STATE(1451)] = 48563, - [SMALL_STATE(1452)] = 48623, - [SMALL_STATE(1453)] = 48683, - [SMALL_STATE(1454)] = 48743, - [SMALL_STATE(1455)] = 48803, - [SMALL_STATE(1456)] = 48863, - [SMALL_STATE(1457)] = 48923, - [SMALL_STATE(1458)] = 48983, - [SMALL_STATE(1459)] = 49043, - [SMALL_STATE(1460)] = 49103, - [SMALL_STATE(1461)] = 49163, - [SMALL_STATE(1462)] = 49223, - [SMALL_STATE(1463)] = 49283, - [SMALL_STATE(1464)] = 49343, - [SMALL_STATE(1465)] = 49403, - [SMALL_STATE(1466)] = 49463, - [SMALL_STATE(1467)] = 49523, - [SMALL_STATE(1468)] = 49583, - [SMALL_STATE(1469)] = 49643, - [SMALL_STATE(1470)] = 49703, - [SMALL_STATE(1471)] = 49763, - [SMALL_STATE(1472)] = 49823, - [SMALL_STATE(1473)] = 49883, - [SMALL_STATE(1474)] = 49943, - [SMALL_STATE(1475)] = 50003, - [SMALL_STATE(1476)] = 50063, - [SMALL_STATE(1477)] = 50123, - [SMALL_STATE(1478)] = 50183, - [SMALL_STATE(1479)] = 50243, - [SMALL_STATE(1480)] = 50303, - [SMALL_STATE(1481)] = 50363, - [SMALL_STATE(1482)] = 50423, - [SMALL_STATE(1483)] = 50483, - [SMALL_STATE(1484)] = 50543, - [SMALL_STATE(1485)] = 50603, - [SMALL_STATE(1486)] = 50663, - [SMALL_STATE(1487)] = 50723, - [SMALL_STATE(1488)] = 50783, - [SMALL_STATE(1489)] = 50843, - [SMALL_STATE(1490)] = 50903, - [SMALL_STATE(1491)] = 50963, - [SMALL_STATE(1492)] = 51023, - [SMALL_STATE(1493)] = 51083, - [SMALL_STATE(1494)] = 51143, - [SMALL_STATE(1495)] = 51203, - [SMALL_STATE(1496)] = 51263, - [SMALL_STATE(1497)] = 51323, - [SMALL_STATE(1498)] = 51383, - [SMALL_STATE(1499)] = 51443, - [SMALL_STATE(1500)] = 51503, - [SMALL_STATE(1501)] = 51563, - [SMALL_STATE(1502)] = 51623, - [SMALL_STATE(1503)] = 51683, - [SMALL_STATE(1504)] = 51743, - [SMALL_STATE(1505)] = 51803, - [SMALL_STATE(1506)] = 51863, - [SMALL_STATE(1507)] = 51923, - [SMALL_STATE(1508)] = 51983, - [SMALL_STATE(1509)] = 52043, - [SMALL_STATE(1510)] = 52103, - [SMALL_STATE(1511)] = 52163, - [SMALL_STATE(1512)] = 52223, - [SMALL_STATE(1513)] = 52283, - [SMALL_STATE(1514)] = 52343, - [SMALL_STATE(1515)] = 52403, - [SMALL_STATE(1516)] = 52463, - [SMALL_STATE(1517)] = 52523, - [SMALL_STATE(1518)] = 52583, - [SMALL_STATE(1519)] = 52643, - [SMALL_STATE(1520)] = 52703, - [SMALL_STATE(1521)] = 52763, - [SMALL_STATE(1522)] = 52823, - [SMALL_STATE(1523)] = 52883, - [SMALL_STATE(1524)] = 52943, - [SMALL_STATE(1525)] = 53003, - [SMALL_STATE(1526)] = 53063, - [SMALL_STATE(1527)] = 53123, - [SMALL_STATE(1528)] = 53183, - [SMALL_STATE(1529)] = 53243, - [SMALL_STATE(1530)] = 53303, - [SMALL_STATE(1531)] = 53363, - [SMALL_STATE(1532)] = 53423, - [SMALL_STATE(1533)] = 53483, - [SMALL_STATE(1534)] = 53543, - [SMALL_STATE(1535)] = 53603, - [SMALL_STATE(1536)] = 53663, - [SMALL_STATE(1537)] = 53723, + [SMALL_STATE(1374)] = 43937, + [SMALL_STATE(1375)] = 43997, + [SMALL_STATE(1376)] = 44057, + [SMALL_STATE(1377)] = 44117, + [SMALL_STATE(1378)] = 44177, + [SMALL_STATE(1379)] = 44237, + [SMALL_STATE(1380)] = 44297, + [SMALL_STATE(1381)] = 44357, + [SMALL_STATE(1382)] = 44417, + [SMALL_STATE(1383)] = 44477, + [SMALL_STATE(1384)] = 44537, + [SMALL_STATE(1385)] = 44597, + [SMALL_STATE(1386)] = 44657, + [SMALL_STATE(1387)] = 44717, + [SMALL_STATE(1388)] = 44777, + [SMALL_STATE(1389)] = 44837, + [SMALL_STATE(1390)] = 44897, + [SMALL_STATE(1391)] = 44957, + [SMALL_STATE(1392)] = 45017, + [SMALL_STATE(1393)] = 45077, + [SMALL_STATE(1394)] = 45137, + [SMALL_STATE(1395)] = 45197, + [SMALL_STATE(1396)] = 45257, + [SMALL_STATE(1397)] = 45317, + [SMALL_STATE(1398)] = 45377, + [SMALL_STATE(1399)] = 45437, + [SMALL_STATE(1400)] = 45497, + [SMALL_STATE(1401)] = 45557, + [SMALL_STATE(1402)] = 45617, + [SMALL_STATE(1403)] = 45677, + [SMALL_STATE(1404)] = 45737, + [SMALL_STATE(1405)] = 45797, + [SMALL_STATE(1406)] = 45857, + [SMALL_STATE(1407)] = 45917, + [SMALL_STATE(1408)] = 45977, + [SMALL_STATE(1409)] = 46037, + [SMALL_STATE(1410)] = 46097, + [SMALL_STATE(1411)] = 46157, + [SMALL_STATE(1412)] = 46217, + [SMALL_STATE(1413)] = 46277, + [SMALL_STATE(1414)] = 46337, + [SMALL_STATE(1415)] = 46397, + [SMALL_STATE(1416)] = 46457, + [SMALL_STATE(1417)] = 46517, + [SMALL_STATE(1418)] = 46577, + [SMALL_STATE(1419)] = 46637, + [SMALL_STATE(1420)] = 46697, + [SMALL_STATE(1421)] = 46757, + [SMALL_STATE(1422)] = 46817, + [SMALL_STATE(1423)] = 46877, + [SMALL_STATE(1424)] = 46937, + [SMALL_STATE(1425)] = 46997, + [SMALL_STATE(1426)] = 47057, + [SMALL_STATE(1427)] = 47117, + [SMALL_STATE(1428)] = 47177, + [SMALL_STATE(1429)] = 47237, + [SMALL_STATE(1430)] = 47297, + [SMALL_STATE(1431)] = 47357, + [SMALL_STATE(1432)] = 47417, + [SMALL_STATE(1433)] = 47477, + [SMALL_STATE(1434)] = 47537, + [SMALL_STATE(1435)] = 47597, + [SMALL_STATE(1436)] = 47657, + [SMALL_STATE(1437)] = 47717, + [SMALL_STATE(1438)] = 47777, + [SMALL_STATE(1439)] = 47837, + [SMALL_STATE(1440)] = 47897, + [SMALL_STATE(1441)] = 47957, + [SMALL_STATE(1442)] = 48017, + [SMALL_STATE(1443)] = 48077, + [SMALL_STATE(1444)] = 48137, + [SMALL_STATE(1445)] = 48197, + [SMALL_STATE(1446)] = 48257, + [SMALL_STATE(1447)] = 48317, + [SMALL_STATE(1448)] = 48377, + [SMALL_STATE(1449)] = 48437, + [SMALL_STATE(1450)] = 48497, + [SMALL_STATE(1451)] = 48557, + [SMALL_STATE(1452)] = 48617, + [SMALL_STATE(1453)] = 48677, + [SMALL_STATE(1454)] = 48737, + [SMALL_STATE(1455)] = 48797, + [SMALL_STATE(1456)] = 48857, + [SMALL_STATE(1457)] = 48917, + [SMALL_STATE(1458)] = 48977, + [SMALL_STATE(1459)] = 49037, + [SMALL_STATE(1460)] = 49097, + [SMALL_STATE(1461)] = 49157, + [SMALL_STATE(1462)] = 49217, + [SMALL_STATE(1463)] = 49277, + [SMALL_STATE(1464)] = 49337, + [SMALL_STATE(1465)] = 49397, + [SMALL_STATE(1466)] = 49457, + [SMALL_STATE(1467)] = 49517, + [SMALL_STATE(1468)] = 49577, + [SMALL_STATE(1469)] = 49637, + [SMALL_STATE(1470)] = 49697, + [SMALL_STATE(1471)] = 49757, + [SMALL_STATE(1472)] = 49817, + [SMALL_STATE(1473)] = 49877, + [SMALL_STATE(1474)] = 49937, + [SMALL_STATE(1475)] = 49997, + [SMALL_STATE(1476)] = 50057, + [SMALL_STATE(1477)] = 50117, + [SMALL_STATE(1478)] = 50177, + [SMALL_STATE(1479)] = 50237, + [SMALL_STATE(1480)] = 50297, + [SMALL_STATE(1481)] = 50357, + [SMALL_STATE(1482)] = 50417, + [SMALL_STATE(1483)] = 50477, + [SMALL_STATE(1484)] = 50537, + [SMALL_STATE(1485)] = 50597, + [SMALL_STATE(1486)] = 50657, + [SMALL_STATE(1487)] = 50717, + [SMALL_STATE(1488)] = 50777, + [SMALL_STATE(1489)] = 50837, + [SMALL_STATE(1490)] = 50897, + [SMALL_STATE(1491)] = 50957, + [SMALL_STATE(1492)] = 51017, + [SMALL_STATE(1493)] = 51077, + [SMALL_STATE(1494)] = 51137, + [SMALL_STATE(1495)] = 51197, + [SMALL_STATE(1496)] = 51257, + [SMALL_STATE(1497)] = 51317, + [SMALL_STATE(1498)] = 51377, + [SMALL_STATE(1499)] = 51437, + [SMALL_STATE(1500)] = 51497, + [SMALL_STATE(1501)] = 51557, + [SMALL_STATE(1502)] = 51617, + [SMALL_STATE(1503)] = 51677, + [SMALL_STATE(1504)] = 51737, + [SMALL_STATE(1505)] = 51797, + [SMALL_STATE(1506)] = 51857, + [SMALL_STATE(1507)] = 51917, + [SMALL_STATE(1508)] = 51977, + [SMALL_STATE(1509)] = 52037, + [SMALL_STATE(1510)] = 52097, + [SMALL_STATE(1511)] = 52157, + [SMALL_STATE(1512)] = 52217, + [SMALL_STATE(1513)] = 52277, + [SMALL_STATE(1514)] = 52337, + [SMALL_STATE(1515)] = 52397, + [SMALL_STATE(1516)] = 52457, + [SMALL_STATE(1517)] = 52517, + [SMALL_STATE(1518)] = 52577, + [SMALL_STATE(1519)] = 52637, + [SMALL_STATE(1520)] = 52697, + [SMALL_STATE(1521)] = 52757, + [SMALL_STATE(1522)] = 52817, + [SMALL_STATE(1523)] = 52877, + [SMALL_STATE(1524)] = 52937, + [SMALL_STATE(1525)] = 52997, + [SMALL_STATE(1526)] = 53057, + [SMALL_STATE(1527)] = 53117, + [SMALL_STATE(1528)] = 53177, + [SMALL_STATE(1529)] = 53237, + [SMALL_STATE(1530)] = 53297, + [SMALL_STATE(1531)] = 53357, + [SMALL_STATE(1532)] = 53417, + [SMALL_STATE(1533)] = 53477, + [SMALL_STATE(1534)] = 53537, + [SMALL_STATE(1535)] = 53597, + [SMALL_STATE(1536)] = 53657, + [SMALL_STATE(1537)] = 53717, [SMALL_STATE(1538)] = 53783, [SMALL_STATE(1539)] = 53843, [SMALL_STATE(1540)] = 53903, @@ -301102,56 +295386,56 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1652)] = 60623, [SMALL_STATE(1653)] = 60683, [SMALL_STATE(1654)] = 60743, - [SMALL_STATE(1655)] = 60809, - [SMALL_STATE(1656)] = 60869, - [SMALL_STATE(1657)] = 60929, - [SMALL_STATE(1658)] = 60989, - [SMALL_STATE(1659)] = 61049, - [SMALL_STATE(1660)] = 61109, - [SMALL_STATE(1661)] = 61169, - [SMALL_STATE(1662)] = 61229, - [SMALL_STATE(1663)] = 61289, - [SMALL_STATE(1664)] = 61349, - [SMALL_STATE(1665)] = 61409, - [SMALL_STATE(1666)] = 61469, - [SMALL_STATE(1667)] = 61529, - [SMALL_STATE(1668)] = 61589, - [SMALL_STATE(1669)] = 61649, - [SMALL_STATE(1670)] = 61709, - [SMALL_STATE(1671)] = 61769, - [SMALL_STATE(1672)] = 61829, - [SMALL_STATE(1673)] = 61889, - [SMALL_STATE(1674)] = 61949, - [SMALL_STATE(1675)] = 62009, - [SMALL_STATE(1676)] = 62069, - [SMALL_STATE(1677)] = 62129, - [SMALL_STATE(1678)] = 62189, - [SMALL_STATE(1679)] = 62249, - [SMALL_STATE(1680)] = 62309, - [SMALL_STATE(1681)] = 62369, - [SMALL_STATE(1682)] = 62429, - [SMALL_STATE(1683)] = 62489, - [SMALL_STATE(1684)] = 62549, - [SMALL_STATE(1685)] = 62609, - [SMALL_STATE(1686)] = 62669, - [SMALL_STATE(1687)] = 62729, - [SMALL_STATE(1688)] = 62789, - [SMALL_STATE(1689)] = 62849, - [SMALL_STATE(1690)] = 62909, - [SMALL_STATE(1691)] = 62969, - [SMALL_STATE(1692)] = 63029, - [SMALL_STATE(1693)] = 63089, - [SMALL_STATE(1694)] = 63149, - [SMALL_STATE(1695)] = 63209, - [SMALL_STATE(1696)] = 63269, - [SMALL_STATE(1697)] = 63329, - [SMALL_STATE(1698)] = 63389, - [SMALL_STATE(1699)] = 63449, - [SMALL_STATE(1700)] = 63509, - [SMALL_STATE(1701)] = 63569, - [SMALL_STATE(1702)] = 63629, - [SMALL_STATE(1703)] = 63689, - [SMALL_STATE(1704)] = 63749, + [SMALL_STATE(1655)] = 60803, + [SMALL_STATE(1656)] = 60863, + [SMALL_STATE(1657)] = 60923, + [SMALL_STATE(1658)] = 60983, + [SMALL_STATE(1659)] = 61043, + [SMALL_STATE(1660)] = 61103, + [SMALL_STATE(1661)] = 61163, + [SMALL_STATE(1662)] = 61223, + [SMALL_STATE(1663)] = 61283, + [SMALL_STATE(1664)] = 61343, + [SMALL_STATE(1665)] = 61403, + [SMALL_STATE(1666)] = 61463, + [SMALL_STATE(1667)] = 61523, + [SMALL_STATE(1668)] = 61583, + [SMALL_STATE(1669)] = 61643, + [SMALL_STATE(1670)] = 61703, + [SMALL_STATE(1671)] = 61763, + [SMALL_STATE(1672)] = 61823, + [SMALL_STATE(1673)] = 61883, + [SMALL_STATE(1674)] = 61943, + [SMALL_STATE(1675)] = 62003, + [SMALL_STATE(1676)] = 62063, + [SMALL_STATE(1677)] = 62123, + [SMALL_STATE(1678)] = 62183, + [SMALL_STATE(1679)] = 62243, + [SMALL_STATE(1680)] = 62303, + [SMALL_STATE(1681)] = 62363, + [SMALL_STATE(1682)] = 62423, + [SMALL_STATE(1683)] = 62483, + [SMALL_STATE(1684)] = 62543, + [SMALL_STATE(1685)] = 62603, + [SMALL_STATE(1686)] = 62663, + [SMALL_STATE(1687)] = 62723, + [SMALL_STATE(1688)] = 62783, + [SMALL_STATE(1689)] = 62843, + [SMALL_STATE(1690)] = 62903, + [SMALL_STATE(1691)] = 62963, + [SMALL_STATE(1692)] = 63023, + [SMALL_STATE(1693)] = 63083, + [SMALL_STATE(1694)] = 63143, + [SMALL_STATE(1695)] = 63203, + [SMALL_STATE(1696)] = 63263, + [SMALL_STATE(1697)] = 63323, + [SMALL_STATE(1698)] = 63383, + [SMALL_STATE(1699)] = 63443, + [SMALL_STATE(1700)] = 63503, + [SMALL_STATE(1701)] = 63563, + [SMALL_STATE(1702)] = 63623, + [SMALL_STATE(1703)] = 63683, + [SMALL_STATE(1704)] = 63743, [SMALL_STATE(1705)] = 63809, [SMALL_STATE(1706)] = 63869, [SMALL_STATE(1707)] = 63929, @@ -301235,43 +295519,43 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1785)] = 68609, [SMALL_STATE(1786)] = 68669, [SMALL_STATE(1787)] = 68729, - [SMALL_STATE(1788)] = 68789, - [SMALL_STATE(1789)] = 68849, - [SMALL_STATE(1790)] = 68909, - [SMALL_STATE(1791)] = 68969, - [SMALL_STATE(1792)] = 69029, - [SMALL_STATE(1793)] = 69089, - [SMALL_STATE(1794)] = 69149, - [SMALL_STATE(1795)] = 69209, - [SMALL_STATE(1796)] = 69269, - [SMALL_STATE(1797)] = 69329, - [SMALL_STATE(1798)] = 69389, - [SMALL_STATE(1799)] = 69449, - [SMALL_STATE(1800)] = 69509, - [SMALL_STATE(1801)] = 69569, - [SMALL_STATE(1802)] = 69629, - [SMALL_STATE(1803)] = 69689, - [SMALL_STATE(1804)] = 69749, - [SMALL_STATE(1805)] = 69809, - [SMALL_STATE(1806)] = 69869, - [SMALL_STATE(1807)] = 69929, - [SMALL_STATE(1808)] = 69989, - [SMALL_STATE(1809)] = 70049, - [SMALL_STATE(1810)] = 70109, - [SMALL_STATE(1811)] = 70169, - [SMALL_STATE(1812)] = 70229, - [SMALL_STATE(1813)] = 70289, - [SMALL_STATE(1814)] = 70349, - [SMALL_STATE(1815)] = 70409, - [SMALL_STATE(1816)] = 70469, - [SMALL_STATE(1817)] = 70529, - [SMALL_STATE(1818)] = 70589, - [SMALL_STATE(1819)] = 70649, - [SMALL_STATE(1820)] = 70709, - [SMALL_STATE(1821)] = 70769, - [SMALL_STATE(1822)] = 70829, - [SMALL_STATE(1823)] = 70889, - [SMALL_STATE(1824)] = 70949, + [SMALL_STATE(1788)] = 68795, + [SMALL_STATE(1789)] = 68855, + [SMALL_STATE(1790)] = 68915, + [SMALL_STATE(1791)] = 68975, + [SMALL_STATE(1792)] = 69035, + [SMALL_STATE(1793)] = 69095, + [SMALL_STATE(1794)] = 69155, + [SMALL_STATE(1795)] = 69215, + [SMALL_STATE(1796)] = 69275, + [SMALL_STATE(1797)] = 69335, + [SMALL_STATE(1798)] = 69395, + [SMALL_STATE(1799)] = 69455, + [SMALL_STATE(1800)] = 69515, + [SMALL_STATE(1801)] = 69575, + [SMALL_STATE(1802)] = 69635, + [SMALL_STATE(1803)] = 69695, + [SMALL_STATE(1804)] = 69755, + [SMALL_STATE(1805)] = 69815, + [SMALL_STATE(1806)] = 69875, + [SMALL_STATE(1807)] = 69935, + [SMALL_STATE(1808)] = 69995, + [SMALL_STATE(1809)] = 70055, + [SMALL_STATE(1810)] = 70115, + [SMALL_STATE(1811)] = 70175, + [SMALL_STATE(1812)] = 70235, + [SMALL_STATE(1813)] = 70295, + [SMALL_STATE(1814)] = 70355, + [SMALL_STATE(1815)] = 70415, + [SMALL_STATE(1816)] = 70475, + [SMALL_STATE(1817)] = 70535, + [SMALL_STATE(1818)] = 70595, + [SMALL_STATE(1819)] = 70655, + [SMALL_STATE(1820)] = 70715, + [SMALL_STATE(1821)] = 70775, + [SMALL_STATE(1822)] = 70835, + [SMALL_STATE(1823)] = 70895, + [SMALL_STATE(1824)] = 70955, [SMALL_STATE(1825)] = 71015, [SMALL_STATE(1826)] = 71075, [SMALL_STATE(1827)] = 71135, @@ -301318,45 +295602,45 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1868)] = 73595, [SMALL_STATE(1869)] = 73655, [SMALL_STATE(1870)] = 73715, - [SMALL_STATE(1871)] = 73775, - [SMALL_STATE(1872)] = 73835, - [SMALL_STATE(1873)] = 73895, - [SMALL_STATE(1874)] = 73955, - [SMALL_STATE(1875)] = 74015, - [SMALL_STATE(1876)] = 74075, - [SMALL_STATE(1877)] = 74135, - [SMALL_STATE(1878)] = 74195, - [SMALL_STATE(1879)] = 74255, - [SMALL_STATE(1880)] = 74315, - [SMALL_STATE(1881)] = 74375, - [SMALL_STATE(1882)] = 74435, - [SMALL_STATE(1883)] = 74495, - [SMALL_STATE(1884)] = 74555, - [SMALL_STATE(1885)] = 74615, - [SMALL_STATE(1886)] = 74675, - [SMALL_STATE(1887)] = 74735, - [SMALL_STATE(1888)] = 74795, - [SMALL_STATE(1889)] = 74855, - [SMALL_STATE(1890)] = 74915, - [SMALL_STATE(1891)] = 74975, - [SMALL_STATE(1892)] = 75035, - [SMALL_STATE(1893)] = 75095, - [SMALL_STATE(1894)] = 75155, - [SMALL_STATE(1895)] = 75215, - [SMALL_STATE(1896)] = 75275, - [SMALL_STATE(1897)] = 75335, - [SMALL_STATE(1898)] = 75395, - [SMALL_STATE(1899)] = 75455, - [SMALL_STATE(1900)] = 75515, - [SMALL_STATE(1901)] = 75575, - [SMALL_STATE(1902)] = 75635, - [SMALL_STATE(1903)] = 75695, - [SMALL_STATE(1904)] = 75755, - [SMALL_STATE(1905)] = 75815, - [SMALL_STATE(1906)] = 75875, - [SMALL_STATE(1907)] = 75935, - [SMALL_STATE(1908)] = 75995, - [SMALL_STATE(1909)] = 76055, + [SMALL_STATE(1871)] = 73781, + [SMALL_STATE(1872)] = 73841, + [SMALL_STATE(1873)] = 73901, + [SMALL_STATE(1874)] = 73961, + [SMALL_STATE(1875)] = 74021, + [SMALL_STATE(1876)] = 74081, + [SMALL_STATE(1877)] = 74141, + [SMALL_STATE(1878)] = 74201, + [SMALL_STATE(1879)] = 74261, + [SMALL_STATE(1880)] = 74321, + [SMALL_STATE(1881)] = 74381, + [SMALL_STATE(1882)] = 74441, + [SMALL_STATE(1883)] = 74501, + [SMALL_STATE(1884)] = 74561, + [SMALL_STATE(1885)] = 74621, + [SMALL_STATE(1886)] = 74681, + [SMALL_STATE(1887)] = 74741, + [SMALL_STATE(1888)] = 74801, + [SMALL_STATE(1889)] = 74861, + [SMALL_STATE(1890)] = 74921, + [SMALL_STATE(1891)] = 74981, + [SMALL_STATE(1892)] = 75041, + [SMALL_STATE(1893)] = 75101, + [SMALL_STATE(1894)] = 75161, + [SMALL_STATE(1895)] = 75221, + [SMALL_STATE(1896)] = 75281, + [SMALL_STATE(1897)] = 75341, + [SMALL_STATE(1898)] = 75401, + [SMALL_STATE(1899)] = 75461, + [SMALL_STATE(1900)] = 75521, + [SMALL_STATE(1901)] = 75581, + [SMALL_STATE(1902)] = 75641, + [SMALL_STATE(1903)] = 75701, + [SMALL_STATE(1904)] = 75761, + [SMALL_STATE(1905)] = 75821, + [SMALL_STATE(1906)] = 75881, + [SMALL_STATE(1907)] = 75941, + [SMALL_STATE(1908)] = 76001, + [SMALL_STATE(1909)] = 76061, [SMALL_STATE(1910)] = 76121, [SMALL_STATE(1911)] = 76181, [SMALL_STATE(1912)] = 76241, @@ -301380,11715 +295664,11770 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1930)] = 77321, [SMALL_STATE(1931)] = 77381, [SMALL_STATE(1932)] = 77441, - [SMALL_STATE(1933)] = 77501, - [SMALL_STATE(1934)] = 77561, - [SMALL_STATE(1935)] = 77621, - [SMALL_STATE(1936)] = 77681, - [SMALL_STATE(1937)] = 77741, - [SMALL_STATE(1938)] = 77801, - [SMALL_STATE(1939)] = 77861, - [SMALL_STATE(1940)] = 77921, - [SMALL_STATE(1941)] = 77981, - [SMALL_STATE(1942)] = 78041, - [SMALL_STATE(1943)] = 78101, - [SMALL_STATE(1944)] = 78161, - [SMALL_STATE(1945)] = 78221, - [SMALL_STATE(1946)] = 78281, - [SMALL_STATE(1947)] = 78341, - [SMALL_STATE(1948)] = 78401, - [SMALL_STATE(1949)] = 78461, - [SMALL_STATE(1950)] = 78521, - [SMALL_STATE(1951)] = 78581, - [SMALL_STATE(1952)] = 78641, - [SMALL_STATE(1953)] = 78701, - [SMALL_STATE(1954)] = 78761, - [SMALL_STATE(1955)] = 78821, - [SMALL_STATE(1956)] = 78881, - [SMALL_STATE(1957)] = 78941, - [SMALL_STATE(1958)] = 79001, - [SMALL_STATE(1959)] = 79061, - [SMALL_STATE(1960)] = 79121, - [SMALL_STATE(1961)] = 79180, - [SMALL_STATE(1962)] = 79239, - [SMALL_STATE(1963)] = 79297, - [SMALL_STATE(1964)] = 79355, - [SMALL_STATE(1965)] = 79413, - [SMALL_STATE(1966)] = 79471, - [SMALL_STATE(1967)] = 79529, - [SMALL_STATE(1968)] = 79587, - [SMALL_STATE(1969)] = 79645, - [SMALL_STATE(1970)] = 79703, - [SMALL_STATE(1971)] = 79761, - [SMALL_STATE(1972)] = 79819, - [SMALL_STATE(1973)] = 79877, - [SMALL_STATE(1974)] = 79935, - [SMALL_STATE(1975)] = 79993, - [SMALL_STATE(1976)] = 80051, - [SMALL_STATE(1977)] = 80109, - [SMALL_STATE(1978)] = 80167, - [SMALL_STATE(1979)] = 80225, - [SMALL_STATE(1980)] = 80283, - [SMALL_STATE(1981)] = 80341, - [SMALL_STATE(1982)] = 80399, - [SMALL_STATE(1983)] = 80457, - [SMALL_STATE(1984)] = 80515, - [SMALL_STATE(1985)] = 80573, - [SMALL_STATE(1986)] = 80631, - [SMALL_STATE(1987)] = 80689, - [SMALL_STATE(1988)] = 80747, - [SMALL_STATE(1989)] = 80805, - [SMALL_STATE(1990)] = 80863, - [SMALL_STATE(1991)] = 80921, - [SMALL_STATE(1992)] = 80979, - [SMALL_STATE(1993)] = 81037, - [SMALL_STATE(1994)] = 81095, - [SMALL_STATE(1995)] = 81153, - [SMALL_STATE(1996)] = 81211, - [SMALL_STATE(1997)] = 81269, - [SMALL_STATE(1998)] = 81327, - [SMALL_STATE(1999)] = 81385, - [SMALL_STATE(2000)] = 81443, - [SMALL_STATE(2001)] = 81501, - [SMALL_STATE(2002)] = 81559, - [SMALL_STATE(2003)] = 81617, - [SMALL_STATE(2004)] = 81675, - [SMALL_STATE(2005)] = 81733, - [SMALL_STATE(2006)] = 81791, - [SMALL_STATE(2007)] = 81849, - [SMALL_STATE(2008)] = 81907, - [SMALL_STATE(2009)] = 81965, - [SMALL_STATE(2010)] = 82023, - [SMALL_STATE(2011)] = 82081, - [SMALL_STATE(2012)] = 82139, - [SMALL_STATE(2013)] = 82197, - [SMALL_STATE(2014)] = 82255, - [SMALL_STATE(2015)] = 82313, - [SMALL_STATE(2016)] = 82371, - [SMALL_STATE(2017)] = 82429, - [SMALL_STATE(2018)] = 82487, - [SMALL_STATE(2019)] = 82545, - [SMALL_STATE(2020)] = 82603, - [SMALL_STATE(2021)] = 82661, - [SMALL_STATE(2022)] = 82719, - [SMALL_STATE(2023)] = 82777, - [SMALL_STATE(2024)] = 82835, - [SMALL_STATE(2025)] = 82893, - [SMALL_STATE(2026)] = 82951, - [SMALL_STATE(2027)] = 83009, - [SMALL_STATE(2028)] = 83067, - [SMALL_STATE(2029)] = 83125, - [SMALL_STATE(2030)] = 83183, - [SMALL_STATE(2031)] = 83241, - [SMALL_STATE(2032)] = 83299, - [SMALL_STATE(2033)] = 83357, - [SMALL_STATE(2034)] = 83415, - [SMALL_STATE(2035)] = 83473, - [SMALL_STATE(2036)] = 83531, - [SMALL_STATE(2037)] = 83589, - [SMALL_STATE(2038)] = 83647, - [SMALL_STATE(2039)] = 83705, - [SMALL_STATE(2040)] = 83763, - [SMALL_STATE(2041)] = 83821, - [SMALL_STATE(2042)] = 83879, - [SMALL_STATE(2043)] = 83937, - [SMALL_STATE(2044)] = 83995, - [SMALL_STATE(2045)] = 84053, - [SMALL_STATE(2046)] = 84111, - [SMALL_STATE(2047)] = 84169, - [SMALL_STATE(2048)] = 84227, - [SMALL_STATE(2049)] = 84285, - [SMALL_STATE(2050)] = 84343, - [SMALL_STATE(2051)] = 84401, - [SMALL_STATE(2052)] = 84459, - [SMALL_STATE(2053)] = 84517, - [SMALL_STATE(2054)] = 84575, - [SMALL_STATE(2055)] = 84633, - [SMALL_STATE(2056)] = 84691, - [SMALL_STATE(2057)] = 84749, - [SMALL_STATE(2058)] = 84807, - [SMALL_STATE(2059)] = 84865, - [SMALL_STATE(2060)] = 84923, - [SMALL_STATE(2061)] = 84981, - [SMALL_STATE(2062)] = 85039, - [SMALL_STATE(2063)] = 85097, - [SMALL_STATE(2064)] = 85155, - [SMALL_STATE(2065)] = 85213, - [SMALL_STATE(2066)] = 85271, - [SMALL_STATE(2067)] = 85329, - [SMALL_STATE(2068)] = 85387, - [SMALL_STATE(2069)] = 85445, - [SMALL_STATE(2070)] = 85503, - [SMALL_STATE(2071)] = 85561, - [SMALL_STATE(2072)] = 85619, - [SMALL_STATE(2073)] = 85677, - [SMALL_STATE(2074)] = 85735, - [SMALL_STATE(2075)] = 85793, - [SMALL_STATE(2076)] = 85851, - [SMALL_STATE(2077)] = 85909, - [SMALL_STATE(2078)] = 85967, - [SMALL_STATE(2079)] = 86025, - [SMALL_STATE(2080)] = 86083, - [SMALL_STATE(2081)] = 86141, - [SMALL_STATE(2082)] = 86199, - [SMALL_STATE(2083)] = 86257, - [SMALL_STATE(2084)] = 86315, - [SMALL_STATE(2085)] = 86373, - [SMALL_STATE(2086)] = 86431, - [SMALL_STATE(2087)] = 86489, - [SMALL_STATE(2088)] = 86547, - [SMALL_STATE(2089)] = 86605, - [SMALL_STATE(2090)] = 86663, - [SMALL_STATE(2091)] = 86721, - [SMALL_STATE(2092)] = 86779, - [SMALL_STATE(2093)] = 86837, - [SMALL_STATE(2094)] = 86895, - [SMALL_STATE(2095)] = 86953, - [SMALL_STATE(2096)] = 87011, - [SMALL_STATE(2097)] = 87069, - [SMALL_STATE(2098)] = 87127, - [SMALL_STATE(2099)] = 87185, - [SMALL_STATE(2100)] = 87243, - [SMALL_STATE(2101)] = 87301, - [SMALL_STATE(2102)] = 87359, - [SMALL_STATE(2103)] = 87417, - [SMALL_STATE(2104)] = 87475, - [SMALL_STATE(2105)] = 87533, - [SMALL_STATE(2106)] = 87591, - [SMALL_STATE(2107)] = 87649, - [SMALL_STATE(2108)] = 87707, - [SMALL_STATE(2109)] = 87765, - [SMALL_STATE(2110)] = 87823, - [SMALL_STATE(2111)] = 87881, - [SMALL_STATE(2112)] = 87939, - [SMALL_STATE(2113)] = 87997, - [SMALL_STATE(2114)] = 88055, - [SMALL_STATE(2115)] = 88113, - [SMALL_STATE(2116)] = 88171, - [SMALL_STATE(2117)] = 88229, - [SMALL_STATE(2118)] = 88287, - [SMALL_STATE(2119)] = 88345, - [SMALL_STATE(2120)] = 88403, - [SMALL_STATE(2121)] = 88461, - [SMALL_STATE(2122)] = 88519, - [SMALL_STATE(2123)] = 88577, - [SMALL_STATE(2124)] = 88635, - [SMALL_STATE(2125)] = 88693, - [SMALL_STATE(2126)] = 88751, - [SMALL_STATE(2127)] = 88809, - [SMALL_STATE(2128)] = 88867, - [SMALL_STATE(2129)] = 88925, - [SMALL_STATE(2130)] = 88983, - [SMALL_STATE(2131)] = 89041, - [SMALL_STATE(2132)] = 89099, - [SMALL_STATE(2133)] = 89157, - [SMALL_STATE(2134)] = 89215, - [SMALL_STATE(2135)] = 89273, - [SMALL_STATE(2136)] = 89331, - [SMALL_STATE(2137)] = 89389, - [SMALL_STATE(2138)] = 89447, - [SMALL_STATE(2139)] = 89505, - [SMALL_STATE(2140)] = 89563, - [SMALL_STATE(2141)] = 89621, - [SMALL_STATE(2142)] = 89679, - [SMALL_STATE(2143)] = 89737, - [SMALL_STATE(2144)] = 89795, - [SMALL_STATE(2145)] = 89853, - [SMALL_STATE(2146)] = 89911, - [SMALL_STATE(2147)] = 89969, - [SMALL_STATE(2148)] = 90027, - [SMALL_STATE(2149)] = 90085, - [SMALL_STATE(2150)] = 90143, - [SMALL_STATE(2151)] = 90201, - [SMALL_STATE(2152)] = 90259, - [SMALL_STATE(2153)] = 90317, - [SMALL_STATE(2154)] = 90375, - [SMALL_STATE(2155)] = 90433, - [SMALL_STATE(2156)] = 90491, - [SMALL_STATE(2157)] = 90549, - [SMALL_STATE(2158)] = 90607, - [SMALL_STATE(2159)] = 90665, - [SMALL_STATE(2160)] = 90723, - [SMALL_STATE(2161)] = 90781, - [SMALL_STATE(2162)] = 90839, - [SMALL_STATE(2163)] = 90897, - [SMALL_STATE(2164)] = 90955, - [SMALL_STATE(2165)] = 91013, - [SMALL_STATE(2166)] = 91071, - [SMALL_STATE(2167)] = 91129, - [SMALL_STATE(2168)] = 91187, - [SMALL_STATE(2169)] = 91245, - [SMALL_STATE(2170)] = 91303, - [SMALL_STATE(2171)] = 91361, - [SMALL_STATE(2172)] = 91419, - [SMALL_STATE(2173)] = 91477, - [SMALL_STATE(2174)] = 91535, - [SMALL_STATE(2175)] = 91593, - [SMALL_STATE(2176)] = 91651, - [SMALL_STATE(2177)] = 91709, - [SMALL_STATE(2178)] = 91767, - [SMALL_STATE(2179)] = 91825, - [SMALL_STATE(2180)] = 91883, - [SMALL_STATE(2181)] = 91941, - [SMALL_STATE(2182)] = 91999, - [SMALL_STATE(2183)] = 92057, - [SMALL_STATE(2184)] = 92115, - [SMALL_STATE(2185)] = 92173, - [SMALL_STATE(2186)] = 92231, - [SMALL_STATE(2187)] = 92289, - [SMALL_STATE(2188)] = 92347, - [SMALL_STATE(2189)] = 92405, - [SMALL_STATE(2190)] = 92463, - [SMALL_STATE(2191)] = 92521, - [SMALL_STATE(2192)] = 92579, - [SMALL_STATE(2193)] = 92637, - [SMALL_STATE(2194)] = 92695, - [SMALL_STATE(2195)] = 92753, - [SMALL_STATE(2196)] = 92811, - [SMALL_STATE(2197)] = 92869, - [SMALL_STATE(2198)] = 92927, - [SMALL_STATE(2199)] = 92985, - [SMALL_STATE(2200)] = 93043, - [SMALL_STATE(2201)] = 93101, - [SMALL_STATE(2202)] = 93159, - [SMALL_STATE(2203)] = 93217, - [SMALL_STATE(2204)] = 93275, - [SMALL_STATE(2205)] = 93333, - [SMALL_STATE(2206)] = 93391, - [SMALL_STATE(2207)] = 93449, - [SMALL_STATE(2208)] = 93507, - [SMALL_STATE(2209)] = 93565, - [SMALL_STATE(2210)] = 93623, - [SMALL_STATE(2211)] = 93681, - [SMALL_STATE(2212)] = 93739, - [SMALL_STATE(2213)] = 93797, - [SMALL_STATE(2214)] = 93855, - [SMALL_STATE(2215)] = 93913, - [SMALL_STATE(2216)] = 93971, - [SMALL_STATE(2217)] = 94029, - [SMALL_STATE(2218)] = 94087, - [SMALL_STATE(2219)] = 94145, - [SMALL_STATE(2220)] = 94203, - [SMALL_STATE(2221)] = 94261, - [SMALL_STATE(2222)] = 94319, - [SMALL_STATE(2223)] = 94377, - [SMALL_STATE(2224)] = 94435, - [SMALL_STATE(2225)] = 94493, - [SMALL_STATE(2226)] = 94551, - [SMALL_STATE(2227)] = 94609, - [SMALL_STATE(2228)] = 94667, - [SMALL_STATE(2229)] = 94725, - [SMALL_STATE(2230)] = 94783, - [SMALL_STATE(2231)] = 94841, - [SMALL_STATE(2232)] = 94899, - [SMALL_STATE(2233)] = 94957, - [SMALL_STATE(2234)] = 95015, - [SMALL_STATE(2235)] = 95073, - [SMALL_STATE(2236)] = 95131, - [SMALL_STATE(2237)] = 95189, - [SMALL_STATE(2238)] = 95247, - [SMALL_STATE(2239)] = 95305, - [SMALL_STATE(2240)] = 95363, - [SMALL_STATE(2241)] = 95421, - [SMALL_STATE(2242)] = 95479, - [SMALL_STATE(2243)] = 95537, - [SMALL_STATE(2244)] = 95595, - [SMALL_STATE(2245)] = 95653, - [SMALL_STATE(2246)] = 95711, - [SMALL_STATE(2247)] = 95769, - [SMALL_STATE(2248)] = 95827, - [SMALL_STATE(2249)] = 95885, - [SMALL_STATE(2250)] = 95943, - [SMALL_STATE(2251)] = 96001, - [SMALL_STATE(2252)] = 96059, - [SMALL_STATE(2253)] = 96117, - [SMALL_STATE(2254)] = 96175, - [SMALL_STATE(2255)] = 96233, - [SMALL_STATE(2256)] = 96291, - [SMALL_STATE(2257)] = 96349, - [SMALL_STATE(2258)] = 96407, - [SMALL_STATE(2259)] = 96465, - [SMALL_STATE(2260)] = 96523, - [SMALL_STATE(2261)] = 96581, - [SMALL_STATE(2262)] = 96639, - [SMALL_STATE(2263)] = 96697, - [SMALL_STATE(2264)] = 96755, - [SMALL_STATE(2265)] = 96813, - [SMALL_STATE(2266)] = 96871, - [SMALL_STATE(2267)] = 96929, - [SMALL_STATE(2268)] = 96987, - [SMALL_STATE(2269)] = 97045, - [SMALL_STATE(2270)] = 97103, - [SMALL_STATE(2271)] = 97161, - [SMALL_STATE(2272)] = 97219, - [SMALL_STATE(2273)] = 97277, - [SMALL_STATE(2274)] = 97335, - [SMALL_STATE(2275)] = 97393, - [SMALL_STATE(2276)] = 97451, - [SMALL_STATE(2277)] = 97509, - [SMALL_STATE(2278)] = 97567, - [SMALL_STATE(2279)] = 97625, - [SMALL_STATE(2280)] = 97683, - [SMALL_STATE(2281)] = 97741, - [SMALL_STATE(2282)] = 97799, - [SMALL_STATE(2283)] = 97857, - [SMALL_STATE(2284)] = 97915, - [SMALL_STATE(2285)] = 97973, - [SMALL_STATE(2286)] = 98031, - [SMALL_STATE(2287)] = 98089, - [SMALL_STATE(2288)] = 98147, - [SMALL_STATE(2289)] = 98205, - [SMALL_STATE(2290)] = 98263, - [SMALL_STATE(2291)] = 98321, - [SMALL_STATE(2292)] = 98379, - [SMALL_STATE(2293)] = 98437, - [SMALL_STATE(2294)] = 98495, - [SMALL_STATE(2295)] = 98553, - [SMALL_STATE(2296)] = 98611, - [SMALL_STATE(2297)] = 98669, - [SMALL_STATE(2298)] = 98727, - [SMALL_STATE(2299)] = 98785, - [SMALL_STATE(2300)] = 98843, - [SMALL_STATE(2301)] = 98901, - [SMALL_STATE(2302)] = 98959, - [SMALL_STATE(2303)] = 99017, - [SMALL_STATE(2304)] = 99075, - [SMALL_STATE(2305)] = 99133, - [SMALL_STATE(2306)] = 99191, - [SMALL_STATE(2307)] = 99249, - [SMALL_STATE(2308)] = 99307, - [SMALL_STATE(2309)] = 99365, - [SMALL_STATE(2310)] = 99423, - [SMALL_STATE(2311)] = 99481, - [SMALL_STATE(2312)] = 99539, - [SMALL_STATE(2313)] = 99597, - [SMALL_STATE(2314)] = 99655, - [SMALL_STATE(2315)] = 99713, - [SMALL_STATE(2316)] = 99771, - [SMALL_STATE(2317)] = 99829, - [SMALL_STATE(2318)] = 99887, - [SMALL_STATE(2319)] = 99945, - [SMALL_STATE(2320)] = 100003, - [SMALL_STATE(2321)] = 100061, - [SMALL_STATE(2322)] = 100119, - [SMALL_STATE(2323)] = 100177, - [SMALL_STATE(2324)] = 100235, - [SMALL_STATE(2325)] = 100293, - [SMALL_STATE(2326)] = 100351, - [SMALL_STATE(2327)] = 100409, - [SMALL_STATE(2328)] = 100467, - [SMALL_STATE(2329)] = 100525, - [SMALL_STATE(2330)] = 100583, - [SMALL_STATE(2331)] = 100641, - [SMALL_STATE(2332)] = 100699, - [SMALL_STATE(2333)] = 100757, - [SMALL_STATE(2334)] = 100815, - [SMALL_STATE(2335)] = 100873, - [SMALL_STATE(2336)] = 100931, - [SMALL_STATE(2337)] = 100989, - [SMALL_STATE(2338)] = 101047, - [SMALL_STATE(2339)] = 101105, - [SMALL_STATE(2340)] = 101163, - [SMALL_STATE(2341)] = 101221, - [SMALL_STATE(2342)] = 101279, - [SMALL_STATE(2343)] = 101337, - [SMALL_STATE(2344)] = 101395, - [SMALL_STATE(2345)] = 101453, - [SMALL_STATE(2346)] = 101511, - [SMALL_STATE(2347)] = 101569, - [SMALL_STATE(2348)] = 101627, - [SMALL_STATE(2349)] = 101685, - [SMALL_STATE(2350)] = 101743, - [SMALL_STATE(2351)] = 101801, - [SMALL_STATE(2352)] = 101859, - [SMALL_STATE(2353)] = 101917, - [SMALL_STATE(2354)] = 101975, - [SMALL_STATE(2355)] = 102033, - [SMALL_STATE(2356)] = 102091, - [SMALL_STATE(2357)] = 102149, - [SMALL_STATE(2358)] = 102207, - [SMALL_STATE(2359)] = 102265, - [SMALL_STATE(2360)] = 102323, - [SMALL_STATE(2361)] = 102381, - [SMALL_STATE(2362)] = 102439, - [SMALL_STATE(2363)] = 102497, - [SMALL_STATE(2364)] = 102555, - [SMALL_STATE(2365)] = 102613, - [SMALL_STATE(2366)] = 102671, - [SMALL_STATE(2367)] = 102729, - [SMALL_STATE(2368)] = 102787, - [SMALL_STATE(2369)] = 102845, - [SMALL_STATE(2370)] = 102903, - [SMALL_STATE(2371)] = 102961, - [SMALL_STATE(2372)] = 103019, - [SMALL_STATE(2373)] = 103077, - [SMALL_STATE(2374)] = 103135, - [SMALL_STATE(2375)] = 103193, - [SMALL_STATE(2376)] = 103251, - [SMALL_STATE(2377)] = 103309, - [SMALL_STATE(2378)] = 103367, - [SMALL_STATE(2379)] = 103425, - [SMALL_STATE(2380)] = 103483, - [SMALL_STATE(2381)] = 103541, - [SMALL_STATE(2382)] = 103599, - [SMALL_STATE(2383)] = 103657, - [SMALL_STATE(2384)] = 103715, - [SMALL_STATE(2385)] = 103773, - [SMALL_STATE(2386)] = 103831, - [SMALL_STATE(2387)] = 103889, - [SMALL_STATE(2388)] = 103947, - [SMALL_STATE(2389)] = 104005, - [SMALL_STATE(2390)] = 104063, - [SMALL_STATE(2391)] = 104121, - [SMALL_STATE(2392)] = 104179, - [SMALL_STATE(2393)] = 104237, - [SMALL_STATE(2394)] = 104295, - [SMALL_STATE(2395)] = 104353, - [SMALL_STATE(2396)] = 104411, - [SMALL_STATE(2397)] = 104469, - [SMALL_STATE(2398)] = 104527, - [SMALL_STATE(2399)] = 104585, - [SMALL_STATE(2400)] = 104643, - [SMALL_STATE(2401)] = 104701, - [SMALL_STATE(2402)] = 104759, - [SMALL_STATE(2403)] = 104817, - [SMALL_STATE(2404)] = 104875, - [SMALL_STATE(2405)] = 104933, - [SMALL_STATE(2406)] = 104991, - [SMALL_STATE(2407)] = 105049, - [SMALL_STATE(2408)] = 105107, - [SMALL_STATE(2409)] = 105165, - [SMALL_STATE(2410)] = 105223, - [SMALL_STATE(2411)] = 105281, - [SMALL_STATE(2412)] = 105339, - [SMALL_STATE(2413)] = 105397, - [SMALL_STATE(2414)] = 105455, - [SMALL_STATE(2415)] = 105513, - [SMALL_STATE(2416)] = 105571, - [SMALL_STATE(2417)] = 105629, - [SMALL_STATE(2418)] = 105687, - [SMALL_STATE(2419)] = 105745, - [SMALL_STATE(2420)] = 105803, - [SMALL_STATE(2421)] = 105861, - [SMALL_STATE(2422)] = 105919, - [SMALL_STATE(2423)] = 105977, - [SMALL_STATE(2424)] = 106035, - [SMALL_STATE(2425)] = 106093, - [SMALL_STATE(2426)] = 106151, - [SMALL_STATE(2427)] = 106209, - [SMALL_STATE(2428)] = 106267, - [SMALL_STATE(2429)] = 106325, - [SMALL_STATE(2430)] = 106383, - [SMALL_STATE(2431)] = 106441, - [SMALL_STATE(2432)] = 106499, - [SMALL_STATE(2433)] = 106557, - [SMALL_STATE(2434)] = 106615, - [SMALL_STATE(2435)] = 106673, - [SMALL_STATE(2436)] = 106731, - [SMALL_STATE(2437)] = 106789, - [SMALL_STATE(2438)] = 106847, - [SMALL_STATE(2439)] = 106905, - [SMALL_STATE(2440)] = 106963, - [SMALL_STATE(2441)] = 107021, - [SMALL_STATE(2442)] = 107079, - [SMALL_STATE(2443)] = 107137, - [SMALL_STATE(2444)] = 107195, - [SMALL_STATE(2445)] = 107253, - [SMALL_STATE(2446)] = 107311, - [SMALL_STATE(2447)] = 107369, - [SMALL_STATE(2448)] = 107427, - [SMALL_STATE(2449)] = 107485, - [SMALL_STATE(2450)] = 107543, - [SMALL_STATE(2451)] = 107601, - [SMALL_STATE(2452)] = 107659, - [SMALL_STATE(2453)] = 107717, - [SMALL_STATE(2454)] = 107775, - [SMALL_STATE(2455)] = 107833, - [SMALL_STATE(2456)] = 107891, - [SMALL_STATE(2457)] = 107949, - [SMALL_STATE(2458)] = 108007, - [SMALL_STATE(2459)] = 108065, - [SMALL_STATE(2460)] = 108123, - [SMALL_STATE(2461)] = 108181, - [SMALL_STATE(2462)] = 108239, - [SMALL_STATE(2463)] = 108297, - [SMALL_STATE(2464)] = 108355, - [SMALL_STATE(2465)] = 108413, - [SMALL_STATE(2466)] = 108471, - [SMALL_STATE(2467)] = 108529, - [SMALL_STATE(2468)] = 108587, - [SMALL_STATE(2469)] = 108645, - [SMALL_STATE(2470)] = 108703, - [SMALL_STATE(2471)] = 108761, - [SMALL_STATE(2472)] = 108819, - [SMALL_STATE(2473)] = 108877, - [SMALL_STATE(2474)] = 108935, - [SMALL_STATE(2475)] = 108993, - [SMALL_STATE(2476)] = 109051, - [SMALL_STATE(2477)] = 109109, - [SMALL_STATE(2478)] = 109167, - [SMALL_STATE(2479)] = 109225, - [SMALL_STATE(2480)] = 109283, - [SMALL_STATE(2481)] = 109341, - [SMALL_STATE(2482)] = 109399, - [SMALL_STATE(2483)] = 109457, - [SMALL_STATE(2484)] = 109515, - [SMALL_STATE(2485)] = 109573, - [SMALL_STATE(2486)] = 109631, - [SMALL_STATE(2487)] = 109689, - [SMALL_STATE(2488)] = 109747, - [SMALL_STATE(2489)] = 109805, - [SMALL_STATE(2490)] = 109863, - [SMALL_STATE(2491)] = 109921, - [SMALL_STATE(2492)] = 109979, - [SMALL_STATE(2493)] = 110037, - [SMALL_STATE(2494)] = 110095, - [SMALL_STATE(2495)] = 110153, - [SMALL_STATE(2496)] = 110211, - [SMALL_STATE(2497)] = 110269, - [SMALL_STATE(2498)] = 110327, - [SMALL_STATE(2499)] = 110385, - [SMALL_STATE(2500)] = 110443, - [SMALL_STATE(2501)] = 110501, - [SMALL_STATE(2502)] = 110559, - [SMALL_STATE(2503)] = 110617, - [SMALL_STATE(2504)] = 110675, - [SMALL_STATE(2505)] = 110733, - [SMALL_STATE(2506)] = 110791, - [SMALL_STATE(2507)] = 110849, - [SMALL_STATE(2508)] = 110907, - [SMALL_STATE(2509)] = 110965, - [SMALL_STATE(2510)] = 111023, - [SMALL_STATE(2511)] = 111081, - [SMALL_STATE(2512)] = 111139, - [SMALL_STATE(2513)] = 111197, - [SMALL_STATE(2514)] = 111255, - [SMALL_STATE(2515)] = 111313, - [SMALL_STATE(2516)] = 111371, - [SMALL_STATE(2517)] = 111429, - [SMALL_STATE(2518)] = 111487, - [SMALL_STATE(2519)] = 111545, - [SMALL_STATE(2520)] = 111603, - [SMALL_STATE(2521)] = 111661, - [SMALL_STATE(2522)] = 111719, - [SMALL_STATE(2523)] = 111777, - [SMALL_STATE(2524)] = 111835, - [SMALL_STATE(2525)] = 111893, - [SMALL_STATE(2526)] = 111951, - [SMALL_STATE(2527)] = 112009, - [SMALL_STATE(2528)] = 112067, - [SMALL_STATE(2529)] = 112125, - [SMALL_STATE(2530)] = 112183, - [SMALL_STATE(2531)] = 112241, - [SMALL_STATE(2532)] = 112299, - [SMALL_STATE(2533)] = 112357, - [SMALL_STATE(2534)] = 112415, - [SMALL_STATE(2535)] = 112473, - [SMALL_STATE(2536)] = 112531, - [SMALL_STATE(2537)] = 112589, - [SMALL_STATE(2538)] = 112647, - [SMALL_STATE(2539)] = 112705, - [SMALL_STATE(2540)] = 112763, - [SMALL_STATE(2541)] = 112821, - [SMALL_STATE(2542)] = 112879, - [SMALL_STATE(2543)] = 112937, - [SMALL_STATE(2544)] = 112995, - [SMALL_STATE(2545)] = 113053, - [SMALL_STATE(2546)] = 113111, - [SMALL_STATE(2547)] = 113169, - [SMALL_STATE(2548)] = 113227, - [SMALL_STATE(2549)] = 113285, - [SMALL_STATE(2550)] = 113343, - [SMALL_STATE(2551)] = 113401, - [SMALL_STATE(2552)] = 113459, - [SMALL_STATE(2553)] = 113517, - [SMALL_STATE(2554)] = 113575, - [SMALL_STATE(2555)] = 113633, - [SMALL_STATE(2556)] = 113691, - [SMALL_STATE(2557)] = 113749, - [SMALL_STATE(2558)] = 113807, - [SMALL_STATE(2559)] = 113865, - [SMALL_STATE(2560)] = 113923, - [SMALL_STATE(2561)] = 113981, - [SMALL_STATE(2562)] = 114039, - [SMALL_STATE(2563)] = 114097, - [SMALL_STATE(2564)] = 114155, - [SMALL_STATE(2565)] = 114213, - [SMALL_STATE(2566)] = 114271, - [SMALL_STATE(2567)] = 114329, - [SMALL_STATE(2568)] = 114387, - [SMALL_STATE(2569)] = 114445, - [SMALL_STATE(2570)] = 114503, - [SMALL_STATE(2571)] = 114561, - [SMALL_STATE(2572)] = 114619, - [SMALL_STATE(2573)] = 114677, - [SMALL_STATE(2574)] = 114735, - [SMALL_STATE(2575)] = 114793, - [SMALL_STATE(2576)] = 114851, - [SMALL_STATE(2577)] = 114909, - [SMALL_STATE(2578)] = 114967, - [SMALL_STATE(2579)] = 115025, - [SMALL_STATE(2580)] = 115083, - [SMALL_STATE(2581)] = 115141, - [SMALL_STATE(2582)] = 115199, - [SMALL_STATE(2583)] = 115257, - [SMALL_STATE(2584)] = 115315, - [SMALL_STATE(2585)] = 115373, - [SMALL_STATE(2586)] = 115431, - [SMALL_STATE(2587)] = 115489, - [SMALL_STATE(2588)] = 115547, - [SMALL_STATE(2589)] = 115605, - [SMALL_STATE(2590)] = 115663, - [SMALL_STATE(2591)] = 115721, - [SMALL_STATE(2592)] = 115779, - [SMALL_STATE(2593)] = 115837, - [SMALL_STATE(2594)] = 115895, - [SMALL_STATE(2595)] = 115953, - [SMALL_STATE(2596)] = 116011, - [SMALL_STATE(2597)] = 116069, - [SMALL_STATE(2598)] = 116127, - [SMALL_STATE(2599)] = 116185, - [SMALL_STATE(2600)] = 116243, - [SMALL_STATE(2601)] = 116301, - [SMALL_STATE(2602)] = 116359, - [SMALL_STATE(2603)] = 116417, - [SMALL_STATE(2604)] = 116475, - [SMALL_STATE(2605)] = 116533, - [SMALL_STATE(2606)] = 116591, - [SMALL_STATE(2607)] = 116649, - [SMALL_STATE(2608)] = 116707, - [SMALL_STATE(2609)] = 116765, - [SMALL_STATE(2610)] = 116823, - [SMALL_STATE(2611)] = 116881, - [SMALL_STATE(2612)] = 116939, - [SMALL_STATE(2613)] = 116997, - [SMALL_STATE(2614)] = 117055, - [SMALL_STATE(2615)] = 117113, - [SMALL_STATE(2616)] = 117171, - [SMALL_STATE(2617)] = 117229, - [SMALL_STATE(2618)] = 117287, - [SMALL_STATE(2619)] = 117345, - [SMALL_STATE(2620)] = 117403, - [SMALL_STATE(2621)] = 117461, - [SMALL_STATE(2622)] = 117519, - [SMALL_STATE(2623)] = 117577, - [SMALL_STATE(2624)] = 117635, - [SMALL_STATE(2625)] = 117693, - [SMALL_STATE(2626)] = 117751, - [SMALL_STATE(2627)] = 117809, - [SMALL_STATE(2628)] = 117867, - [SMALL_STATE(2629)] = 117925, - [SMALL_STATE(2630)] = 117983, - [SMALL_STATE(2631)] = 118041, - [SMALL_STATE(2632)] = 118099, - [SMALL_STATE(2633)] = 118157, - [SMALL_STATE(2634)] = 118215, - [SMALL_STATE(2635)] = 118273, - [SMALL_STATE(2636)] = 118331, - [SMALL_STATE(2637)] = 118389, - [SMALL_STATE(2638)] = 118447, - [SMALL_STATE(2639)] = 118505, - [SMALL_STATE(2640)] = 118563, - [SMALL_STATE(2641)] = 118621, - [SMALL_STATE(2642)] = 118679, - [SMALL_STATE(2643)] = 118737, - [SMALL_STATE(2644)] = 118795, - [SMALL_STATE(2645)] = 118853, - [SMALL_STATE(2646)] = 118911, - [SMALL_STATE(2647)] = 118969, - [SMALL_STATE(2648)] = 119027, - [SMALL_STATE(2649)] = 119085, - [SMALL_STATE(2650)] = 119143, - [SMALL_STATE(2651)] = 119201, - [SMALL_STATE(2652)] = 119259, - [SMALL_STATE(2653)] = 119317, - [SMALL_STATE(2654)] = 119375, - [SMALL_STATE(2655)] = 119433, - [SMALL_STATE(2656)] = 119491, - [SMALL_STATE(2657)] = 119549, - [SMALL_STATE(2658)] = 119607, - [SMALL_STATE(2659)] = 119665, - [SMALL_STATE(2660)] = 119723, - [SMALL_STATE(2661)] = 119781, - [SMALL_STATE(2662)] = 119839, - [SMALL_STATE(2663)] = 119897, - [SMALL_STATE(2664)] = 119955, - [SMALL_STATE(2665)] = 120013, - [SMALL_STATE(2666)] = 120071, - [SMALL_STATE(2667)] = 120129, - [SMALL_STATE(2668)] = 120187, - [SMALL_STATE(2669)] = 120245, - [SMALL_STATE(2670)] = 120303, - [SMALL_STATE(2671)] = 120361, - [SMALL_STATE(2672)] = 120419, - [SMALL_STATE(2673)] = 120477, - [SMALL_STATE(2674)] = 120535, - [SMALL_STATE(2675)] = 120593, - [SMALL_STATE(2676)] = 120651, - [SMALL_STATE(2677)] = 120709, - [SMALL_STATE(2678)] = 120767, - [SMALL_STATE(2679)] = 120825, - [SMALL_STATE(2680)] = 120883, - [SMALL_STATE(2681)] = 120941, - [SMALL_STATE(2682)] = 120999, - [SMALL_STATE(2683)] = 121057, - [SMALL_STATE(2684)] = 121115, - [SMALL_STATE(2685)] = 121173, - [SMALL_STATE(2686)] = 121231, - [SMALL_STATE(2687)] = 121289, - [SMALL_STATE(2688)] = 121347, - [SMALL_STATE(2689)] = 121405, - [SMALL_STATE(2690)] = 121463, - [SMALL_STATE(2691)] = 121521, - [SMALL_STATE(2692)] = 121579, - [SMALL_STATE(2693)] = 121637, - [SMALL_STATE(2694)] = 121695, - [SMALL_STATE(2695)] = 121753, - [SMALL_STATE(2696)] = 121811, - [SMALL_STATE(2697)] = 121869, - [SMALL_STATE(2698)] = 121927, - [SMALL_STATE(2699)] = 121985, - [SMALL_STATE(2700)] = 122043, - [SMALL_STATE(2701)] = 122101, - [SMALL_STATE(2702)] = 122159, - [SMALL_STATE(2703)] = 122217, - [SMALL_STATE(2704)] = 122275, - [SMALL_STATE(2705)] = 122333, - [SMALL_STATE(2706)] = 122391, - [SMALL_STATE(2707)] = 122449, - [SMALL_STATE(2708)] = 122507, - [SMALL_STATE(2709)] = 122565, - [SMALL_STATE(2710)] = 122623, - [SMALL_STATE(2711)] = 122681, - [SMALL_STATE(2712)] = 122739, - [SMALL_STATE(2713)] = 122797, - [SMALL_STATE(2714)] = 122855, - [SMALL_STATE(2715)] = 122913, - [SMALL_STATE(2716)] = 122971, - [SMALL_STATE(2717)] = 123029, - [SMALL_STATE(2718)] = 123087, - [SMALL_STATE(2719)] = 123145, - [SMALL_STATE(2720)] = 123203, - [SMALL_STATE(2721)] = 123261, - [SMALL_STATE(2722)] = 123319, - [SMALL_STATE(2723)] = 123377, - [SMALL_STATE(2724)] = 123435, - [SMALL_STATE(2725)] = 123493, - [SMALL_STATE(2726)] = 123551, - [SMALL_STATE(2727)] = 123609, - [SMALL_STATE(2728)] = 123667, - [SMALL_STATE(2729)] = 123725, - [SMALL_STATE(2730)] = 123783, - [SMALL_STATE(2731)] = 123841, - [SMALL_STATE(2732)] = 123899, - [SMALL_STATE(2733)] = 123957, - [SMALL_STATE(2734)] = 124015, - [SMALL_STATE(2735)] = 124073, - [SMALL_STATE(2736)] = 124131, - [SMALL_STATE(2737)] = 124189, - [SMALL_STATE(2738)] = 124247, - [SMALL_STATE(2739)] = 124305, - [SMALL_STATE(2740)] = 124363, - [SMALL_STATE(2741)] = 124421, - [SMALL_STATE(2742)] = 124479, - [SMALL_STATE(2743)] = 124537, - [SMALL_STATE(2744)] = 124595, - [SMALL_STATE(2745)] = 124653, - [SMALL_STATE(2746)] = 124711, - [SMALL_STATE(2747)] = 124769, - [SMALL_STATE(2748)] = 124827, - [SMALL_STATE(2749)] = 124885, - [SMALL_STATE(2750)] = 124943, - [SMALL_STATE(2751)] = 125001, - [SMALL_STATE(2752)] = 125059, - [SMALL_STATE(2753)] = 125117, - [SMALL_STATE(2754)] = 125175, - [SMALL_STATE(2755)] = 125233, - [SMALL_STATE(2756)] = 125291, - [SMALL_STATE(2757)] = 125349, - [SMALL_STATE(2758)] = 125407, - [SMALL_STATE(2759)] = 125465, - [SMALL_STATE(2760)] = 125523, - [SMALL_STATE(2761)] = 125581, - [SMALL_STATE(2762)] = 125639, - [SMALL_STATE(2763)] = 125697, - [SMALL_STATE(2764)] = 125755, - [SMALL_STATE(2765)] = 125813, - [SMALL_STATE(2766)] = 125871, - [SMALL_STATE(2767)] = 125929, - [SMALL_STATE(2768)] = 125987, - [SMALL_STATE(2769)] = 126045, - [SMALL_STATE(2770)] = 126103, - [SMALL_STATE(2771)] = 126161, - [SMALL_STATE(2772)] = 126219, - [SMALL_STATE(2773)] = 126277, - [SMALL_STATE(2774)] = 126335, - [SMALL_STATE(2775)] = 126393, - [SMALL_STATE(2776)] = 126451, - [SMALL_STATE(2777)] = 126509, - [SMALL_STATE(2778)] = 126567, - [SMALL_STATE(2779)] = 126625, - [SMALL_STATE(2780)] = 126683, - [SMALL_STATE(2781)] = 126741, - [SMALL_STATE(2782)] = 126799, - [SMALL_STATE(2783)] = 126857, - [SMALL_STATE(2784)] = 126915, - [SMALL_STATE(2785)] = 126973, - [SMALL_STATE(2786)] = 127031, - [SMALL_STATE(2787)] = 127089, - [SMALL_STATE(2788)] = 127147, - [SMALL_STATE(2789)] = 127205, - [SMALL_STATE(2790)] = 127263, - [SMALL_STATE(2791)] = 127321, - [SMALL_STATE(2792)] = 127379, - [SMALL_STATE(2793)] = 127437, - [SMALL_STATE(2794)] = 127495, - [SMALL_STATE(2795)] = 127553, - [SMALL_STATE(2796)] = 127611, - [SMALL_STATE(2797)] = 127669, - [SMALL_STATE(2798)] = 127727, - [SMALL_STATE(2799)] = 127785, - [SMALL_STATE(2800)] = 127843, - [SMALL_STATE(2801)] = 127901, - [SMALL_STATE(2802)] = 127959, - [SMALL_STATE(2803)] = 128017, - [SMALL_STATE(2804)] = 128075, - [SMALL_STATE(2805)] = 128133, - [SMALL_STATE(2806)] = 128191, - [SMALL_STATE(2807)] = 128249, - [SMALL_STATE(2808)] = 128307, - [SMALL_STATE(2809)] = 128365, - [SMALL_STATE(2810)] = 128423, - [SMALL_STATE(2811)] = 128481, - [SMALL_STATE(2812)] = 128539, - [SMALL_STATE(2813)] = 128597, - [SMALL_STATE(2814)] = 128655, - [SMALL_STATE(2815)] = 128713, - [SMALL_STATE(2816)] = 128771, - [SMALL_STATE(2817)] = 128829, - [SMALL_STATE(2818)] = 128887, - [SMALL_STATE(2819)] = 128945, - [SMALL_STATE(2820)] = 129003, - [SMALL_STATE(2821)] = 129061, - [SMALL_STATE(2822)] = 129119, - [SMALL_STATE(2823)] = 129177, - [SMALL_STATE(2824)] = 129235, - [SMALL_STATE(2825)] = 129293, - [SMALL_STATE(2826)] = 129351, - [SMALL_STATE(2827)] = 129409, - [SMALL_STATE(2828)] = 129467, - [SMALL_STATE(2829)] = 129525, - [SMALL_STATE(2830)] = 129583, - [SMALL_STATE(2831)] = 129641, - [SMALL_STATE(2832)] = 129699, - [SMALL_STATE(2833)] = 129757, - [SMALL_STATE(2834)] = 129815, - [SMALL_STATE(2835)] = 129873, - [SMALL_STATE(2836)] = 129931, - [SMALL_STATE(2837)] = 129989, - [SMALL_STATE(2838)] = 130047, - [SMALL_STATE(2839)] = 130105, - [SMALL_STATE(2840)] = 130163, - [SMALL_STATE(2841)] = 130221, - [SMALL_STATE(2842)] = 130279, - [SMALL_STATE(2843)] = 130337, - [SMALL_STATE(2844)] = 130395, - [SMALL_STATE(2845)] = 130453, - [SMALL_STATE(2846)] = 130511, - [SMALL_STATE(2847)] = 130569, - [SMALL_STATE(2848)] = 130627, - [SMALL_STATE(2849)] = 130685, - [SMALL_STATE(2850)] = 130743, - [SMALL_STATE(2851)] = 130801, - [SMALL_STATE(2852)] = 130859, - [SMALL_STATE(2853)] = 130917, - [SMALL_STATE(2854)] = 130975, - [SMALL_STATE(2855)] = 131033, - [SMALL_STATE(2856)] = 131091, - [SMALL_STATE(2857)] = 131149, - [SMALL_STATE(2858)] = 131207, - [SMALL_STATE(2859)] = 131265, - [SMALL_STATE(2860)] = 131323, - [SMALL_STATE(2861)] = 131381, - [SMALL_STATE(2862)] = 131439, - [SMALL_STATE(2863)] = 131497, - [SMALL_STATE(2864)] = 131555, - [SMALL_STATE(2865)] = 131613, - [SMALL_STATE(2866)] = 131671, - [SMALL_STATE(2867)] = 131729, - [SMALL_STATE(2868)] = 131787, - [SMALL_STATE(2869)] = 131845, - [SMALL_STATE(2870)] = 131903, - [SMALL_STATE(2871)] = 131961, - [SMALL_STATE(2872)] = 132019, - [SMALL_STATE(2873)] = 132077, - [SMALL_STATE(2874)] = 132135, - [SMALL_STATE(2875)] = 132193, - [SMALL_STATE(2876)] = 132251, - [SMALL_STATE(2877)] = 132309, - [SMALL_STATE(2878)] = 132367, - [SMALL_STATE(2879)] = 132425, - [SMALL_STATE(2880)] = 132483, - [SMALL_STATE(2881)] = 132541, - [SMALL_STATE(2882)] = 132599, - [SMALL_STATE(2883)] = 132657, - [SMALL_STATE(2884)] = 132715, - [SMALL_STATE(2885)] = 132773, - [SMALL_STATE(2886)] = 132831, - [SMALL_STATE(2887)] = 132889, - [SMALL_STATE(2888)] = 132947, - [SMALL_STATE(2889)] = 133005, - [SMALL_STATE(2890)] = 133063, - [SMALL_STATE(2891)] = 133121, - [SMALL_STATE(2892)] = 133179, - [SMALL_STATE(2893)] = 133237, - [SMALL_STATE(2894)] = 133295, - [SMALL_STATE(2895)] = 133353, - [SMALL_STATE(2896)] = 133411, - [SMALL_STATE(2897)] = 133469, - [SMALL_STATE(2898)] = 133527, - [SMALL_STATE(2899)] = 133585, - [SMALL_STATE(2900)] = 133643, - [SMALL_STATE(2901)] = 133701, - [SMALL_STATE(2902)] = 133759, - [SMALL_STATE(2903)] = 133817, - [SMALL_STATE(2904)] = 133875, - [SMALL_STATE(2905)] = 133933, - [SMALL_STATE(2906)] = 133991, - [SMALL_STATE(2907)] = 134049, - [SMALL_STATE(2908)] = 134107, - [SMALL_STATE(2909)] = 134165, - [SMALL_STATE(2910)] = 134223, - [SMALL_STATE(2911)] = 134281, - [SMALL_STATE(2912)] = 134339, - [SMALL_STATE(2913)] = 134397, - [SMALL_STATE(2914)] = 134455, - [SMALL_STATE(2915)] = 134513, - [SMALL_STATE(2916)] = 134571, - [SMALL_STATE(2917)] = 134629, - [SMALL_STATE(2918)] = 134687, - [SMALL_STATE(2919)] = 134745, - [SMALL_STATE(2920)] = 134803, - [SMALL_STATE(2921)] = 134861, - [SMALL_STATE(2922)] = 134919, - [SMALL_STATE(2923)] = 134977, - [SMALL_STATE(2924)] = 135035, - [SMALL_STATE(2925)] = 135093, - [SMALL_STATE(2926)] = 135151, - [SMALL_STATE(2927)] = 135209, - [SMALL_STATE(2928)] = 135267, - [SMALL_STATE(2929)] = 135325, - [SMALL_STATE(2930)] = 135383, - [SMALL_STATE(2931)] = 135441, - [SMALL_STATE(2932)] = 135499, - [SMALL_STATE(2933)] = 135557, - [SMALL_STATE(2934)] = 135615, - [SMALL_STATE(2935)] = 135673, - [SMALL_STATE(2936)] = 135731, - [SMALL_STATE(2937)] = 135789, - [SMALL_STATE(2938)] = 135847, - [SMALL_STATE(2939)] = 135905, - [SMALL_STATE(2940)] = 135963, - [SMALL_STATE(2941)] = 136021, - [SMALL_STATE(2942)] = 136079, - [SMALL_STATE(2943)] = 136137, - [SMALL_STATE(2944)] = 136195, - [SMALL_STATE(2945)] = 136253, - [SMALL_STATE(2946)] = 136311, - [SMALL_STATE(2947)] = 136369, - [SMALL_STATE(2948)] = 136427, - [SMALL_STATE(2949)] = 136485, - [SMALL_STATE(2950)] = 136543, - [SMALL_STATE(2951)] = 136601, - [SMALL_STATE(2952)] = 136659, - [SMALL_STATE(2953)] = 136717, - [SMALL_STATE(2954)] = 136775, - [SMALL_STATE(2955)] = 136833, - [SMALL_STATE(2956)] = 136891, - [SMALL_STATE(2957)] = 136949, - [SMALL_STATE(2958)] = 137007, - [SMALL_STATE(2959)] = 137065, - [SMALL_STATE(2960)] = 137123, - [SMALL_STATE(2961)] = 137181, - [SMALL_STATE(2962)] = 137239, - [SMALL_STATE(2963)] = 137297, - [SMALL_STATE(2964)] = 137355, - [SMALL_STATE(2965)] = 137413, - [SMALL_STATE(2966)] = 137471, - [SMALL_STATE(2967)] = 137529, - [SMALL_STATE(2968)] = 137587, - [SMALL_STATE(2969)] = 137645, - [SMALL_STATE(2970)] = 137703, - [SMALL_STATE(2971)] = 137761, - [SMALL_STATE(2972)] = 137819, - [SMALL_STATE(2973)] = 137877, - [SMALL_STATE(2974)] = 137935, - [SMALL_STATE(2975)] = 137993, - [SMALL_STATE(2976)] = 138051, - [SMALL_STATE(2977)] = 138109, - [SMALL_STATE(2978)] = 138167, - [SMALL_STATE(2979)] = 138225, - [SMALL_STATE(2980)] = 138283, - [SMALL_STATE(2981)] = 138341, - [SMALL_STATE(2982)] = 138399, - [SMALL_STATE(2983)] = 138457, - [SMALL_STATE(2984)] = 138515, - [SMALL_STATE(2985)] = 138573, - [SMALL_STATE(2986)] = 138631, - [SMALL_STATE(2987)] = 138689, - [SMALL_STATE(2988)] = 138747, - [SMALL_STATE(2989)] = 138805, - [SMALL_STATE(2990)] = 138863, - [SMALL_STATE(2991)] = 138921, - [SMALL_STATE(2992)] = 138979, - [SMALL_STATE(2993)] = 139037, - [SMALL_STATE(2994)] = 139095, - [SMALL_STATE(2995)] = 139153, - [SMALL_STATE(2996)] = 139211, - [SMALL_STATE(2997)] = 139269, - [SMALL_STATE(2998)] = 139327, - [SMALL_STATE(2999)] = 139385, - [SMALL_STATE(3000)] = 139443, - [SMALL_STATE(3001)] = 139501, - [SMALL_STATE(3002)] = 139559, - [SMALL_STATE(3003)] = 139617, - [SMALL_STATE(3004)] = 139675, - [SMALL_STATE(3005)] = 139733, - [SMALL_STATE(3006)] = 139791, - [SMALL_STATE(3007)] = 139849, - [SMALL_STATE(3008)] = 139907, - [SMALL_STATE(3009)] = 139965, - [SMALL_STATE(3010)] = 140023, - [SMALL_STATE(3011)] = 140081, - [SMALL_STATE(3012)] = 140139, - [SMALL_STATE(3013)] = 140197, - [SMALL_STATE(3014)] = 140255, - [SMALL_STATE(3015)] = 140313, - [SMALL_STATE(3016)] = 140371, - [SMALL_STATE(3017)] = 140429, - [SMALL_STATE(3018)] = 140487, - [SMALL_STATE(3019)] = 140545, - [SMALL_STATE(3020)] = 140603, - [SMALL_STATE(3021)] = 140661, - [SMALL_STATE(3022)] = 140719, - [SMALL_STATE(3023)] = 140777, - [SMALL_STATE(3024)] = 140835, - [SMALL_STATE(3025)] = 140893, - [SMALL_STATE(3026)] = 140951, - [SMALL_STATE(3027)] = 141009, - [SMALL_STATE(3028)] = 141067, - [SMALL_STATE(3029)] = 141125, - [SMALL_STATE(3030)] = 141183, - [SMALL_STATE(3031)] = 141241, - [SMALL_STATE(3032)] = 141299, - [SMALL_STATE(3033)] = 141357, - [SMALL_STATE(3034)] = 141415, - [SMALL_STATE(3035)] = 141473, - [SMALL_STATE(3036)] = 141531, - [SMALL_STATE(3037)] = 141589, - [SMALL_STATE(3038)] = 141647, - [SMALL_STATE(3039)] = 141705, - [SMALL_STATE(3040)] = 141763, - [SMALL_STATE(3041)] = 141821, - [SMALL_STATE(3042)] = 141879, - [SMALL_STATE(3043)] = 141937, - [SMALL_STATE(3044)] = 141995, - [SMALL_STATE(3045)] = 142053, - [SMALL_STATE(3046)] = 142111, - [SMALL_STATE(3047)] = 142169, - [SMALL_STATE(3048)] = 142227, - [SMALL_STATE(3049)] = 142285, - [SMALL_STATE(3050)] = 142343, - [SMALL_STATE(3051)] = 142401, - [SMALL_STATE(3052)] = 142459, - [SMALL_STATE(3053)] = 142517, - [SMALL_STATE(3054)] = 142575, - [SMALL_STATE(3055)] = 142633, - [SMALL_STATE(3056)] = 142691, - [SMALL_STATE(3057)] = 142749, - [SMALL_STATE(3058)] = 142807, - [SMALL_STATE(3059)] = 142865, - [SMALL_STATE(3060)] = 142923, - [SMALL_STATE(3061)] = 142981, - [SMALL_STATE(3062)] = 143039, - [SMALL_STATE(3063)] = 143097, - [SMALL_STATE(3064)] = 143155, - [SMALL_STATE(3065)] = 143213, - [SMALL_STATE(3066)] = 143271, - [SMALL_STATE(3067)] = 143329, - [SMALL_STATE(3068)] = 143387, - [SMALL_STATE(3069)] = 143445, - [SMALL_STATE(3070)] = 143503, - [SMALL_STATE(3071)] = 143561, - [SMALL_STATE(3072)] = 143619, - [SMALL_STATE(3073)] = 143677, - [SMALL_STATE(3074)] = 143735, - [SMALL_STATE(3075)] = 143793, - [SMALL_STATE(3076)] = 143851, - [SMALL_STATE(3077)] = 143909, - [SMALL_STATE(3078)] = 143967, - [SMALL_STATE(3079)] = 144025, - [SMALL_STATE(3080)] = 144083, - [SMALL_STATE(3081)] = 144141, - [SMALL_STATE(3082)] = 144199, - [SMALL_STATE(3083)] = 144257, - [SMALL_STATE(3084)] = 144315, - [SMALL_STATE(3085)] = 144373, - [SMALL_STATE(3086)] = 144431, - [SMALL_STATE(3087)] = 144489, - [SMALL_STATE(3088)] = 144547, - [SMALL_STATE(3089)] = 144605, - [SMALL_STATE(3090)] = 144663, - [SMALL_STATE(3091)] = 144721, - [SMALL_STATE(3092)] = 144779, - [SMALL_STATE(3093)] = 144837, - [SMALL_STATE(3094)] = 144895, - [SMALL_STATE(3095)] = 144953, - [SMALL_STATE(3096)] = 145011, - [SMALL_STATE(3097)] = 145069, - [SMALL_STATE(3098)] = 145127, - [SMALL_STATE(3099)] = 145185, - [SMALL_STATE(3100)] = 145243, - [SMALL_STATE(3101)] = 145301, - [SMALL_STATE(3102)] = 145359, - [SMALL_STATE(3103)] = 145417, - [SMALL_STATE(3104)] = 145475, - [SMALL_STATE(3105)] = 145533, - [SMALL_STATE(3106)] = 145591, - [SMALL_STATE(3107)] = 145649, - [SMALL_STATE(3108)] = 145707, - [SMALL_STATE(3109)] = 145765, - [SMALL_STATE(3110)] = 145823, - [SMALL_STATE(3111)] = 145881, - [SMALL_STATE(3112)] = 145939, - [SMALL_STATE(3113)] = 145997, - [SMALL_STATE(3114)] = 146055, - [SMALL_STATE(3115)] = 146113, - [SMALL_STATE(3116)] = 146171, - [SMALL_STATE(3117)] = 146229, - [SMALL_STATE(3118)] = 146287, - [SMALL_STATE(3119)] = 146345, - [SMALL_STATE(3120)] = 146403, - [SMALL_STATE(3121)] = 146461, - [SMALL_STATE(3122)] = 146519, - [SMALL_STATE(3123)] = 146577, - [SMALL_STATE(3124)] = 146635, - [SMALL_STATE(3125)] = 146693, - [SMALL_STATE(3126)] = 146751, - [SMALL_STATE(3127)] = 146809, - [SMALL_STATE(3128)] = 146867, - [SMALL_STATE(3129)] = 146925, - [SMALL_STATE(3130)] = 146983, - [SMALL_STATE(3131)] = 147041, - [SMALL_STATE(3132)] = 147099, - [SMALL_STATE(3133)] = 147157, - [SMALL_STATE(3134)] = 147215, - [SMALL_STATE(3135)] = 147273, - [SMALL_STATE(3136)] = 147331, - [SMALL_STATE(3137)] = 147389, - [SMALL_STATE(3138)] = 147447, - [SMALL_STATE(3139)] = 147505, - [SMALL_STATE(3140)] = 147563, - [SMALL_STATE(3141)] = 147621, - [SMALL_STATE(3142)] = 147679, - [SMALL_STATE(3143)] = 147737, - [SMALL_STATE(3144)] = 147795, - [SMALL_STATE(3145)] = 147853, - [SMALL_STATE(3146)] = 147911, - [SMALL_STATE(3147)] = 147969, - [SMALL_STATE(3148)] = 148027, - [SMALL_STATE(3149)] = 148085, - [SMALL_STATE(3150)] = 148143, - [SMALL_STATE(3151)] = 148201, - [SMALL_STATE(3152)] = 148259, - [SMALL_STATE(3153)] = 148317, - [SMALL_STATE(3154)] = 148375, - [SMALL_STATE(3155)] = 148433, - [SMALL_STATE(3156)] = 148491, - [SMALL_STATE(3157)] = 148549, - [SMALL_STATE(3158)] = 148607, - [SMALL_STATE(3159)] = 148665, - [SMALL_STATE(3160)] = 148723, - [SMALL_STATE(3161)] = 148781, - [SMALL_STATE(3162)] = 148839, - [SMALL_STATE(3163)] = 148897, - [SMALL_STATE(3164)] = 148955, - [SMALL_STATE(3165)] = 149013, - [SMALL_STATE(3166)] = 149071, - [SMALL_STATE(3167)] = 149129, - [SMALL_STATE(3168)] = 149187, - [SMALL_STATE(3169)] = 149245, - [SMALL_STATE(3170)] = 149303, - [SMALL_STATE(3171)] = 149361, - [SMALL_STATE(3172)] = 149419, - [SMALL_STATE(3173)] = 149477, - [SMALL_STATE(3174)] = 149535, - [SMALL_STATE(3175)] = 149593, - [SMALL_STATE(3176)] = 149651, - [SMALL_STATE(3177)] = 149709, - [SMALL_STATE(3178)] = 149767, - [SMALL_STATE(3179)] = 149825, - [SMALL_STATE(3180)] = 149883, - [SMALL_STATE(3181)] = 149941, - [SMALL_STATE(3182)] = 149999, - [SMALL_STATE(3183)] = 150057, - [SMALL_STATE(3184)] = 150115, - [SMALL_STATE(3185)] = 150173, - [SMALL_STATE(3186)] = 150231, - [SMALL_STATE(3187)] = 150289, - [SMALL_STATE(3188)] = 150347, - [SMALL_STATE(3189)] = 150405, - [SMALL_STATE(3190)] = 150463, - [SMALL_STATE(3191)] = 150521, - [SMALL_STATE(3192)] = 150579, - [SMALL_STATE(3193)] = 150637, - [SMALL_STATE(3194)] = 150695, - [SMALL_STATE(3195)] = 150753, - [SMALL_STATE(3196)] = 150811, - [SMALL_STATE(3197)] = 150869, - [SMALL_STATE(3198)] = 150927, - [SMALL_STATE(3199)] = 150985, - [SMALL_STATE(3200)] = 151043, - [SMALL_STATE(3201)] = 151101, - [SMALL_STATE(3202)] = 151159, - [SMALL_STATE(3203)] = 151217, - [SMALL_STATE(3204)] = 151275, - [SMALL_STATE(3205)] = 151333, - [SMALL_STATE(3206)] = 151391, - [SMALL_STATE(3207)] = 151449, - [SMALL_STATE(3208)] = 151507, - [SMALL_STATE(3209)] = 151565, - [SMALL_STATE(3210)] = 151623, - [SMALL_STATE(3211)] = 151681, - [SMALL_STATE(3212)] = 151739, - [SMALL_STATE(3213)] = 151797, - [SMALL_STATE(3214)] = 151855, - [SMALL_STATE(3215)] = 151913, - [SMALL_STATE(3216)] = 151971, - [SMALL_STATE(3217)] = 152029, - [SMALL_STATE(3218)] = 152087, - [SMALL_STATE(3219)] = 152145, - [SMALL_STATE(3220)] = 152203, - [SMALL_STATE(3221)] = 152261, - [SMALL_STATE(3222)] = 152319, - [SMALL_STATE(3223)] = 152377, - [SMALL_STATE(3224)] = 152435, - [SMALL_STATE(3225)] = 152493, - [SMALL_STATE(3226)] = 152551, - [SMALL_STATE(3227)] = 152609, - [SMALL_STATE(3228)] = 152667, - [SMALL_STATE(3229)] = 152725, - [SMALL_STATE(3230)] = 152783, - [SMALL_STATE(3231)] = 152841, - [SMALL_STATE(3232)] = 152899, - [SMALL_STATE(3233)] = 152957, - [SMALL_STATE(3234)] = 153015, - [SMALL_STATE(3235)] = 153073, - [SMALL_STATE(3236)] = 153131, - [SMALL_STATE(3237)] = 153189, - [SMALL_STATE(3238)] = 153247, - [SMALL_STATE(3239)] = 153305, - [SMALL_STATE(3240)] = 153363, - [SMALL_STATE(3241)] = 153421, - [SMALL_STATE(3242)] = 153479, - [SMALL_STATE(3243)] = 153537, - [SMALL_STATE(3244)] = 153595, - [SMALL_STATE(3245)] = 153653, - [SMALL_STATE(3246)] = 153711, - [SMALL_STATE(3247)] = 153769, - [SMALL_STATE(3248)] = 153827, - [SMALL_STATE(3249)] = 153885, - [SMALL_STATE(3250)] = 153943, - [SMALL_STATE(3251)] = 154001, - [SMALL_STATE(3252)] = 154059, - [SMALL_STATE(3253)] = 154117, - [SMALL_STATE(3254)] = 154175, - [SMALL_STATE(3255)] = 154233, - [SMALL_STATE(3256)] = 154291, - [SMALL_STATE(3257)] = 154349, - [SMALL_STATE(3258)] = 154407, - [SMALL_STATE(3259)] = 154465, - [SMALL_STATE(3260)] = 154523, - [SMALL_STATE(3261)] = 154581, - [SMALL_STATE(3262)] = 154639, - [SMALL_STATE(3263)] = 154697, - [SMALL_STATE(3264)] = 154755, - [SMALL_STATE(3265)] = 154813, - [SMALL_STATE(3266)] = 154871, - [SMALL_STATE(3267)] = 154929, - [SMALL_STATE(3268)] = 154987, - [SMALL_STATE(3269)] = 155045, - [SMALL_STATE(3270)] = 155103, - [SMALL_STATE(3271)] = 155161, - [SMALL_STATE(3272)] = 155219, - [SMALL_STATE(3273)] = 155277, - [SMALL_STATE(3274)] = 155335, - [SMALL_STATE(3275)] = 155393, - [SMALL_STATE(3276)] = 155451, - [SMALL_STATE(3277)] = 155509, - [SMALL_STATE(3278)] = 155567, - [SMALL_STATE(3279)] = 155625, - [SMALL_STATE(3280)] = 155683, - [SMALL_STATE(3281)] = 155741, - [SMALL_STATE(3282)] = 155799, - [SMALL_STATE(3283)] = 155857, - [SMALL_STATE(3284)] = 155915, - [SMALL_STATE(3285)] = 155973, - [SMALL_STATE(3286)] = 156031, - [SMALL_STATE(3287)] = 156089, - [SMALL_STATE(3288)] = 156147, - [SMALL_STATE(3289)] = 156205, - [SMALL_STATE(3290)] = 156263, - [SMALL_STATE(3291)] = 156321, - [SMALL_STATE(3292)] = 156379, - [SMALL_STATE(3293)] = 156437, - [SMALL_STATE(3294)] = 156495, - [SMALL_STATE(3295)] = 156553, - [SMALL_STATE(3296)] = 156611, - [SMALL_STATE(3297)] = 156669, - [SMALL_STATE(3298)] = 156727, - [SMALL_STATE(3299)] = 156785, - [SMALL_STATE(3300)] = 156843, - [SMALL_STATE(3301)] = 156901, - [SMALL_STATE(3302)] = 156959, - [SMALL_STATE(3303)] = 157017, - [SMALL_STATE(3304)] = 157075, - [SMALL_STATE(3305)] = 157133, - [SMALL_STATE(3306)] = 157191, - [SMALL_STATE(3307)] = 157249, - [SMALL_STATE(3308)] = 157307, - [SMALL_STATE(3309)] = 157365, - [SMALL_STATE(3310)] = 157423, - [SMALL_STATE(3311)] = 157481, - [SMALL_STATE(3312)] = 157539, - [SMALL_STATE(3313)] = 157597, - [SMALL_STATE(3314)] = 157655, - [SMALL_STATE(3315)] = 157713, - [SMALL_STATE(3316)] = 157771, - [SMALL_STATE(3317)] = 157829, - [SMALL_STATE(3318)] = 157887, - [SMALL_STATE(3319)] = 157945, - [SMALL_STATE(3320)] = 158003, - [SMALL_STATE(3321)] = 158061, - [SMALL_STATE(3322)] = 158119, - [SMALL_STATE(3323)] = 158177, - [SMALL_STATE(3324)] = 158235, - [SMALL_STATE(3325)] = 158293, - [SMALL_STATE(3326)] = 158351, - [SMALL_STATE(3327)] = 158409, - [SMALL_STATE(3328)] = 158467, - [SMALL_STATE(3329)] = 158525, - [SMALL_STATE(3330)] = 158583, - [SMALL_STATE(3331)] = 158641, - [SMALL_STATE(3332)] = 158699, - [SMALL_STATE(3333)] = 158757, - [SMALL_STATE(3334)] = 158815, - [SMALL_STATE(3335)] = 158873, - [SMALL_STATE(3336)] = 158931, - [SMALL_STATE(3337)] = 158989, - [SMALL_STATE(3338)] = 159047, - [SMALL_STATE(3339)] = 159105, - [SMALL_STATE(3340)] = 159163, - [SMALL_STATE(3341)] = 159221, - [SMALL_STATE(3342)] = 159279, - [SMALL_STATE(3343)] = 159337, - [SMALL_STATE(3344)] = 159395, - [SMALL_STATE(3345)] = 159453, - [SMALL_STATE(3346)] = 159511, - [SMALL_STATE(3347)] = 159569, - [SMALL_STATE(3348)] = 159627, - [SMALL_STATE(3349)] = 159685, - [SMALL_STATE(3350)] = 159743, - [SMALL_STATE(3351)] = 159801, - [SMALL_STATE(3352)] = 159859, - [SMALL_STATE(3353)] = 159917, - [SMALL_STATE(3354)] = 159975, - [SMALL_STATE(3355)] = 160033, - [SMALL_STATE(3356)] = 160091, - [SMALL_STATE(3357)] = 160149, - [SMALL_STATE(3358)] = 160207, - [SMALL_STATE(3359)] = 160265, - [SMALL_STATE(3360)] = 160323, - [SMALL_STATE(3361)] = 160381, - [SMALL_STATE(3362)] = 160439, - [SMALL_STATE(3363)] = 160497, - [SMALL_STATE(3364)] = 160555, - [SMALL_STATE(3365)] = 160613, - [SMALL_STATE(3366)] = 160671, - [SMALL_STATE(3367)] = 160729, - [SMALL_STATE(3368)] = 160787, - [SMALL_STATE(3369)] = 160845, - [SMALL_STATE(3370)] = 160903, - [SMALL_STATE(3371)] = 160961, - [SMALL_STATE(3372)] = 161019, - [SMALL_STATE(3373)] = 161077, - [SMALL_STATE(3374)] = 161135, - [SMALL_STATE(3375)] = 161193, - [SMALL_STATE(3376)] = 161251, - [SMALL_STATE(3377)] = 161309, - [SMALL_STATE(3378)] = 161367, - [SMALL_STATE(3379)] = 161425, - [SMALL_STATE(3380)] = 161483, - [SMALL_STATE(3381)] = 161541, - [SMALL_STATE(3382)] = 161599, - [SMALL_STATE(3383)] = 161657, - [SMALL_STATE(3384)] = 161715, - [SMALL_STATE(3385)] = 161773, - [SMALL_STATE(3386)] = 161831, - [SMALL_STATE(3387)] = 161889, - [SMALL_STATE(3388)] = 161947, - [SMALL_STATE(3389)] = 162005, - [SMALL_STATE(3390)] = 162063, - [SMALL_STATE(3391)] = 162121, - [SMALL_STATE(3392)] = 162179, - [SMALL_STATE(3393)] = 162237, - [SMALL_STATE(3394)] = 162295, - [SMALL_STATE(3395)] = 162353, - [SMALL_STATE(3396)] = 162411, - [SMALL_STATE(3397)] = 162469, - [SMALL_STATE(3398)] = 162527, - [SMALL_STATE(3399)] = 162585, - [SMALL_STATE(3400)] = 162643, - [SMALL_STATE(3401)] = 162701, - [SMALL_STATE(3402)] = 162759, - [SMALL_STATE(3403)] = 162817, - [SMALL_STATE(3404)] = 162875, - [SMALL_STATE(3405)] = 162933, - [SMALL_STATE(3406)] = 162991, - [SMALL_STATE(3407)] = 163049, - [SMALL_STATE(3408)] = 163107, - [SMALL_STATE(3409)] = 163165, - [SMALL_STATE(3410)] = 163223, - [SMALL_STATE(3411)] = 163281, - [SMALL_STATE(3412)] = 163339, - [SMALL_STATE(3413)] = 163397, - [SMALL_STATE(3414)] = 163455, - [SMALL_STATE(3415)] = 163513, - [SMALL_STATE(3416)] = 163571, - [SMALL_STATE(3417)] = 163629, - [SMALL_STATE(3418)] = 163687, - [SMALL_STATE(3419)] = 163745, - [SMALL_STATE(3420)] = 163803, - [SMALL_STATE(3421)] = 163861, - [SMALL_STATE(3422)] = 163919, - [SMALL_STATE(3423)] = 163977, - [SMALL_STATE(3424)] = 164035, - [SMALL_STATE(3425)] = 164093, - [SMALL_STATE(3426)] = 164151, - [SMALL_STATE(3427)] = 164209, - [SMALL_STATE(3428)] = 164267, - [SMALL_STATE(3429)] = 164325, - [SMALL_STATE(3430)] = 164383, - [SMALL_STATE(3431)] = 164441, - [SMALL_STATE(3432)] = 164499, - [SMALL_STATE(3433)] = 164557, - [SMALL_STATE(3434)] = 164615, - [SMALL_STATE(3435)] = 164673, - [SMALL_STATE(3436)] = 164731, - [SMALL_STATE(3437)] = 164789, - [SMALL_STATE(3438)] = 164847, - [SMALL_STATE(3439)] = 164905, - [SMALL_STATE(3440)] = 164963, - [SMALL_STATE(3441)] = 165021, - [SMALL_STATE(3442)] = 165079, - [SMALL_STATE(3443)] = 165137, - [SMALL_STATE(3444)] = 165195, - [SMALL_STATE(3445)] = 165253, - [SMALL_STATE(3446)] = 165311, - [SMALL_STATE(3447)] = 165369, - [SMALL_STATE(3448)] = 165427, - [SMALL_STATE(3449)] = 165485, - [SMALL_STATE(3450)] = 165543, - [SMALL_STATE(3451)] = 165601, - [SMALL_STATE(3452)] = 165659, - [SMALL_STATE(3453)] = 165717, - [SMALL_STATE(3454)] = 165775, - [SMALL_STATE(3455)] = 165833, - [SMALL_STATE(3456)] = 165891, - [SMALL_STATE(3457)] = 165949, - [SMALL_STATE(3458)] = 166007, - [SMALL_STATE(3459)] = 166065, - [SMALL_STATE(3460)] = 166123, - [SMALL_STATE(3461)] = 166181, - [SMALL_STATE(3462)] = 166239, - [SMALL_STATE(3463)] = 166297, - [SMALL_STATE(3464)] = 166355, - [SMALL_STATE(3465)] = 166413, - [SMALL_STATE(3466)] = 166471, - [SMALL_STATE(3467)] = 166529, - [SMALL_STATE(3468)] = 166587, - [SMALL_STATE(3469)] = 166645, - [SMALL_STATE(3470)] = 166703, - [SMALL_STATE(3471)] = 166761, - [SMALL_STATE(3472)] = 166819, - [SMALL_STATE(3473)] = 166877, - [SMALL_STATE(3474)] = 166935, - [SMALL_STATE(3475)] = 166993, - [SMALL_STATE(3476)] = 167051, - [SMALL_STATE(3477)] = 167109, - [SMALL_STATE(3478)] = 167167, - [SMALL_STATE(3479)] = 167225, - [SMALL_STATE(3480)] = 167283, - [SMALL_STATE(3481)] = 167341, - [SMALL_STATE(3482)] = 167399, - [SMALL_STATE(3483)] = 167457, - [SMALL_STATE(3484)] = 167515, - [SMALL_STATE(3485)] = 167573, - [SMALL_STATE(3486)] = 167631, - [SMALL_STATE(3487)] = 167689, - [SMALL_STATE(3488)] = 167747, - [SMALL_STATE(3489)] = 167805, - [SMALL_STATE(3490)] = 167863, - [SMALL_STATE(3491)] = 167921, - [SMALL_STATE(3492)] = 167979, - [SMALL_STATE(3493)] = 168037, - [SMALL_STATE(3494)] = 168095, - [SMALL_STATE(3495)] = 168153, - [SMALL_STATE(3496)] = 168211, - [SMALL_STATE(3497)] = 168269, - [SMALL_STATE(3498)] = 168327, - [SMALL_STATE(3499)] = 168385, - [SMALL_STATE(3500)] = 168443, - [SMALL_STATE(3501)] = 168501, - [SMALL_STATE(3502)] = 168559, - [SMALL_STATE(3503)] = 168617, - [SMALL_STATE(3504)] = 168675, - [SMALL_STATE(3505)] = 168733, - [SMALL_STATE(3506)] = 168791, - [SMALL_STATE(3507)] = 168849, - [SMALL_STATE(3508)] = 168907, - [SMALL_STATE(3509)] = 168965, - [SMALL_STATE(3510)] = 169023, - [SMALL_STATE(3511)] = 169081, - [SMALL_STATE(3512)] = 169139, - [SMALL_STATE(3513)] = 169197, - [SMALL_STATE(3514)] = 169255, - [SMALL_STATE(3515)] = 169313, - [SMALL_STATE(3516)] = 169371, - [SMALL_STATE(3517)] = 169429, - [SMALL_STATE(3518)] = 169487, - [SMALL_STATE(3519)] = 169545, - [SMALL_STATE(3520)] = 169603, - [SMALL_STATE(3521)] = 169661, - [SMALL_STATE(3522)] = 169719, - [SMALL_STATE(3523)] = 169777, - [SMALL_STATE(3524)] = 169835, - [SMALL_STATE(3525)] = 169893, - [SMALL_STATE(3526)] = 169951, - [SMALL_STATE(3527)] = 170009, - [SMALL_STATE(3528)] = 170067, - [SMALL_STATE(3529)] = 170125, - [SMALL_STATE(3530)] = 170183, - [SMALL_STATE(3531)] = 170241, - [SMALL_STATE(3532)] = 170299, - [SMALL_STATE(3533)] = 170357, - [SMALL_STATE(3534)] = 170415, - [SMALL_STATE(3535)] = 170473, - [SMALL_STATE(3536)] = 170531, - [SMALL_STATE(3537)] = 170589, - [SMALL_STATE(3538)] = 170647, - [SMALL_STATE(3539)] = 170705, - [SMALL_STATE(3540)] = 170763, - [SMALL_STATE(3541)] = 170821, - [SMALL_STATE(3542)] = 170879, - [SMALL_STATE(3543)] = 170937, - [SMALL_STATE(3544)] = 170995, - [SMALL_STATE(3545)] = 171053, - [SMALL_STATE(3546)] = 171111, - [SMALL_STATE(3547)] = 171169, - [SMALL_STATE(3548)] = 171227, - [SMALL_STATE(3549)] = 171285, - [SMALL_STATE(3550)] = 171343, - [SMALL_STATE(3551)] = 171401, - [SMALL_STATE(3552)] = 171459, - [SMALL_STATE(3553)] = 171517, - [SMALL_STATE(3554)] = 171575, - [SMALL_STATE(3555)] = 171633, - [SMALL_STATE(3556)] = 171691, - [SMALL_STATE(3557)] = 171749, - [SMALL_STATE(3558)] = 171807, - [SMALL_STATE(3559)] = 171865, - [SMALL_STATE(3560)] = 171923, - [SMALL_STATE(3561)] = 171981, - [SMALL_STATE(3562)] = 172039, - [SMALL_STATE(3563)] = 172097, - [SMALL_STATE(3564)] = 172155, - [SMALL_STATE(3565)] = 172213, - [SMALL_STATE(3566)] = 172271, - [SMALL_STATE(3567)] = 172329, - [SMALL_STATE(3568)] = 172387, - [SMALL_STATE(3569)] = 172445, - [SMALL_STATE(3570)] = 172503, - [SMALL_STATE(3571)] = 172561, - [SMALL_STATE(3572)] = 172619, - [SMALL_STATE(3573)] = 172677, - [SMALL_STATE(3574)] = 172735, - [SMALL_STATE(3575)] = 172793, - [SMALL_STATE(3576)] = 172851, - [SMALL_STATE(3577)] = 172909, - [SMALL_STATE(3578)] = 172967, - [SMALL_STATE(3579)] = 173025, - [SMALL_STATE(3580)] = 173083, - [SMALL_STATE(3581)] = 173141, - [SMALL_STATE(3582)] = 173199, - [SMALL_STATE(3583)] = 173257, - [SMALL_STATE(3584)] = 173315, - [SMALL_STATE(3585)] = 173373, - [SMALL_STATE(3586)] = 173431, - [SMALL_STATE(3587)] = 173489, - [SMALL_STATE(3588)] = 173547, - [SMALL_STATE(3589)] = 173605, - [SMALL_STATE(3590)] = 173663, - [SMALL_STATE(3591)] = 173721, - [SMALL_STATE(3592)] = 173779, - [SMALL_STATE(3593)] = 173837, - [SMALL_STATE(3594)] = 173895, - [SMALL_STATE(3595)] = 173953, - [SMALL_STATE(3596)] = 174011, - [SMALL_STATE(3597)] = 174069, - [SMALL_STATE(3598)] = 174127, - [SMALL_STATE(3599)] = 174185, - [SMALL_STATE(3600)] = 174243, - [SMALL_STATE(3601)] = 174301, - [SMALL_STATE(3602)] = 174359, - [SMALL_STATE(3603)] = 174417, - [SMALL_STATE(3604)] = 174475, - [SMALL_STATE(3605)] = 174533, - [SMALL_STATE(3606)] = 174591, - [SMALL_STATE(3607)] = 174649, - [SMALL_STATE(3608)] = 174707, - [SMALL_STATE(3609)] = 174765, - [SMALL_STATE(3610)] = 174823, - [SMALL_STATE(3611)] = 174881, - [SMALL_STATE(3612)] = 174939, - [SMALL_STATE(3613)] = 174997, - [SMALL_STATE(3614)] = 175055, - [SMALL_STATE(3615)] = 175113, - [SMALL_STATE(3616)] = 175171, - [SMALL_STATE(3617)] = 175229, - [SMALL_STATE(3618)] = 175287, - [SMALL_STATE(3619)] = 175345, - [SMALL_STATE(3620)] = 175403, - [SMALL_STATE(3621)] = 175461, - [SMALL_STATE(3622)] = 175519, - [SMALL_STATE(3623)] = 175577, - [SMALL_STATE(3624)] = 175635, - [SMALL_STATE(3625)] = 175693, - [SMALL_STATE(3626)] = 175751, - [SMALL_STATE(3627)] = 175809, - [SMALL_STATE(3628)] = 175867, - [SMALL_STATE(3629)] = 175925, - [SMALL_STATE(3630)] = 175983, - [SMALL_STATE(3631)] = 176041, - [SMALL_STATE(3632)] = 176099, - [SMALL_STATE(3633)] = 176157, - [SMALL_STATE(3634)] = 176215, - [SMALL_STATE(3635)] = 176273, - [SMALL_STATE(3636)] = 176331, - [SMALL_STATE(3637)] = 176389, - [SMALL_STATE(3638)] = 176447, - [SMALL_STATE(3639)] = 176505, - [SMALL_STATE(3640)] = 176563, - [SMALL_STATE(3641)] = 176621, - [SMALL_STATE(3642)] = 176679, - [SMALL_STATE(3643)] = 176711, - [SMALL_STATE(3644)] = 176743, - [SMALL_STATE(3645)] = 176775, - [SMALL_STATE(3646)] = 176807, - [SMALL_STATE(3647)] = 176839, - [SMALL_STATE(3648)] = 176871, - [SMALL_STATE(3649)] = 176903, - [SMALL_STATE(3650)] = 176935, - [SMALL_STATE(3651)] = 176967, - [SMALL_STATE(3652)] = 176999, - [SMALL_STATE(3653)] = 177031, - [SMALL_STATE(3654)] = 177063, - [SMALL_STATE(3655)] = 177095, - [SMALL_STATE(3656)] = 177127, - [SMALL_STATE(3657)] = 177159, - [SMALL_STATE(3658)] = 177191, - [SMALL_STATE(3659)] = 177223, - [SMALL_STATE(3660)] = 177255, - [SMALL_STATE(3661)] = 177287, - [SMALL_STATE(3662)] = 177319, - [SMALL_STATE(3663)] = 177351, - [SMALL_STATE(3664)] = 177383, - [SMALL_STATE(3665)] = 177415, - [SMALL_STATE(3666)] = 177447, - [SMALL_STATE(3667)] = 177479, - [SMALL_STATE(3668)] = 177511, - [SMALL_STATE(3669)] = 177543, - [SMALL_STATE(3670)] = 177575, - [SMALL_STATE(3671)] = 177607, - [SMALL_STATE(3672)] = 177639, - [SMALL_STATE(3673)] = 177671, - [SMALL_STATE(3674)] = 177703, - [SMALL_STATE(3675)] = 177735, - [SMALL_STATE(3676)] = 177767, - [SMALL_STATE(3677)] = 177799, - [SMALL_STATE(3678)] = 177822, - [SMALL_STATE(3679)] = 177845, - [SMALL_STATE(3680)] = 177868, - [SMALL_STATE(3681)] = 177891, - [SMALL_STATE(3682)] = 177914, - [SMALL_STATE(3683)] = 177937, - [SMALL_STATE(3684)] = 177960, - [SMALL_STATE(3685)] = 177983, - [SMALL_STATE(3686)] = 178006, - [SMALL_STATE(3687)] = 178029, - [SMALL_STATE(3688)] = 178052, - [SMALL_STATE(3689)] = 178075, - [SMALL_STATE(3690)] = 178098, - [SMALL_STATE(3691)] = 178121, - [SMALL_STATE(3692)] = 178144, - [SMALL_STATE(3693)] = 178167, - [SMALL_STATE(3694)] = 178190, - [SMALL_STATE(3695)] = 178213, - [SMALL_STATE(3696)] = 178236, - [SMALL_STATE(3697)] = 178259, - [SMALL_STATE(3698)] = 178282, - [SMALL_STATE(3699)] = 178305, - [SMALL_STATE(3700)] = 178328, - [SMALL_STATE(3701)] = 178351, - [SMALL_STATE(3702)] = 178374, - [SMALL_STATE(3703)] = 178397, - [SMALL_STATE(3704)] = 178420, - [SMALL_STATE(3705)] = 178443, - [SMALL_STATE(3706)] = 178466, - [SMALL_STATE(3707)] = 178489, - [SMALL_STATE(3708)] = 178512, - [SMALL_STATE(3709)] = 178535, - [SMALL_STATE(3710)] = 178558, - [SMALL_STATE(3711)] = 178581, - [SMALL_STATE(3712)] = 178604, - [SMALL_STATE(3713)] = 178627, - [SMALL_STATE(3714)] = 178650, - [SMALL_STATE(3715)] = 178673, - [SMALL_STATE(3716)] = 178696, - [SMALL_STATE(3717)] = 178719, - [SMALL_STATE(3718)] = 178742, - [SMALL_STATE(3719)] = 178765, - [SMALL_STATE(3720)] = 178788, - [SMALL_STATE(3721)] = 178811, - [SMALL_STATE(3722)] = 178834, - [SMALL_STATE(3723)] = 178857, - [SMALL_STATE(3724)] = 178880, - [SMALL_STATE(3725)] = 178903, - [SMALL_STATE(3726)] = 178926, - [SMALL_STATE(3727)] = 178949, - [SMALL_STATE(3728)] = 178972, - [SMALL_STATE(3729)] = 178995, - [SMALL_STATE(3730)] = 179018, - [SMALL_STATE(3731)] = 179041, - [SMALL_STATE(3732)] = 179064, - [SMALL_STATE(3733)] = 179087, - [SMALL_STATE(3734)] = 179110, - [SMALL_STATE(3735)] = 179133, - [SMALL_STATE(3736)] = 179156, - [SMALL_STATE(3737)] = 179179, - [SMALL_STATE(3738)] = 179202, - [SMALL_STATE(3739)] = 179225, - [SMALL_STATE(3740)] = 179248, - [SMALL_STATE(3741)] = 179271, - [SMALL_STATE(3742)] = 179294, - [SMALL_STATE(3743)] = 179317, - [SMALL_STATE(3744)] = 179340, - [SMALL_STATE(3745)] = 179363, - [SMALL_STATE(3746)] = 179386, - [SMALL_STATE(3747)] = 179409, - [SMALL_STATE(3748)] = 179432, - [SMALL_STATE(3749)] = 179455, - [SMALL_STATE(3750)] = 179478, - [SMALL_STATE(3751)] = 179501, - [SMALL_STATE(3752)] = 179524, - [SMALL_STATE(3753)] = 179547, - [SMALL_STATE(3754)] = 179570, - [SMALL_STATE(3755)] = 179593, - [SMALL_STATE(3756)] = 179616, - [SMALL_STATE(3757)] = 179639, - [SMALL_STATE(3758)] = 179662, - [SMALL_STATE(3759)] = 179685, - [SMALL_STATE(3760)] = 179708, - [SMALL_STATE(3761)] = 179731, - [SMALL_STATE(3762)] = 179754, - [SMALL_STATE(3763)] = 179777, - [SMALL_STATE(3764)] = 179800, - [SMALL_STATE(3765)] = 179823, - [SMALL_STATE(3766)] = 179846, - [SMALL_STATE(3767)] = 179869, - [SMALL_STATE(3768)] = 179892, - [SMALL_STATE(3769)] = 179915, - [SMALL_STATE(3770)] = 179938, - [SMALL_STATE(3771)] = 179961, - [SMALL_STATE(3772)] = 179984, - [SMALL_STATE(3773)] = 180007, - [SMALL_STATE(3774)] = 180030, - [SMALL_STATE(3775)] = 180053, - [SMALL_STATE(3776)] = 180076, - [SMALL_STATE(3777)] = 180099, - [SMALL_STATE(3778)] = 180122, - [SMALL_STATE(3779)] = 180145, - [SMALL_STATE(3780)] = 180168, - [SMALL_STATE(3781)] = 180191, - [SMALL_STATE(3782)] = 180214, - [SMALL_STATE(3783)] = 180237, - [SMALL_STATE(3784)] = 180260, - [SMALL_STATE(3785)] = 180283, - [SMALL_STATE(3786)] = 180306, - [SMALL_STATE(3787)] = 180329, - [SMALL_STATE(3788)] = 180352, - [SMALL_STATE(3789)] = 180375, - [SMALL_STATE(3790)] = 180398, - [SMALL_STATE(3791)] = 180421, - [SMALL_STATE(3792)] = 180444, - [SMALL_STATE(3793)] = 180467, - [SMALL_STATE(3794)] = 180490, - [SMALL_STATE(3795)] = 180513, - [SMALL_STATE(3796)] = 180536, - [SMALL_STATE(3797)] = 180559, - [SMALL_STATE(3798)] = 180582, - [SMALL_STATE(3799)] = 180605, - [SMALL_STATE(3800)] = 180628, - [SMALL_STATE(3801)] = 180651, - [SMALL_STATE(3802)] = 180674, - [SMALL_STATE(3803)] = 180697, - [SMALL_STATE(3804)] = 180720, - [SMALL_STATE(3805)] = 180743, - [SMALL_STATE(3806)] = 180766, - [SMALL_STATE(3807)] = 180789, - [SMALL_STATE(3808)] = 180812, - [SMALL_STATE(3809)] = 180835, - [SMALL_STATE(3810)] = 180858, - [SMALL_STATE(3811)] = 180881, - [SMALL_STATE(3812)] = 180904, - [SMALL_STATE(3813)] = 180927, - [SMALL_STATE(3814)] = 180950, - [SMALL_STATE(3815)] = 180973, - [SMALL_STATE(3816)] = 180996, - [SMALL_STATE(3817)] = 181019, - [SMALL_STATE(3818)] = 181042, - [SMALL_STATE(3819)] = 181065, - [SMALL_STATE(3820)] = 181088, - [SMALL_STATE(3821)] = 181111, - [SMALL_STATE(3822)] = 181134, - [SMALL_STATE(3823)] = 181157, - [SMALL_STATE(3824)] = 181180, - [SMALL_STATE(3825)] = 181203, - [SMALL_STATE(3826)] = 181226, - [SMALL_STATE(3827)] = 181249, - [SMALL_STATE(3828)] = 181272, - [SMALL_STATE(3829)] = 181295, - [SMALL_STATE(3830)] = 181318, - [SMALL_STATE(3831)] = 181341, - [SMALL_STATE(3832)] = 181364, - [SMALL_STATE(3833)] = 181387, - [SMALL_STATE(3834)] = 181410, - [SMALL_STATE(3835)] = 181433, - [SMALL_STATE(3836)] = 181456, - [SMALL_STATE(3837)] = 181479, - [SMALL_STATE(3838)] = 181502, - [SMALL_STATE(3839)] = 181525, - [SMALL_STATE(3840)] = 181548, - [SMALL_STATE(3841)] = 181571, - [SMALL_STATE(3842)] = 181594, - [SMALL_STATE(3843)] = 181617, - [SMALL_STATE(3844)] = 181640, - [SMALL_STATE(3845)] = 181663, - [SMALL_STATE(3846)] = 181686, - [SMALL_STATE(3847)] = 181709, - [SMALL_STATE(3848)] = 181732, - [SMALL_STATE(3849)] = 181755, - [SMALL_STATE(3850)] = 181778, - [SMALL_STATE(3851)] = 181801, - [SMALL_STATE(3852)] = 181824, - [SMALL_STATE(3853)] = 181847, - [SMALL_STATE(3854)] = 181870, - [SMALL_STATE(3855)] = 181893, - [SMALL_STATE(3856)] = 181916, - [SMALL_STATE(3857)] = 181939, - [SMALL_STATE(3858)] = 181962, - [SMALL_STATE(3859)] = 181985, - [SMALL_STATE(3860)] = 182008, - [SMALL_STATE(3861)] = 182031, - [SMALL_STATE(3862)] = 182054, - [SMALL_STATE(3863)] = 182077, - [SMALL_STATE(3864)] = 182100, - [SMALL_STATE(3865)] = 182123, - [SMALL_STATE(3866)] = 182146, - [SMALL_STATE(3867)] = 182169, - [SMALL_STATE(3868)] = 182192, - [SMALL_STATE(3869)] = 182215, - [SMALL_STATE(3870)] = 182238, - [SMALL_STATE(3871)] = 182261, - [SMALL_STATE(3872)] = 182284, - [SMALL_STATE(3873)] = 182307, - [SMALL_STATE(3874)] = 182330, - [SMALL_STATE(3875)] = 182353, - [SMALL_STATE(3876)] = 182376, - [SMALL_STATE(3877)] = 182399, - [SMALL_STATE(3878)] = 182422, - [SMALL_STATE(3879)] = 182445, - [SMALL_STATE(3880)] = 182468, - [SMALL_STATE(3881)] = 182491, - [SMALL_STATE(3882)] = 182514, - [SMALL_STATE(3883)] = 182537, - [SMALL_STATE(3884)] = 182560, - [SMALL_STATE(3885)] = 182583, - [SMALL_STATE(3886)] = 182606, - [SMALL_STATE(3887)] = 182629, - [SMALL_STATE(3888)] = 182652, - [SMALL_STATE(3889)] = 182675, - [SMALL_STATE(3890)] = 182698, - [SMALL_STATE(3891)] = 182721, - [SMALL_STATE(3892)] = 182744, - [SMALL_STATE(3893)] = 182767, - [SMALL_STATE(3894)] = 182790, - [SMALL_STATE(3895)] = 182813, - [SMALL_STATE(3896)] = 182836, - [SMALL_STATE(3897)] = 182859, - [SMALL_STATE(3898)] = 182882, - [SMALL_STATE(3899)] = 182905, - [SMALL_STATE(3900)] = 182928, - [SMALL_STATE(3901)] = 182951, - [SMALL_STATE(3902)] = 182974, - [SMALL_STATE(3903)] = 182997, - [SMALL_STATE(3904)] = 183020, - [SMALL_STATE(3905)] = 183043, - [SMALL_STATE(3906)] = 183066, - [SMALL_STATE(3907)] = 183089, - [SMALL_STATE(3908)] = 183112, - [SMALL_STATE(3909)] = 183135, - [SMALL_STATE(3910)] = 183158, - [SMALL_STATE(3911)] = 183181, - [SMALL_STATE(3912)] = 183204, - [SMALL_STATE(3913)] = 183227, - [SMALL_STATE(3914)] = 183250, - [SMALL_STATE(3915)] = 183273, - [SMALL_STATE(3916)] = 183296, - [SMALL_STATE(3917)] = 183319, - [SMALL_STATE(3918)] = 183342, - [SMALL_STATE(3919)] = 183365, - [SMALL_STATE(3920)] = 183388, - [SMALL_STATE(3921)] = 183411, - [SMALL_STATE(3922)] = 183434, - [SMALL_STATE(3923)] = 183457, - [SMALL_STATE(3924)] = 183480, - [SMALL_STATE(3925)] = 183503, - [SMALL_STATE(3926)] = 183526, - [SMALL_STATE(3927)] = 183549, - [SMALL_STATE(3928)] = 183572, - [SMALL_STATE(3929)] = 183595, - [SMALL_STATE(3930)] = 183618, - [SMALL_STATE(3931)] = 183641, - [SMALL_STATE(3932)] = 183664, - [SMALL_STATE(3933)] = 183687, - [SMALL_STATE(3934)] = 183710, - [SMALL_STATE(3935)] = 183733, - [SMALL_STATE(3936)] = 183756, - [SMALL_STATE(3937)] = 183779, - [SMALL_STATE(3938)] = 183802, - [SMALL_STATE(3939)] = 183825, - [SMALL_STATE(3940)] = 183848, - [SMALL_STATE(3941)] = 183871, - [SMALL_STATE(3942)] = 183894, - [SMALL_STATE(3943)] = 183917, - [SMALL_STATE(3944)] = 183940, - [SMALL_STATE(3945)] = 183963, - [SMALL_STATE(3946)] = 183986, - [SMALL_STATE(3947)] = 184009, - [SMALL_STATE(3948)] = 184032, - [SMALL_STATE(3949)] = 184055, - [SMALL_STATE(3950)] = 184078, - [SMALL_STATE(3951)] = 184105, - [SMALL_STATE(3952)] = 184132, - [SMALL_STATE(3953)] = 184159, - [SMALL_STATE(3954)] = 184186, - [SMALL_STATE(3955)] = 184213, - [SMALL_STATE(3956)] = 184236, - [SMALL_STATE(3957)] = 184263, - [SMALL_STATE(3958)] = 184290, - [SMALL_STATE(3959)] = 184313, - [SMALL_STATE(3960)] = 184336, - [SMALL_STATE(3961)] = 184363, - [SMALL_STATE(3962)] = 184390, - [SMALL_STATE(3963)] = 184413, - [SMALL_STATE(3964)] = 184436, - [SMALL_STATE(3965)] = 184459, - [SMALL_STATE(3966)] = 184482, - [SMALL_STATE(3967)] = 184505, - [SMALL_STATE(3968)] = 184532, - [SMALL_STATE(3969)] = 184559, - [SMALL_STATE(3970)] = 184586, - [SMALL_STATE(3971)] = 184609, - [SMALL_STATE(3972)] = 184632, - [SMALL_STATE(3973)] = 184655, - [SMALL_STATE(3974)] = 184678, - [SMALL_STATE(3975)] = 184701, - [SMALL_STATE(3976)] = 184724, - [SMALL_STATE(3977)] = 184747, - [SMALL_STATE(3978)] = 184770, - [SMALL_STATE(3979)] = 184793, - [SMALL_STATE(3980)] = 184820, - [SMALL_STATE(3981)] = 184847, - [SMALL_STATE(3982)] = 184874, - [SMALL_STATE(3983)] = 184901, - [SMALL_STATE(3984)] = 184928, - [SMALL_STATE(3985)] = 184955, - [SMALL_STATE(3986)] = 184978, - [SMALL_STATE(3987)] = 185001, - [SMALL_STATE(3988)] = 185024, - [SMALL_STATE(3989)] = 185047, - [SMALL_STATE(3990)] = 185070, - [SMALL_STATE(3991)] = 185097, - [SMALL_STATE(3992)] = 185120, - [SMALL_STATE(3993)] = 185147, - [SMALL_STATE(3994)] = 185174, - [SMALL_STATE(3995)] = 185201, - [SMALL_STATE(3996)] = 185224, - [SMALL_STATE(3997)] = 185247, - [SMALL_STATE(3998)] = 185270, - [SMALL_STATE(3999)] = 185293, - [SMALL_STATE(4000)] = 185316, - [SMALL_STATE(4001)] = 185343, - [SMALL_STATE(4002)] = 185366, - [SMALL_STATE(4003)] = 185389, - [SMALL_STATE(4004)] = 185412, - [SMALL_STATE(4005)] = 185435, - [SMALL_STATE(4006)] = 185458, - [SMALL_STATE(4007)] = 185481, - [SMALL_STATE(4008)] = 185504, - [SMALL_STATE(4009)] = 185527, - [SMALL_STATE(4010)] = 185554, - [SMALL_STATE(4011)] = 185581, - [SMALL_STATE(4012)] = 185608, - [SMALL_STATE(4013)] = 185631, - [SMALL_STATE(4014)] = 185654, - [SMALL_STATE(4015)] = 185677, - [SMALL_STATE(4016)] = 185700, - [SMALL_STATE(4017)] = 185723, - [SMALL_STATE(4018)] = 185746, - [SMALL_STATE(4019)] = 185773, - [SMALL_STATE(4020)] = 185800, - [SMALL_STATE(4021)] = 185823, - [SMALL_STATE(4022)] = 185850, - [SMALL_STATE(4023)] = 185877, - [SMALL_STATE(4024)] = 185904, - [SMALL_STATE(4025)] = 185931, - [SMALL_STATE(4026)] = 185958, - [SMALL_STATE(4027)] = 185985, - [SMALL_STATE(4028)] = 186012, - [SMALL_STATE(4029)] = 186035, - [SMALL_STATE(4030)] = 186058, - [SMALL_STATE(4031)] = 186081, - [SMALL_STATE(4032)] = 186104, - [SMALL_STATE(4033)] = 186128, - [SMALL_STATE(4034)] = 186152, - [SMALL_STATE(4035)] = 186176, - [SMALL_STATE(4036)] = 186200, - [SMALL_STATE(4037)] = 186224, - [SMALL_STATE(4038)] = 186248, - [SMALL_STATE(4039)] = 186272, - [SMALL_STATE(4040)] = 186296, - [SMALL_STATE(4041)] = 186320, - [SMALL_STATE(4042)] = 186344, - [SMALL_STATE(4043)] = 186368, - [SMALL_STATE(4044)] = 186392, - [SMALL_STATE(4045)] = 186416, - [SMALL_STATE(4046)] = 186440, - [SMALL_STATE(4047)] = 186464, - [SMALL_STATE(4048)] = 186488, - [SMALL_STATE(4049)] = 186512, - [SMALL_STATE(4050)] = 186536, - [SMALL_STATE(4051)] = 186560, - [SMALL_STATE(4052)] = 186584, - [SMALL_STATE(4053)] = 186608, - [SMALL_STATE(4054)] = 186632, - [SMALL_STATE(4055)] = 186656, - [SMALL_STATE(4056)] = 186680, - [SMALL_STATE(4057)] = 186704, - [SMALL_STATE(4058)] = 186728, - [SMALL_STATE(4059)] = 186752, - [SMALL_STATE(4060)] = 186776, - [SMALL_STATE(4061)] = 186800, - [SMALL_STATE(4062)] = 186824, - [SMALL_STATE(4063)] = 186848, - [SMALL_STATE(4064)] = 186872, - [SMALL_STATE(4065)] = 186896, - [SMALL_STATE(4066)] = 186920, - [SMALL_STATE(4067)] = 186944, - [SMALL_STATE(4068)] = 186968, - [SMALL_STATE(4069)] = 186992, - [SMALL_STATE(4070)] = 187016, - [SMALL_STATE(4071)] = 187040, - [SMALL_STATE(4072)] = 187064, - [SMALL_STATE(4073)] = 187088, - [SMALL_STATE(4074)] = 187112, - [SMALL_STATE(4075)] = 187136, - [SMALL_STATE(4076)] = 187160, - [SMALL_STATE(4077)] = 187184, - [SMALL_STATE(4078)] = 187208, - [SMALL_STATE(4079)] = 187232, - [SMALL_STATE(4080)] = 187256, - [SMALL_STATE(4081)] = 187280, - [SMALL_STATE(4082)] = 187304, - [SMALL_STATE(4083)] = 187328, - [SMALL_STATE(4084)] = 187352, - [SMALL_STATE(4085)] = 187376, - [SMALL_STATE(4086)] = 187400, - [SMALL_STATE(4087)] = 187424, - [SMALL_STATE(4088)] = 187448, - [SMALL_STATE(4089)] = 187472, - [SMALL_STATE(4090)] = 187496, - [SMALL_STATE(4091)] = 187520, - [SMALL_STATE(4092)] = 187544, - [SMALL_STATE(4093)] = 187568, - [SMALL_STATE(4094)] = 187592, - [SMALL_STATE(4095)] = 187616, - [SMALL_STATE(4096)] = 187640, - [SMALL_STATE(4097)] = 187664, - [SMALL_STATE(4098)] = 187688, - [SMALL_STATE(4099)] = 187712, - [SMALL_STATE(4100)] = 187736, - [SMALL_STATE(4101)] = 187760, - [SMALL_STATE(4102)] = 187784, - [SMALL_STATE(4103)] = 187808, - [SMALL_STATE(4104)] = 187832, - [SMALL_STATE(4105)] = 187856, - [SMALL_STATE(4106)] = 187880, - [SMALL_STATE(4107)] = 187904, - [SMALL_STATE(4108)] = 187928, - [SMALL_STATE(4109)] = 187952, - [SMALL_STATE(4110)] = 187976, - [SMALL_STATE(4111)] = 188000, - [SMALL_STATE(4112)] = 188024, - [SMALL_STATE(4113)] = 188048, - [SMALL_STATE(4114)] = 188072, - [SMALL_STATE(4115)] = 188096, - [SMALL_STATE(4116)] = 188120, - [SMALL_STATE(4117)] = 188144, - [SMALL_STATE(4118)] = 188168, - [SMALL_STATE(4119)] = 188192, - [SMALL_STATE(4120)] = 188216, - [SMALL_STATE(4121)] = 188240, - [SMALL_STATE(4122)] = 188264, - [SMALL_STATE(4123)] = 188288, - [SMALL_STATE(4124)] = 188312, - [SMALL_STATE(4125)] = 188336, - [SMALL_STATE(4126)] = 188360, - [SMALL_STATE(4127)] = 188384, - [SMALL_STATE(4128)] = 188408, - [SMALL_STATE(4129)] = 188432, - [SMALL_STATE(4130)] = 188456, - [SMALL_STATE(4131)] = 188480, - [SMALL_STATE(4132)] = 188504, - [SMALL_STATE(4133)] = 188528, - [SMALL_STATE(4134)] = 188552, - [SMALL_STATE(4135)] = 188576, - [SMALL_STATE(4136)] = 188600, - [SMALL_STATE(4137)] = 188624, - [SMALL_STATE(4138)] = 188641, - [SMALL_STATE(4139)] = 188658, - [SMALL_STATE(4140)] = 188676, - [SMALL_STATE(4141)] = 188694, - [SMALL_STATE(4142)] = 188712, - [SMALL_STATE(4143)] = 188730, - [SMALL_STATE(4144)] = 188748, - [SMALL_STATE(4145)] = 188766, - [SMALL_STATE(4146)] = 188784, - [SMALL_STATE(4147)] = 188802, - [SMALL_STATE(4148)] = 188820, - [SMALL_STATE(4149)] = 188838, - [SMALL_STATE(4150)] = 188856, - [SMALL_STATE(4151)] = 188874, - [SMALL_STATE(4152)] = 188890, - [SMALL_STATE(4153)] = 188908, - [SMALL_STATE(4154)] = 188924, - [SMALL_STATE(4155)] = 188942, - [SMALL_STATE(4156)] = 188960, - [SMALL_STATE(4157)] = 188978, - [SMALL_STATE(4158)] = 188996, - [SMALL_STATE(4159)] = 189014, - [SMALL_STATE(4160)] = 189032, - [SMALL_STATE(4161)] = 189050, - [SMALL_STATE(4162)] = 189068, - [SMALL_STATE(4163)] = 189084, - [SMALL_STATE(4164)] = 189102, - [SMALL_STATE(4165)] = 189120, - [SMALL_STATE(4166)] = 189138, - [SMALL_STATE(4167)] = 189154, - [SMALL_STATE(4168)] = 189172, - [SMALL_STATE(4169)] = 189190, - [SMALL_STATE(4170)] = 189208, - [SMALL_STATE(4171)] = 189226, - [SMALL_STATE(4172)] = 189244, - [SMALL_STATE(4173)] = 189262, - [SMALL_STATE(4174)] = 189280, - [SMALL_STATE(4175)] = 189298, - [SMALL_STATE(4176)] = 189316, - [SMALL_STATE(4177)] = 189332, - [SMALL_STATE(4178)] = 189350, - [SMALL_STATE(4179)] = 189368, - [SMALL_STATE(4180)] = 189386, - [SMALL_STATE(4181)] = 189404, - [SMALL_STATE(4182)] = 189422, - [SMALL_STATE(4183)] = 189440, - [SMALL_STATE(4184)] = 189458, - [SMALL_STATE(4185)] = 189476, - [SMALL_STATE(4186)] = 189494, - [SMALL_STATE(4187)] = 189510, - [SMALL_STATE(4188)] = 189528, - [SMALL_STATE(4189)] = 189546, - [SMALL_STATE(4190)] = 189564, - [SMALL_STATE(4191)] = 189582, - [SMALL_STATE(4192)] = 189600, - [SMALL_STATE(4193)] = 189618, - [SMALL_STATE(4194)] = 189636, - [SMALL_STATE(4195)] = 189654, - [SMALL_STATE(4196)] = 189670, - [SMALL_STATE(4197)] = 189688, - [SMALL_STATE(4198)] = 189706, - [SMALL_STATE(4199)] = 189724, - [SMALL_STATE(4200)] = 189742, - [SMALL_STATE(4201)] = 189760, - [SMALL_STATE(4202)] = 189776, - [SMALL_STATE(4203)] = 189794, - [SMALL_STATE(4204)] = 189812, - [SMALL_STATE(4205)] = 189830, - [SMALL_STATE(4206)] = 189848, - [SMALL_STATE(4207)] = 189866, - [SMALL_STATE(4208)] = 189884, - [SMALL_STATE(4209)] = 189902, - [SMALL_STATE(4210)] = 189920, - [SMALL_STATE(4211)] = 189938, - [SMALL_STATE(4212)] = 189956, - [SMALL_STATE(4213)] = 189974, - [SMALL_STATE(4214)] = 189992, - [SMALL_STATE(4215)] = 190010, - [SMALL_STATE(4216)] = 190028, - [SMALL_STATE(4217)] = 190046, - [SMALL_STATE(4218)] = 190064, - [SMALL_STATE(4219)] = 190082, - [SMALL_STATE(4220)] = 190100, - [SMALL_STATE(4221)] = 190118, - [SMALL_STATE(4222)] = 190136, - [SMALL_STATE(4223)] = 190154, - [SMALL_STATE(4224)] = 190172, - [SMALL_STATE(4225)] = 190190, - [SMALL_STATE(4226)] = 190208, - [SMALL_STATE(4227)] = 190226, - [SMALL_STATE(4228)] = 190244, - [SMALL_STATE(4229)] = 190262, - [SMALL_STATE(4230)] = 190280, - [SMALL_STATE(4231)] = 190298, - [SMALL_STATE(4232)] = 190316, - [SMALL_STATE(4233)] = 190334, - [SMALL_STATE(4234)] = 190352, - [SMALL_STATE(4235)] = 190370, - [SMALL_STATE(4236)] = 190388, - [SMALL_STATE(4237)] = 190406, - [SMALL_STATE(4238)] = 190424, - [SMALL_STATE(4239)] = 190440, - [SMALL_STATE(4240)] = 190458, - [SMALL_STATE(4241)] = 190476, - [SMALL_STATE(4242)] = 190494, - [SMALL_STATE(4243)] = 190512, - [SMALL_STATE(4244)] = 190530, - [SMALL_STATE(4245)] = 190548, - [SMALL_STATE(4246)] = 190566, - [SMALL_STATE(4247)] = 190584, - [SMALL_STATE(4248)] = 190602, - [SMALL_STATE(4249)] = 190620, - [SMALL_STATE(4250)] = 190638, - [SMALL_STATE(4251)] = 190656, - [SMALL_STATE(4252)] = 190674, - [SMALL_STATE(4253)] = 190692, - [SMALL_STATE(4254)] = 190710, - [SMALL_STATE(4255)] = 190728, - [SMALL_STATE(4256)] = 190744, - [SMALL_STATE(4257)] = 190762, - [SMALL_STATE(4258)] = 190778, - [SMALL_STATE(4259)] = 190796, - [SMALL_STATE(4260)] = 190814, - [SMALL_STATE(4261)] = 190832, - [SMALL_STATE(4262)] = 190850, - [SMALL_STATE(4263)] = 190868, - [SMALL_STATE(4264)] = 190886, - [SMALL_STATE(4265)] = 190904, - [SMALL_STATE(4266)] = 190922, - [SMALL_STATE(4267)] = 190940, - [SMALL_STATE(4268)] = 190958, - [SMALL_STATE(4269)] = 190976, - [SMALL_STATE(4270)] = 190994, - [SMALL_STATE(4271)] = 191010, - [SMALL_STATE(4272)] = 191028, - [SMALL_STATE(4273)] = 191046, - [SMALL_STATE(4274)] = 191064, - [SMALL_STATE(4275)] = 191082, - [SMALL_STATE(4276)] = 191100, - [SMALL_STATE(4277)] = 191118, - [SMALL_STATE(4278)] = 191136, - [SMALL_STATE(4279)] = 191154, - [SMALL_STATE(4280)] = 191172, - [SMALL_STATE(4281)] = 191190, - [SMALL_STATE(4282)] = 191208, - [SMALL_STATE(4283)] = 191226, - [SMALL_STATE(4284)] = 191244, - [SMALL_STATE(4285)] = 191262, - [SMALL_STATE(4286)] = 191280, - [SMALL_STATE(4287)] = 191298, - [SMALL_STATE(4288)] = 191316, - [SMALL_STATE(4289)] = 191334, - [SMALL_STATE(4290)] = 191352, - [SMALL_STATE(4291)] = 191370, - [SMALL_STATE(4292)] = 191385, - [SMALL_STATE(4293)] = 191400, - [SMALL_STATE(4294)] = 191415, - [SMALL_STATE(4295)] = 191430, - [SMALL_STATE(4296)] = 191445, - [SMALL_STATE(4297)] = 191460, - [SMALL_STATE(4298)] = 191475, - [SMALL_STATE(4299)] = 191490, - [SMALL_STATE(4300)] = 191505, - [SMALL_STATE(4301)] = 191520, - [SMALL_STATE(4302)] = 191535, - [SMALL_STATE(4303)] = 191550, - [SMALL_STATE(4304)] = 191564, - [SMALL_STATE(4305)] = 191578, - [SMALL_STATE(4306)] = 191592, - [SMALL_STATE(4307)] = 191606, - [SMALL_STATE(4308)] = 191620, - [SMALL_STATE(4309)] = 191634, - [SMALL_STATE(4310)] = 191648, - [SMALL_STATE(4311)] = 191662, - [SMALL_STATE(4312)] = 191676, - [SMALL_STATE(4313)] = 191690, - [SMALL_STATE(4314)] = 191704, - [SMALL_STATE(4315)] = 191718, - [SMALL_STATE(4316)] = 191732, - [SMALL_STATE(4317)] = 191746, - [SMALL_STATE(4318)] = 191760, - [SMALL_STATE(4319)] = 191774, - [SMALL_STATE(4320)] = 191788, - [SMALL_STATE(4321)] = 191802, - [SMALL_STATE(4322)] = 191816, - [SMALL_STATE(4323)] = 191830, - [SMALL_STATE(4324)] = 191844, - [SMALL_STATE(4325)] = 191858, - [SMALL_STATE(4326)] = 191872, - [SMALL_STATE(4327)] = 191886, - [SMALL_STATE(4328)] = 191900, - [SMALL_STATE(4329)] = 191914, - [SMALL_STATE(4330)] = 191928, - [SMALL_STATE(4331)] = 191942, - [SMALL_STATE(4332)] = 191956, - [SMALL_STATE(4333)] = 191970, - [SMALL_STATE(4334)] = 191984, - [SMALL_STATE(4335)] = 191998, - [SMALL_STATE(4336)] = 192012, - [SMALL_STATE(4337)] = 192026, - [SMALL_STATE(4338)] = 192040, - [SMALL_STATE(4339)] = 192054, - [SMALL_STATE(4340)] = 192068, - [SMALL_STATE(4341)] = 192082, - [SMALL_STATE(4342)] = 192096, - [SMALL_STATE(4343)] = 192110, - [SMALL_STATE(4344)] = 192124, - [SMALL_STATE(4345)] = 192138, - [SMALL_STATE(4346)] = 192152, - [SMALL_STATE(4347)] = 192166, - [SMALL_STATE(4348)] = 192180, - [SMALL_STATE(4349)] = 192194, - [SMALL_STATE(4350)] = 192208, - [SMALL_STATE(4351)] = 192222, - [SMALL_STATE(4352)] = 192236, - [SMALL_STATE(4353)] = 192246, - [SMALL_STATE(4354)] = 192260, - [SMALL_STATE(4355)] = 192274, - [SMALL_STATE(4356)] = 192288, - [SMALL_STATE(4357)] = 192302, - [SMALL_STATE(4358)] = 192316, - [SMALL_STATE(4359)] = 192330, - [SMALL_STATE(4360)] = 192344, - [SMALL_STATE(4361)] = 192358, - [SMALL_STATE(4362)] = 192372, - [SMALL_STATE(4363)] = 192386, - [SMALL_STATE(4364)] = 192400, - [SMALL_STATE(4365)] = 192414, - [SMALL_STATE(4366)] = 192428, - [SMALL_STATE(4367)] = 192442, - [SMALL_STATE(4368)] = 192456, - [SMALL_STATE(4369)] = 192468, - [SMALL_STATE(4370)] = 192482, - [SMALL_STATE(4371)] = 192496, - [SMALL_STATE(4372)] = 192510, - [SMALL_STATE(4373)] = 192524, - [SMALL_STATE(4374)] = 192538, - [SMALL_STATE(4375)] = 192552, - [SMALL_STATE(4376)] = 192566, - [SMALL_STATE(4377)] = 192580, - [SMALL_STATE(4378)] = 192594, - [SMALL_STATE(4379)] = 192608, - [SMALL_STATE(4380)] = 192622, - [SMALL_STATE(4381)] = 192636, - [SMALL_STATE(4382)] = 192646, - [SMALL_STATE(4383)] = 192660, - [SMALL_STATE(4384)] = 192674, - [SMALL_STATE(4385)] = 192688, - [SMALL_STATE(4386)] = 192702, - [SMALL_STATE(4387)] = 192716, - [SMALL_STATE(4388)] = 192726, - [SMALL_STATE(4389)] = 192736, - [SMALL_STATE(4390)] = 192750, - [SMALL_STATE(4391)] = 192764, - [SMALL_STATE(4392)] = 192778, - [SMALL_STATE(4393)] = 192788, - [SMALL_STATE(4394)] = 192802, - [SMALL_STATE(4395)] = 192816, - [SMALL_STATE(4396)] = 192830, - [SMALL_STATE(4397)] = 192840, - [SMALL_STATE(4398)] = 192854, - [SMALL_STATE(4399)] = 192868, - [SMALL_STATE(4400)] = 192882, - [SMALL_STATE(4401)] = 192896, - [SMALL_STATE(4402)] = 192910, - [SMALL_STATE(4403)] = 192924, - [SMALL_STATE(4404)] = 192938, - [SMALL_STATE(4405)] = 192952, - [SMALL_STATE(4406)] = 192966, - [SMALL_STATE(4407)] = 192980, - [SMALL_STATE(4408)] = 192990, - [SMALL_STATE(4409)] = 193004, - [SMALL_STATE(4410)] = 193014, - [SMALL_STATE(4411)] = 193028, - [SMALL_STATE(4412)] = 193042, - [SMALL_STATE(4413)] = 193056, - [SMALL_STATE(4414)] = 193070, - [SMALL_STATE(4415)] = 193084, - [SMALL_STATE(4416)] = 193098, - [SMALL_STATE(4417)] = 193112, - [SMALL_STATE(4418)] = 193126, - [SMALL_STATE(4419)] = 193140, - [SMALL_STATE(4420)] = 193154, - [SMALL_STATE(4421)] = 193168, - [SMALL_STATE(4422)] = 193182, - [SMALL_STATE(4423)] = 193196, - [SMALL_STATE(4424)] = 193206, - [SMALL_STATE(4425)] = 193216, - [SMALL_STATE(4426)] = 193230, - [SMALL_STATE(4427)] = 193240, - [SMALL_STATE(4428)] = 193254, - [SMALL_STATE(4429)] = 193268, - [SMALL_STATE(4430)] = 193282, - [SMALL_STATE(4431)] = 193296, - [SMALL_STATE(4432)] = 193310, - [SMALL_STATE(4433)] = 193324, - [SMALL_STATE(4434)] = 193334, - [SMALL_STATE(4435)] = 193348, - [SMALL_STATE(4436)] = 193362, - [SMALL_STATE(4437)] = 193376, - [SMALL_STATE(4438)] = 193386, - [SMALL_STATE(4439)] = 193400, - [SMALL_STATE(4440)] = 193414, - [SMALL_STATE(4441)] = 193428, - [SMALL_STATE(4442)] = 193442, - [SMALL_STATE(4443)] = 193456, - [SMALL_STATE(4444)] = 193470, - [SMALL_STATE(4445)] = 193484, - [SMALL_STATE(4446)] = 193498, - [SMALL_STATE(4447)] = 193508, - [SMALL_STATE(4448)] = 193522, - [SMALL_STATE(4449)] = 193536, - [SMALL_STATE(4450)] = 193550, - [SMALL_STATE(4451)] = 193564, - [SMALL_STATE(4452)] = 193578, - [SMALL_STATE(4453)] = 193592, - [SMALL_STATE(4454)] = 193606, - [SMALL_STATE(4455)] = 193620, - [SMALL_STATE(4456)] = 193634, - [SMALL_STATE(4457)] = 193648, - [SMALL_STATE(4458)] = 193662, - [SMALL_STATE(4459)] = 193676, - [SMALL_STATE(4460)] = 193690, - [SMALL_STATE(4461)] = 193704, - [SMALL_STATE(4462)] = 193718, - [SMALL_STATE(4463)] = 193728, - [SMALL_STATE(4464)] = 193742, - [SMALL_STATE(4465)] = 193756, - [SMALL_STATE(4466)] = 193770, - [SMALL_STATE(4467)] = 193784, - [SMALL_STATE(4468)] = 193798, - [SMALL_STATE(4469)] = 193812, - [SMALL_STATE(4470)] = 193826, - [SMALL_STATE(4471)] = 193840, - [SMALL_STATE(4472)] = 193854, - [SMALL_STATE(4473)] = 193868, - [SMALL_STATE(4474)] = 193882, - [SMALL_STATE(4475)] = 193896, - [SMALL_STATE(4476)] = 193910, - [SMALL_STATE(4477)] = 193924, - [SMALL_STATE(4478)] = 193938, - [SMALL_STATE(4479)] = 193952, - [SMALL_STATE(4480)] = 193962, - [SMALL_STATE(4481)] = 193972, - [SMALL_STATE(4482)] = 193982, - [SMALL_STATE(4483)] = 193992, - [SMALL_STATE(4484)] = 194002, - [SMALL_STATE(4485)] = 194012, - [SMALL_STATE(4486)] = 194022, - [SMALL_STATE(4487)] = 194032, - [SMALL_STATE(4488)] = 194042, - [SMALL_STATE(4489)] = 194052, - [SMALL_STATE(4490)] = 194062, - [SMALL_STATE(4491)] = 194072, - [SMALL_STATE(4492)] = 194082, - [SMALL_STATE(4493)] = 194092, - [SMALL_STATE(4494)] = 194102, - [SMALL_STATE(4495)] = 194112, - [SMALL_STATE(4496)] = 194122, - [SMALL_STATE(4497)] = 194132, - [SMALL_STATE(4498)] = 194142, - [SMALL_STATE(4499)] = 194152, - [SMALL_STATE(4500)] = 194162, - [SMALL_STATE(4501)] = 194172, - [SMALL_STATE(4502)] = 194182, - [SMALL_STATE(4503)] = 194192, - [SMALL_STATE(4504)] = 194202, - [SMALL_STATE(4505)] = 194212, - [SMALL_STATE(4506)] = 194222, - [SMALL_STATE(4507)] = 194232, - [SMALL_STATE(4508)] = 194242, - [SMALL_STATE(4509)] = 194252, - [SMALL_STATE(4510)] = 194262, - [SMALL_STATE(4511)] = 194272, - [SMALL_STATE(4512)] = 194282, - [SMALL_STATE(4513)] = 194292, - [SMALL_STATE(4514)] = 194302, - [SMALL_STATE(4515)] = 194312, - [SMALL_STATE(4516)] = 194322, - [SMALL_STATE(4517)] = 194332, - [SMALL_STATE(4518)] = 194342, - [SMALL_STATE(4519)] = 194352, - [SMALL_STATE(4520)] = 194362, - [SMALL_STATE(4521)] = 194372, - [SMALL_STATE(4522)] = 194382, - [SMALL_STATE(4523)] = 194392, - [SMALL_STATE(4524)] = 194402, - [SMALL_STATE(4525)] = 194412, - [SMALL_STATE(4526)] = 194422, - [SMALL_STATE(4527)] = 194432, - [SMALL_STATE(4528)] = 194442, - [SMALL_STATE(4529)] = 194452, - [SMALL_STATE(4530)] = 194462, - [SMALL_STATE(4531)] = 194472, - [SMALL_STATE(4532)] = 194482, - [SMALL_STATE(4533)] = 194492, - [SMALL_STATE(4534)] = 194502, - [SMALL_STATE(4535)] = 194512, - [SMALL_STATE(4536)] = 194522, - [SMALL_STATE(4537)] = 194532, - [SMALL_STATE(4538)] = 194542, - [SMALL_STATE(4539)] = 194552, - [SMALL_STATE(4540)] = 194562, - [SMALL_STATE(4541)] = 194572, - [SMALL_STATE(4542)] = 194582, - [SMALL_STATE(4543)] = 194592, - [SMALL_STATE(4544)] = 194602, - [SMALL_STATE(4545)] = 194612, - [SMALL_STATE(4546)] = 194622, - [SMALL_STATE(4547)] = 194632, - [SMALL_STATE(4548)] = 194642, - [SMALL_STATE(4549)] = 194652, - [SMALL_STATE(4550)] = 194662, - [SMALL_STATE(4551)] = 194672, - [SMALL_STATE(4552)] = 194682, - [SMALL_STATE(4553)] = 194692, - [SMALL_STATE(4554)] = 194702, - [SMALL_STATE(4555)] = 194712, - [SMALL_STATE(4556)] = 194722, - [SMALL_STATE(4557)] = 194732, - [SMALL_STATE(4558)] = 194742, - [SMALL_STATE(4559)] = 194752, - [SMALL_STATE(4560)] = 194762, - [SMALL_STATE(4561)] = 194772, - [SMALL_STATE(4562)] = 194778, - [SMALL_STATE(4563)] = 194788, - [SMALL_STATE(4564)] = 194798, - [SMALL_STATE(4565)] = 194808, - [SMALL_STATE(4566)] = 194818, - [SMALL_STATE(4567)] = 194828, - [SMALL_STATE(4568)] = 194838, - [SMALL_STATE(4569)] = 194848, - [SMALL_STATE(4570)] = 194858, - [SMALL_STATE(4571)] = 194868, - [SMALL_STATE(4572)] = 194878, - [SMALL_STATE(4573)] = 194888, - [SMALL_STATE(4574)] = 194898, - [SMALL_STATE(4575)] = 194908, - [SMALL_STATE(4576)] = 194918, - [SMALL_STATE(4577)] = 194928, - [SMALL_STATE(4578)] = 194938, - [SMALL_STATE(4579)] = 194948, - [SMALL_STATE(4580)] = 194958, - [SMALL_STATE(4581)] = 194968, - [SMALL_STATE(4582)] = 194978, - [SMALL_STATE(4583)] = 194988, - [SMALL_STATE(4584)] = 194998, - [SMALL_STATE(4585)] = 195008, - [SMALL_STATE(4586)] = 195018, - [SMALL_STATE(4587)] = 195028, - [SMALL_STATE(4588)] = 195038, - [SMALL_STATE(4589)] = 195048, - [SMALL_STATE(4590)] = 195058, - [SMALL_STATE(4591)] = 195068, - [SMALL_STATE(4592)] = 195078, - [SMALL_STATE(4593)] = 195088, - [SMALL_STATE(4594)] = 195098, - [SMALL_STATE(4595)] = 195108, - [SMALL_STATE(4596)] = 195118, - [SMALL_STATE(4597)] = 195128, - [SMALL_STATE(4598)] = 195138, - [SMALL_STATE(4599)] = 195148, - [SMALL_STATE(4600)] = 195158, - [SMALL_STATE(4601)] = 195168, - [SMALL_STATE(4602)] = 195178, - [SMALL_STATE(4603)] = 195188, - [SMALL_STATE(4604)] = 195198, - [SMALL_STATE(4605)] = 195208, - [SMALL_STATE(4606)] = 195218, - [SMALL_STATE(4607)] = 195228, - [SMALL_STATE(4608)] = 195238, - [SMALL_STATE(4609)] = 195248, - [SMALL_STATE(4610)] = 195258, - [SMALL_STATE(4611)] = 195268, - [SMALL_STATE(4612)] = 195278, - [SMALL_STATE(4613)] = 195288, - [SMALL_STATE(4614)] = 195298, - [SMALL_STATE(4615)] = 195308, - [SMALL_STATE(4616)] = 195318, - [SMALL_STATE(4617)] = 195328, - [SMALL_STATE(4618)] = 195338, - [SMALL_STATE(4619)] = 195348, - [SMALL_STATE(4620)] = 195358, - [SMALL_STATE(4621)] = 195368, - [SMALL_STATE(4622)] = 195378, - [SMALL_STATE(4623)] = 195388, - [SMALL_STATE(4624)] = 195398, - [SMALL_STATE(4625)] = 195408, - [SMALL_STATE(4626)] = 195418, - [SMALL_STATE(4627)] = 195428, - [SMALL_STATE(4628)] = 195438, - [SMALL_STATE(4629)] = 195448, - [SMALL_STATE(4630)] = 195458, - [SMALL_STATE(4631)] = 195468, - [SMALL_STATE(4632)] = 195478, - [SMALL_STATE(4633)] = 195488, - [SMALL_STATE(4634)] = 195498, - [SMALL_STATE(4635)] = 195508, - [SMALL_STATE(4636)] = 195518, - [SMALL_STATE(4637)] = 195528, - [SMALL_STATE(4638)] = 195538, - [SMALL_STATE(4639)] = 195548, - [SMALL_STATE(4640)] = 195558, - [SMALL_STATE(4641)] = 195568, - [SMALL_STATE(4642)] = 195578, - [SMALL_STATE(4643)] = 195588, - [SMALL_STATE(4644)] = 195598, - [SMALL_STATE(4645)] = 195608, - [SMALL_STATE(4646)] = 195618, - [SMALL_STATE(4647)] = 195628, - [SMALL_STATE(4648)] = 195638, - [SMALL_STATE(4649)] = 195648, - [SMALL_STATE(4650)] = 195658, - [SMALL_STATE(4651)] = 195668, - [SMALL_STATE(4652)] = 195678, - [SMALL_STATE(4653)] = 195684, - [SMALL_STATE(4654)] = 195694, - [SMALL_STATE(4655)] = 195704, - [SMALL_STATE(4656)] = 195714, - [SMALL_STATE(4657)] = 195724, - [SMALL_STATE(4658)] = 195734, - [SMALL_STATE(4659)] = 195744, - [SMALL_STATE(4660)] = 195754, - [SMALL_STATE(4661)] = 195764, - [SMALL_STATE(4662)] = 195774, - [SMALL_STATE(4663)] = 195784, - [SMALL_STATE(4664)] = 195794, - [SMALL_STATE(4665)] = 195804, - [SMALL_STATE(4666)] = 195814, - [SMALL_STATE(4667)] = 195824, - [SMALL_STATE(4668)] = 195834, - [SMALL_STATE(4669)] = 195844, - [SMALL_STATE(4670)] = 195854, - [SMALL_STATE(4671)] = 195864, - [SMALL_STATE(4672)] = 195874, - [SMALL_STATE(4673)] = 195884, - [SMALL_STATE(4674)] = 195894, - [SMALL_STATE(4675)] = 195904, - [SMALL_STATE(4676)] = 195914, - [SMALL_STATE(4677)] = 195924, - [SMALL_STATE(4678)] = 195934, - [SMALL_STATE(4679)] = 195944, - [SMALL_STATE(4680)] = 195954, - [SMALL_STATE(4681)] = 195964, - [SMALL_STATE(4682)] = 195974, - [SMALL_STATE(4683)] = 195984, - [SMALL_STATE(4684)] = 195994, - [SMALL_STATE(4685)] = 196004, - [SMALL_STATE(4686)] = 196014, - [SMALL_STATE(4687)] = 196024, - [SMALL_STATE(4688)] = 196034, - [SMALL_STATE(4689)] = 196044, - [SMALL_STATE(4690)] = 196054, - [SMALL_STATE(4691)] = 196064, - [SMALL_STATE(4692)] = 196074, - [SMALL_STATE(4693)] = 196084, - [SMALL_STATE(4694)] = 196094, - [SMALL_STATE(4695)] = 196104, - [SMALL_STATE(4696)] = 196114, - [SMALL_STATE(4697)] = 196124, - [SMALL_STATE(4698)] = 196134, - [SMALL_STATE(4699)] = 196144, - [SMALL_STATE(4700)] = 196154, - [SMALL_STATE(4701)] = 196164, - [SMALL_STATE(4702)] = 196174, - [SMALL_STATE(4703)] = 196184, - [SMALL_STATE(4704)] = 196194, - [SMALL_STATE(4705)] = 196204, - [SMALL_STATE(4706)] = 196214, - [SMALL_STATE(4707)] = 196224, - [SMALL_STATE(4708)] = 196234, - [SMALL_STATE(4709)] = 196244, - [SMALL_STATE(4710)] = 196254, - [SMALL_STATE(4711)] = 196264, - [SMALL_STATE(4712)] = 196274, - [SMALL_STATE(4713)] = 196284, - [SMALL_STATE(4714)] = 196294, - [SMALL_STATE(4715)] = 196304, - [SMALL_STATE(4716)] = 196314, - [SMALL_STATE(4717)] = 196324, - [SMALL_STATE(4718)] = 196334, - [SMALL_STATE(4719)] = 196344, - [SMALL_STATE(4720)] = 196354, - [SMALL_STATE(4721)] = 196364, - [SMALL_STATE(4722)] = 196374, - [SMALL_STATE(4723)] = 196384, - [SMALL_STATE(4724)] = 196394, - [SMALL_STATE(4725)] = 196404, - [SMALL_STATE(4726)] = 196414, - [SMALL_STATE(4727)] = 196424, - [SMALL_STATE(4728)] = 196434, - [SMALL_STATE(4729)] = 196444, - [SMALL_STATE(4730)] = 196454, - [SMALL_STATE(4731)] = 196464, - [SMALL_STATE(4732)] = 196474, - [SMALL_STATE(4733)] = 196484, - [SMALL_STATE(4734)] = 196494, - [SMALL_STATE(4735)] = 196504, - [SMALL_STATE(4736)] = 196514, - [SMALL_STATE(4737)] = 196524, - [SMALL_STATE(4738)] = 196534, - [SMALL_STATE(4739)] = 196544, - [SMALL_STATE(4740)] = 196554, - [SMALL_STATE(4741)] = 196564, - [SMALL_STATE(4742)] = 196574, - [SMALL_STATE(4743)] = 196584, - [SMALL_STATE(4744)] = 196594, - [SMALL_STATE(4745)] = 196604, - [SMALL_STATE(4746)] = 196614, - [SMALL_STATE(4747)] = 196624, - [SMALL_STATE(4748)] = 196634, - [SMALL_STATE(4749)] = 196644, - [SMALL_STATE(4750)] = 196654, - [SMALL_STATE(4751)] = 196664, - [SMALL_STATE(4752)] = 196674, - [SMALL_STATE(4753)] = 196684, - [SMALL_STATE(4754)] = 196694, - [SMALL_STATE(4755)] = 196704, - [SMALL_STATE(4756)] = 196714, - [SMALL_STATE(4757)] = 196724, - [SMALL_STATE(4758)] = 196734, - [SMALL_STATE(4759)] = 196744, - [SMALL_STATE(4760)] = 196754, - [SMALL_STATE(4761)] = 196764, - [SMALL_STATE(4762)] = 196774, - [SMALL_STATE(4763)] = 196784, - [SMALL_STATE(4764)] = 196794, - [SMALL_STATE(4765)] = 196804, - [SMALL_STATE(4766)] = 196814, - [SMALL_STATE(4767)] = 196824, - [SMALL_STATE(4768)] = 196834, - [SMALL_STATE(4769)] = 196844, - [SMALL_STATE(4770)] = 196854, - [SMALL_STATE(4771)] = 196864, - [SMALL_STATE(4772)] = 196874, - [SMALL_STATE(4773)] = 196884, - [SMALL_STATE(4774)] = 196894, - [SMALL_STATE(4775)] = 196904, - [SMALL_STATE(4776)] = 196914, - [SMALL_STATE(4777)] = 196924, - [SMALL_STATE(4778)] = 196934, - [SMALL_STATE(4779)] = 196944, - [SMALL_STATE(4780)] = 196954, - [SMALL_STATE(4781)] = 196964, - [SMALL_STATE(4782)] = 196974, - [SMALL_STATE(4783)] = 196984, - [SMALL_STATE(4784)] = 196994, - [SMALL_STATE(4785)] = 197004, - [SMALL_STATE(4786)] = 197014, - [SMALL_STATE(4787)] = 197024, - [SMALL_STATE(4788)] = 197034, - [SMALL_STATE(4789)] = 197044, - [SMALL_STATE(4790)] = 197054, - [SMALL_STATE(4791)] = 197064, - [SMALL_STATE(4792)] = 197074, - [SMALL_STATE(4793)] = 197084, - [SMALL_STATE(4794)] = 197094, - [SMALL_STATE(4795)] = 197104, - [SMALL_STATE(4796)] = 197114, - [SMALL_STATE(4797)] = 197124, - [SMALL_STATE(4798)] = 197134, - [SMALL_STATE(4799)] = 197144, - [SMALL_STATE(4800)] = 197154, - [SMALL_STATE(4801)] = 197164, - [SMALL_STATE(4802)] = 197174, - [SMALL_STATE(4803)] = 197184, - [SMALL_STATE(4804)] = 197194, - [SMALL_STATE(4805)] = 197204, - [SMALL_STATE(4806)] = 197214, - [SMALL_STATE(4807)] = 197224, - [SMALL_STATE(4808)] = 197234, - [SMALL_STATE(4809)] = 197244, - [SMALL_STATE(4810)] = 197254, - [SMALL_STATE(4811)] = 197264, - [SMALL_STATE(4812)] = 197274, - [SMALL_STATE(4813)] = 197284, - [SMALL_STATE(4814)] = 197294, - [SMALL_STATE(4815)] = 197304, - [SMALL_STATE(4816)] = 197314, - [SMALL_STATE(4817)] = 197324, - [SMALL_STATE(4818)] = 197334, - [SMALL_STATE(4819)] = 197344, - [SMALL_STATE(4820)] = 197354, - [SMALL_STATE(4821)] = 197364, - [SMALL_STATE(4822)] = 197374, - [SMALL_STATE(4823)] = 197384, - [SMALL_STATE(4824)] = 197394, - [SMALL_STATE(4825)] = 197404, - [SMALL_STATE(4826)] = 197414, - [SMALL_STATE(4827)] = 197424, - [SMALL_STATE(4828)] = 197434, - [SMALL_STATE(4829)] = 197444, - [SMALL_STATE(4830)] = 197454, - [SMALL_STATE(4831)] = 197464, - [SMALL_STATE(4832)] = 197474, - [SMALL_STATE(4833)] = 197484, - [SMALL_STATE(4834)] = 197494, - [SMALL_STATE(4835)] = 197504, - [SMALL_STATE(4836)] = 197514, - [SMALL_STATE(4837)] = 197524, - [SMALL_STATE(4838)] = 197534, - [SMALL_STATE(4839)] = 197544, - [SMALL_STATE(4840)] = 197554, - [SMALL_STATE(4841)] = 197564, - [SMALL_STATE(4842)] = 197574, - [SMALL_STATE(4843)] = 197584, - [SMALL_STATE(4844)] = 197594, - [SMALL_STATE(4845)] = 197604, - [SMALL_STATE(4846)] = 197614, - [SMALL_STATE(4847)] = 197624, - [SMALL_STATE(4848)] = 197634, - [SMALL_STATE(4849)] = 197644, - [SMALL_STATE(4850)] = 197654, - [SMALL_STATE(4851)] = 197664, - [SMALL_STATE(4852)] = 197674, - [SMALL_STATE(4853)] = 197684, - [SMALL_STATE(4854)] = 197694, - [SMALL_STATE(4855)] = 197704, - [SMALL_STATE(4856)] = 197714, - [SMALL_STATE(4857)] = 197724, - [SMALL_STATE(4858)] = 197734, - [SMALL_STATE(4859)] = 197744, - [SMALL_STATE(4860)] = 197754, - [SMALL_STATE(4861)] = 197764, - [SMALL_STATE(4862)] = 197774, - [SMALL_STATE(4863)] = 197784, - [SMALL_STATE(4864)] = 197794, - [SMALL_STATE(4865)] = 197804, - [SMALL_STATE(4866)] = 197814, - [SMALL_STATE(4867)] = 197824, - [SMALL_STATE(4868)] = 197834, - [SMALL_STATE(4869)] = 197844, - [SMALL_STATE(4870)] = 197854, - [SMALL_STATE(4871)] = 197864, - [SMALL_STATE(4872)] = 197874, - [SMALL_STATE(4873)] = 197884, - [SMALL_STATE(4874)] = 197894, - [SMALL_STATE(4875)] = 197904, - [SMALL_STATE(4876)] = 197914, - [SMALL_STATE(4877)] = 197924, - [SMALL_STATE(4878)] = 197934, - [SMALL_STATE(4879)] = 197944, - [SMALL_STATE(4880)] = 197954, - [SMALL_STATE(4881)] = 197964, - [SMALL_STATE(4882)] = 197974, - [SMALL_STATE(4883)] = 197984, - [SMALL_STATE(4884)] = 197994, - [SMALL_STATE(4885)] = 198004, - [SMALL_STATE(4886)] = 198014, - [SMALL_STATE(4887)] = 198024, - [SMALL_STATE(4888)] = 198034, - [SMALL_STATE(4889)] = 198044, - [SMALL_STATE(4890)] = 198054, - [SMALL_STATE(4891)] = 198064, - [SMALL_STATE(4892)] = 198074, - [SMALL_STATE(4893)] = 198084, - [SMALL_STATE(4894)] = 198094, - [SMALL_STATE(4895)] = 198104, - [SMALL_STATE(4896)] = 198114, - [SMALL_STATE(4897)] = 198124, - [SMALL_STATE(4898)] = 198134, - [SMALL_STATE(4899)] = 198144, - [SMALL_STATE(4900)] = 198154, - [SMALL_STATE(4901)] = 198164, - [SMALL_STATE(4902)] = 198174, - [SMALL_STATE(4903)] = 198184, - [SMALL_STATE(4904)] = 198194, - [SMALL_STATE(4905)] = 198204, - [SMALL_STATE(4906)] = 198214, - [SMALL_STATE(4907)] = 198224, - [SMALL_STATE(4908)] = 198234, - [SMALL_STATE(4909)] = 198244, - [SMALL_STATE(4910)] = 198254, - [SMALL_STATE(4911)] = 198264, - [SMALL_STATE(4912)] = 198274, - [SMALL_STATE(4913)] = 198284, - [SMALL_STATE(4914)] = 198294, - [SMALL_STATE(4915)] = 198304, - [SMALL_STATE(4916)] = 198314, - [SMALL_STATE(4917)] = 198324, - [SMALL_STATE(4918)] = 198334, - [SMALL_STATE(4919)] = 198344, - [SMALL_STATE(4920)] = 198354, - [SMALL_STATE(4921)] = 198364, - [SMALL_STATE(4922)] = 198374, - [SMALL_STATE(4923)] = 198384, - [SMALL_STATE(4924)] = 198394, - [SMALL_STATE(4925)] = 198404, - [SMALL_STATE(4926)] = 198414, - [SMALL_STATE(4927)] = 198424, - [SMALL_STATE(4928)] = 198434, - [SMALL_STATE(4929)] = 198444, - [SMALL_STATE(4930)] = 198454, - [SMALL_STATE(4931)] = 198464, - [SMALL_STATE(4932)] = 198474, - [SMALL_STATE(4933)] = 198484, - [SMALL_STATE(4934)] = 198494, - [SMALL_STATE(4935)] = 198504, - [SMALL_STATE(4936)] = 198514, - [SMALL_STATE(4937)] = 198524, - [SMALL_STATE(4938)] = 198534, - [SMALL_STATE(4939)] = 198544, - [SMALL_STATE(4940)] = 198554, - [SMALL_STATE(4941)] = 198564, - [SMALL_STATE(4942)] = 198574, - [SMALL_STATE(4943)] = 198584, - [SMALL_STATE(4944)] = 198594, - [SMALL_STATE(4945)] = 198604, - [SMALL_STATE(4946)] = 198614, - [SMALL_STATE(4947)] = 198624, - [SMALL_STATE(4948)] = 198634, - [SMALL_STATE(4949)] = 198644, - [SMALL_STATE(4950)] = 198654, - [SMALL_STATE(4951)] = 198664, - [SMALL_STATE(4952)] = 198674, - [SMALL_STATE(4953)] = 198684, - [SMALL_STATE(4954)] = 198694, - [SMALL_STATE(4955)] = 198704, - [SMALL_STATE(4956)] = 198714, - [SMALL_STATE(4957)] = 198724, - [SMALL_STATE(4958)] = 198734, - [SMALL_STATE(4959)] = 198744, - [SMALL_STATE(4960)] = 198754, - [SMALL_STATE(4961)] = 198764, - [SMALL_STATE(4962)] = 198774, - [SMALL_STATE(4963)] = 198784, - [SMALL_STATE(4964)] = 198794, - [SMALL_STATE(4965)] = 198804, - [SMALL_STATE(4966)] = 198814, - [SMALL_STATE(4967)] = 198824, - [SMALL_STATE(4968)] = 198834, - [SMALL_STATE(4969)] = 198844, - [SMALL_STATE(4970)] = 198854, - [SMALL_STATE(4971)] = 198864, - [SMALL_STATE(4972)] = 198874, - [SMALL_STATE(4973)] = 198884, - [SMALL_STATE(4974)] = 198894, - [SMALL_STATE(4975)] = 198904, - [SMALL_STATE(4976)] = 198914, - [SMALL_STATE(4977)] = 198924, - [SMALL_STATE(4978)] = 198934, - [SMALL_STATE(4979)] = 198944, - [SMALL_STATE(4980)] = 198954, - [SMALL_STATE(4981)] = 198964, - [SMALL_STATE(4982)] = 198974, - [SMALL_STATE(4983)] = 198984, - [SMALL_STATE(4984)] = 198994, - [SMALL_STATE(4985)] = 199004, - [SMALL_STATE(4986)] = 199014, - [SMALL_STATE(4987)] = 199024, - [SMALL_STATE(4988)] = 199034, - [SMALL_STATE(4989)] = 199044, - [SMALL_STATE(4990)] = 199054, - [SMALL_STATE(4991)] = 199064, - [SMALL_STATE(4992)] = 199074, - [SMALL_STATE(4993)] = 199084, - [SMALL_STATE(4994)] = 199094, - [SMALL_STATE(4995)] = 199104, - [SMALL_STATE(4996)] = 199114, - [SMALL_STATE(4997)] = 199124, - [SMALL_STATE(4998)] = 199134, - [SMALL_STATE(4999)] = 199144, - [SMALL_STATE(5000)] = 199154, - [SMALL_STATE(5001)] = 199164, - [SMALL_STATE(5002)] = 199174, - [SMALL_STATE(5003)] = 199184, - [SMALL_STATE(5004)] = 199194, - [SMALL_STATE(5005)] = 199204, - [SMALL_STATE(5006)] = 199214, - [SMALL_STATE(5007)] = 199224, - [SMALL_STATE(5008)] = 199234, - [SMALL_STATE(5009)] = 199244, - [SMALL_STATE(5010)] = 199254, - [SMALL_STATE(5011)] = 199264, - [SMALL_STATE(5012)] = 199274, - [SMALL_STATE(5013)] = 199284, - [SMALL_STATE(5014)] = 199294, - [SMALL_STATE(5015)] = 199304, - [SMALL_STATE(5016)] = 199314, - [SMALL_STATE(5017)] = 199324, - [SMALL_STATE(5018)] = 199334, - [SMALL_STATE(5019)] = 199344, - [SMALL_STATE(5020)] = 199354, - [SMALL_STATE(5021)] = 199364, - [SMALL_STATE(5022)] = 199374, - [SMALL_STATE(5023)] = 199384, - [SMALL_STATE(5024)] = 199394, - [SMALL_STATE(5025)] = 199404, - [SMALL_STATE(5026)] = 199414, - [SMALL_STATE(5027)] = 199424, - [SMALL_STATE(5028)] = 199434, - [SMALL_STATE(5029)] = 199444, - [SMALL_STATE(5030)] = 199454, - [SMALL_STATE(5031)] = 199464, - [SMALL_STATE(5032)] = 199474, - [SMALL_STATE(5033)] = 199484, - [SMALL_STATE(5034)] = 199494, - [SMALL_STATE(5035)] = 199504, - [SMALL_STATE(5036)] = 199514, - [SMALL_STATE(5037)] = 199524, - [SMALL_STATE(5038)] = 199534, - [SMALL_STATE(5039)] = 199544, - [SMALL_STATE(5040)] = 199554, - [SMALL_STATE(5041)] = 199564, - [SMALL_STATE(5042)] = 199574, - [SMALL_STATE(5043)] = 199584, - [SMALL_STATE(5044)] = 199594, - [SMALL_STATE(5045)] = 199604, - [SMALL_STATE(5046)] = 199614, - [SMALL_STATE(5047)] = 199624, - [SMALL_STATE(5048)] = 199634, - [SMALL_STATE(5049)] = 199644, - [SMALL_STATE(5050)] = 199654, - [SMALL_STATE(5051)] = 199664, - [SMALL_STATE(5052)] = 199674, - [SMALL_STATE(5053)] = 199684, - [SMALL_STATE(5054)] = 199694, - [SMALL_STATE(5055)] = 199704, - [SMALL_STATE(5056)] = 199714, - [SMALL_STATE(5057)] = 199724, - [SMALL_STATE(5058)] = 199734, - [SMALL_STATE(5059)] = 199744, - [SMALL_STATE(5060)] = 199754, - [SMALL_STATE(5061)] = 199764, - [SMALL_STATE(5062)] = 199774, - [SMALL_STATE(5063)] = 199784, - [SMALL_STATE(5064)] = 199794, - [SMALL_STATE(5065)] = 199804, - [SMALL_STATE(5066)] = 199814, - [SMALL_STATE(5067)] = 199824, - [SMALL_STATE(5068)] = 199834, - [SMALL_STATE(5069)] = 199844, - [SMALL_STATE(5070)] = 199854, - [SMALL_STATE(5071)] = 199864, - [SMALL_STATE(5072)] = 199874, - [SMALL_STATE(5073)] = 199884, - [SMALL_STATE(5074)] = 199894, - [SMALL_STATE(5075)] = 199904, - [SMALL_STATE(5076)] = 199914, - [SMALL_STATE(5077)] = 199924, - [SMALL_STATE(5078)] = 199934, - [SMALL_STATE(5079)] = 199944, - [SMALL_STATE(5080)] = 199954, - [SMALL_STATE(5081)] = 199964, - [SMALL_STATE(5082)] = 199974, - [SMALL_STATE(5083)] = 199984, - [SMALL_STATE(5084)] = 199994, - [SMALL_STATE(5085)] = 200004, - [SMALL_STATE(5086)] = 200014, - [SMALL_STATE(5087)] = 200024, - [SMALL_STATE(5088)] = 200034, - [SMALL_STATE(5089)] = 200044, - [SMALL_STATE(5090)] = 200054, - [SMALL_STATE(5091)] = 200064, - [SMALL_STATE(5092)] = 200074, - [SMALL_STATE(5093)] = 200084, - [SMALL_STATE(5094)] = 200094, - [SMALL_STATE(5095)] = 200104, - [SMALL_STATE(5096)] = 200114, - [SMALL_STATE(5097)] = 200124, - [SMALL_STATE(5098)] = 200134, - [SMALL_STATE(5099)] = 200144, - [SMALL_STATE(5100)] = 200154, - [SMALL_STATE(5101)] = 200164, - [SMALL_STATE(5102)] = 200174, - [SMALL_STATE(5103)] = 200184, - [SMALL_STATE(5104)] = 200194, - [SMALL_STATE(5105)] = 200204, - [SMALL_STATE(5106)] = 200214, - [SMALL_STATE(5107)] = 200224, - [SMALL_STATE(5108)] = 200234, - [SMALL_STATE(5109)] = 200244, - [SMALL_STATE(5110)] = 200254, - [SMALL_STATE(5111)] = 200264, - [SMALL_STATE(5112)] = 200274, - [SMALL_STATE(5113)] = 200284, - [SMALL_STATE(5114)] = 200294, - [SMALL_STATE(5115)] = 200304, - [SMALL_STATE(5116)] = 200314, - [SMALL_STATE(5117)] = 200324, - [SMALL_STATE(5118)] = 200334, - [SMALL_STATE(5119)] = 200344, - [SMALL_STATE(5120)] = 200354, - [SMALL_STATE(5121)] = 200364, - [SMALL_STATE(5122)] = 200374, - [SMALL_STATE(5123)] = 200384, - [SMALL_STATE(5124)] = 200394, - [SMALL_STATE(5125)] = 200404, - [SMALL_STATE(5126)] = 200414, - [SMALL_STATE(5127)] = 200424, - [SMALL_STATE(5128)] = 200434, - [SMALL_STATE(5129)] = 200444, - [SMALL_STATE(5130)] = 200454, - [SMALL_STATE(5131)] = 200464, - [SMALL_STATE(5132)] = 200474, - [SMALL_STATE(5133)] = 200484, - [SMALL_STATE(5134)] = 200494, - [SMALL_STATE(5135)] = 200504, - [SMALL_STATE(5136)] = 200514, - [SMALL_STATE(5137)] = 200524, - [SMALL_STATE(5138)] = 200534, - [SMALL_STATE(5139)] = 200544, - [SMALL_STATE(5140)] = 200554, - [SMALL_STATE(5141)] = 200564, - [SMALL_STATE(5142)] = 200574, - [SMALL_STATE(5143)] = 200584, - [SMALL_STATE(5144)] = 200594, - [SMALL_STATE(5145)] = 200604, - [SMALL_STATE(5146)] = 200614, - [SMALL_STATE(5147)] = 200624, - [SMALL_STATE(5148)] = 200634, - [SMALL_STATE(5149)] = 200644, - [SMALL_STATE(5150)] = 200654, - [SMALL_STATE(5151)] = 200664, - [SMALL_STATE(5152)] = 200674, - [SMALL_STATE(5153)] = 200684, - [SMALL_STATE(5154)] = 200694, - [SMALL_STATE(5155)] = 200704, - [SMALL_STATE(5156)] = 200714, - [SMALL_STATE(5157)] = 200724, - [SMALL_STATE(5158)] = 200734, - [SMALL_STATE(5159)] = 200744, - [SMALL_STATE(5160)] = 200754, - [SMALL_STATE(5161)] = 200764, - [SMALL_STATE(5162)] = 200774, - [SMALL_STATE(5163)] = 200784, - [SMALL_STATE(5164)] = 200794, - [SMALL_STATE(5165)] = 200804, - [SMALL_STATE(5166)] = 200814, - [SMALL_STATE(5167)] = 200824, - [SMALL_STATE(5168)] = 200834, - [SMALL_STATE(5169)] = 200844, - [SMALL_STATE(5170)] = 200854, - [SMALL_STATE(5171)] = 200864, - [SMALL_STATE(5172)] = 200874, - [SMALL_STATE(5173)] = 200884, - [SMALL_STATE(5174)] = 200894, - [SMALL_STATE(5175)] = 200904, - [SMALL_STATE(5176)] = 200914, - [SMALL_STATE(5177)] = 200924, - [SMALL_STATE(5178)] = 200934, - [SMALL_STATE(5179)] = 200944, - [SMALL_STATE(5180)] = 200954, - [SMALL_STATE(5181)] = 200964, - [SMALL_STATE(5182)] = 200974, - [SMALL_STATE(5183)] = 200984, - [SMALL_STATE(5184)] = 200994, - [SMALL_STATE(5185)] = 201004, - [SMALL_STATE(5186)] = 201014, - [SMALL_STATE(5187)] = 201024, - [SMALL_STATE(5188)] = 201034, - [SMALL_STATE(5189)] = 201044, - [SMALL_STATE(5190)] = 201054, - [SMALL_STATE(5191)] = 201064, - [SMALL_STATE(5192)] = 201074, - [SMALL_STATE(5193)] = 201084, - [SMALL_STATE(5194)] = 201094, - [SMALL_STATE(5195)] = 201104, - [SMALL_STATE(5196)] = 201114, - [SMALL_STATE(5197)] = 201124, - [SMALL_STATE(5198)] = 201134, - [SMALL_STATE(5199)] = 201144, - [SMALL_STATE(5200)] = 201154, - [SMALL_STATE(5201)] = 201164, - [SMALL_STATE(5202)] = 201174, - [SMALL_STATE(5203)] = 201184, - [SMALL_STATE(5204)] = 201194, - [SMALL_STATE(5205)] = 201204, - [SMALL_STATE(5206)] = 201214, - [SMALL_STATE(5207)] = 201224, - [SMALL_STATE(5208)] = 201234, - [SMALL_STATE(5209)] = 201244, - [SMALL_STATE(5210)] = 201254, - [SMALL_STATE(5211)] = 201264, - [SMALL_STATE(5212)] = 201274, - [SMALL_STATE(5213)] = 201284, - [SMALL_STATE(5214)] = 201294, - [SMALL_STATE(5215)] = 201304, - [SMALL_STATE(5216)] = 201314, - [SMALL_STATE(5217)] = 201324, - [SMALL_STATE(5218)] = 201334, - [SMALL_STATE(5219)] = 201344, - [SMALL_STATE(5220)] = 201354, - [SMALL_STATE(5221)] = 201364, - [SMALL_STATE(5222)] = 201374, - [SMALL_STATE(5223)] = 201384, - [SMALL_STATE(5224)] = 201394, - [SMALL_STATE(5225)] = 201404, - [SMALL_STATE(5226)] = 201414, - [SMALL_STATE(5227)] = 201424, - [SMALL_STATE(5228)] = 201434, - [SMALL_STATE(5229)] = 201444, - [SMALL_STATE(5230)] = 201454, - [SMALL_STATE(5231)] = 201464, - [SMALL_STATE(5232)] = 201474, - [SMALL_STATE(5233)] = 201484, - [SMALL_STATE(5234)] = 201494, - [SMALL_STATE(5235)] = 201504, - [SMALL_STATE(5236)] = 201514, - [SMALL_STATE(5237)] = 201524, - [SMALL_STATE(5238)] = 201534, - [SMALL_STATE(5239)] = 201544, - [SMALL_STATE(5240)] = 201554, - [SMALL_STATE(5241)] = 201564, - [SMALL_STATE(5242)] = 201574, - [SMALL_STATE(5243)] = 201584, - [SMALL_STATE(5244)] = 201594, - [SMALL_STATE(5245)] = 201604, - [SMALL_STATE(5246)] = 201614, - [SMALL_STATE(5247)] = 201624, - [SMALL_STATE(5248)] = 201634, - [SMALL_STATE(5249)] = 201644, - [SMALL_STATE(5250)] = 201654, - [SMALL_STATE(5251)] = 201664, - [SMALL_STATE(5252)] = 201674, - [SMALL_STATE(5253)] = 201684, - [SMALL_STATE(5254)] = 201694, - [SMALL_STATE(5255)] = 201704, - [SMALL_STATE(5256)] = 201710, - [SMALL_STATE(5257)] = 201720, - [SMALL_STATE(5258)] = 201730, - [SMALL_STATE(5259)] = 201740, - [SMALL_STATE(5260)] = 201750, - [SMALL_STATE(5261)] = 201760, - [SMALL_STATE(5262)] = 201770, - [SMALL_STATE(5263)] = 201780, - [SMALL_STATE(5264)] = 201790, - [SMALL_STATE(5265)] = 201800, - [SMALL_STATE(5266)] = 201810, - [SMALL_STATE(5267)] = 201820, - [SMALL_STATE(5268)] = 201830, - [SMALL_STATE(5269)] = 201840, - [SMALL_STATE(5270)] = 201850, - [SMALL_STATE(5271)] = 201860, - [SMALL_STATE(5272)] = 201870, - [SMALL_STATE(5273)] = 201880, - [SMALL_STATE(5274)] = 201890, - [SMALL_STATE(5275)] = 201900, - [SMALL_STATE(5276)] = 201910, - [SMALL_STATE(5277)] = 201920, - [SMALL_STATE(5278)] = 201930, - [SMALL_STATE(5279)] = 201940, - [SMALL_STATE(5280)] = 201950, - [SMALL_STATE(5281)] = 201960, - [SMALL_STATE(5282)] = 201970, - [SMALL_STATE(5283)] = 201980, - [SMALL_STATE(5284)] = 201990, - [SMALL_STATE(5285)] = 202000, - [SMALL_STATE(5286)] = 202010, - [SMALL_STATE(5287)] = 202020, - [SMALL_STATE(5288)] = 202030, - [SMALL_STATE(5289)] = 202040, - [SMALL_STATE(5290)] = 202050, - [SMALL_STATE(5291)] = 202060, - [SMALL_STATE(5292)] = 202070, - [SMALL_STATE(5293)] = 202080, - [SMALL_STATE(5294)] = 202090, - [SMALL_STATE(5295)] = 202100, - [SMALL_STATE(5296)] = 202110, - [SMALL_STATE(5297)] = 202120, - [SMALL_STATE(5298)] = 202130, - [SMALL_STATE(5299)] = 202140, - [SMALL_STATE(5300)] = 202150, - [SMALL_STATE(5301)] = 202160, - [SMALL_STATE(5302)] = 202170, - [SMALL_STATE(5303)] = 202180, - [SMALL_STATE(5304)] = 202190, - [SMALL_STATE(5305)] = 202200, - [SMALL_STATE(5306)] = 202210, - [SMALL_STATE(5307)] = 202220, - [SMALL_STATE(5308)] = 202230, - [SMALL_STATE(5309)] = 202240, - [SMALL_STATE(5310)] = 202250, - [SMALL_STATE(5311)] = 202260, - [SMALL_STATE(5312)] = 202270, - [SMALL_STATE(5313)] = 202280, - [SMALL_STATE(5314)] = 202290, - [SMALL_STATE(5315)] = 202300, - [SMALL_STATE(5316)] = 202310, - [SMALL_STATE(5317)] = 202320, - [SMALL_STATE(5318)] = 202330, - [SMALL_STATE(5319)] = 202340, - [SMALL_STATE(5320)] = 202350, - [SMALL_STATE(5321)] = 202360, - [SMALL_STATE(5322)] = 202370, - [SMALL_STATE(5323)] = 202380, - [SMALL_STATE(5324)] = 202390, - [SMALL_STATE(5325)] = 202400, - [SMALL_STATE(5326)] = 202410, - [SMALL_STATE(5327)] = 202420, - [SMALL_STATE(5328)] = 202430, - [SMALL_STATE(5329)] = 202440, - [SMALL_STATE(5330)] = 202448, - [SMALL_STATE(5331)] = 202458, - [SMALL_STATE(5332)] = 202468, - [SMALL_STATE(5333)] = 202478, - [SMALL_STATE(5334)] = 202488, - [SMALL_STATE(5335)] = 202498, - [SMALL_STATE(5336)] = 202508, - [SMALL_STATE(5337)] = 202518, - [SMALL_STATE(5338)] = 202528, - [SMALL_STATE(5339)] = 202538, - [SMALL_STATE(5340)] = 202548, - [SMALL_STATE(5341)] = 202558, - [SMALL_STATE(5342)] = 202568, - [SMALL_STATE(5343)] = 202578, - [SMALL_STATE(5344)] = 202588, - [SMALL_STATE(5345)] = 202598, - [SMALL_STATE(5346)] = 202608, - [SMALL_STATE(5347)] = 202618, - [SMALL_STATE(5348)] = 202628, - [SMALL_STATE(5349)] = 202638, - [SMALL_STATE(5350)] = 202648, - [SMALL_STATE(5351)] = 202658, - [SMALL_STATE(5352)] = 202668, - [SMALL_STATE(5353)] = 202678, - [SMALL_STATE(5354)] = 202688, - [SMALL_STATE(5355)] = 202698, - [SMALL_STATE(5356)] = 202708, - [SMALL_STATE(5357)] = 202718, - [SMALL_STATE(5358)] = 202728, - [SMALL_STATE(5359)] = 202738, - [SMALL_STATE(5360)] = 202748, - [SMALL_STATE(5361)] = 202758, - [SMALL_STATE(5362)] = 202768, - [SMALL_STATE(5363)] = 202778, - [SMALL_STATE(5364)] = 202788, - [SMALL_STATE(5365)] = 202798, - [SMALL_STATE(5366)] = 202808, - [SMALL_STATE(5367)] = 202818, - [SMALL_STATE(5368)] = 202828, - [SMALL_STATE(5369)] = 202838, - [SMALL_STATE(5370)] = 202848, - [SMALL_STATE(5371)] = 202858, - [SMALL_STATE(5372)] = 202868, - [SMALL_STATE(5373)] = 202878, - [SMALL_STATE(5374)] = 202888, - [SMALL_STATE(5375)] = 202898, - [SMALL_STATE(5376)] = 202908, - [SMALL_STATE(5377)] = 202918, - [SMALL_STATE(5378)] = 202928, - [SMALL_STATE(5379)] = 202938, - [SMALL_STATE(5380)] = 202948, - [SMALL_STATE(5381)] = 202958, - [SMALL_STATE(5382)] = 202968, - [SMALL_STATE(5383)] = 202978, - [SMALL_STATE(5384)] = 202988, - [SMALL_STATE(5385)] = 202998, - [SMALL_STATE(5386)] = 203008, - [SMALL_STATE(5387)] = 203018, - [SMALL_STATE(5388)] = 203028, - [SMALL_STATE(5389)] = 203038, - [SMALL_STATE(5390)] = 203048, - [SMALL_STATE(5391)] = 203058, - [SMALL_STATE(5392)] = 203068, - [SMALL_STATE(5393)] = 203078, - [SMALL_STATE(5394)] = 203088, - [SMALL_STATE(5395)] = 203098, - [SMALL_STATE(5396)] = 203106, - [SMALL_STATE(5397)] = 203114, - [SMALL_STATE(5398)] = 203121, - [SMALL_STATE(5399)] = 203128, - [SMALL_STATE(5400)] = 203135, - [SMALL_STATE(5401)] = 203142, - [SMALL_STATE(5402)] = 203149, - [SMALL_STATE(5403)] = 203156, - [SMALL_STATE(5404)] = 203163, - [SMALL_STATE(5405)] = 203170, - [SMALL_STATE(5406)] = 203177, - [SMALL_STATE(5407)] = 203184, - [SMALL_STATE(5408)] = 203191, - [SMALL_STATE(5409)] = 203198, - [SMALL_STATE(5410)] = 203205, - [SMALL_STATE(5411)] = 203212, - [SMALL_STATE(5412)] = 203219, - [SMALL_STATE(5413)] = 203226, - [SMALL_STATE(5414)] = 203233, - [SMALL_STATE(5415)] = 203240, - [SMALL_STATE(5416)] = 203247, - [SMALL_STATE(5417)] = 203254, - [SMALL_STATE(5418)] = 203261, - [SMALL_STATE(5419)] = 203268, - [SMALL_STATE(5420)] = 203275, - [SMALL_STATE(5421)] = 203282, - [SMALL_STATE(5422)] = 203289, - [SMALL_STATE(5423)] = 203296, - [SMALL_STATE(5424)] = 203303, - [SMALL_STATE(5425)] = 203310, - [SMALL_STATE(5426)] = 203317, - [SMALL_STATE(5427)] = 203324, - [SMALL_STATE(5428)] = 203331, - [SMALL_STATE(5429)] = 203338, - [SMALL_STATE(5430)] = 203345, - [SMALL_STATE(5431)] = 203352, - [SMALL_STATE(5432)] = 203359, - [SMALL_STATE(5433)] = 203366, - [SMALL_STATE(5434)] = 203373, - [SMALL_STATE(5435)] = 203380, - [SMALL_STATE(5436)] = 203387, - [SMALL_STATE(5437)] = 203394, - [SMALL_STATE(5438)] = 203401, - [SMALL_STATE(5439)] = 203408, - [SMALL_STATE(5440)] = 203415, - [SMALL_STATE(5441)] = 203422, - [SMALL_STATE(5442)] = 203429, - [SMALL_STATE(5443)] = 203436, - [SMALL_STATE(5444)] = 203443, - [SMALL_STATE(5445)] = 203450, - [SMALL_STATE(5446)] = 203457, - [SMALL_STATE(5447)] = 203464, - [SMALL_STATE(5448)] = 203471, - [SMALL_STATE(5449)] = 203478, - [SMALL_STATE(5450)] = 203485, - [SMALL_STATE(5451)] = 203492, - [SMALL_STATE(5452)] = 203499, - [SMALL_STATE(5453)] = 203506, - [SMALL_STATE(5454)] = 203513, - [SMALL_STATE(5455)] = 203520, - [SMALL_STATE(5456)] = 203527, - [SMALL_STATE(5457)] = 203534, - [SMALL_STATE(5458)] = 203541, - [SMALL_STATE(5459)] = 203548, - [SMALL_STATE(5460)] = 203555, - [SMALL_STATE(5461)] = 203562, - [SMALL_STATE(5462)] = 203569, - [SMALL_STATE(5463)] = 203576, - [SMALL_STATE(5464)] = 203583, - [SMALL_STATE(5465)] = 203590, - [SMALL_STATE(5466)] = 203597, - [SMALL_STATE(5467)] = 203604, - [SMALL_STATE(5468)] = 203611, - [SMALL_STATE(5469)] = 203618, - [SMALL_STATE(5470)] = 203625, - [SMALL_STATE(5471)] = 203632, - [SMALL_STATE(5472)] = 203639, - [SMALL_STATE(5473)] = 203646, - [SMALL_STATE(5474)] = 203653, - [SMALL_STATE(5475)] = 203660, - [SMALL_STATE(5476)] = 203667, - [SMALL_STATE(5477)] = 203674, - [SMALL_STATE(5478)] = 203681, - [SMALL_STATE(5479)] = 203688, - [SMALL_STATE(5480)] = 203695, - [SMALL_STATE(5481)] = 203702, - [SMALL_STATE(5482)] = 203709, - [SMALL_STATE(5483)] = 203716, - [SMALL_STATE(5484)] = 203723, - [SMALL_STATE(5485)] = 203730, - [SMALL_STATE(5486)] = 203737, - [SMALL_STATE(5487)] = 203744, - [SMALL_STATE(5488)] = 203751, - [SMALL_STATE(5489)] = 203758, - [SMALL_STATE(5490)] = 203765, - [SMALL_STATE(5491)] = 203772, - [SMALL_STATE(5492)] = 203779, - [SMALL_STATE(5493)] = 203786, - [SMALL_STATE(5494)] = 203793, - [SMALL_STATE(5495)] = 203800, - [SMALL_STATE(5496)] = 203807, - [SMALL_STATE(5497)] = 203814, - [SMALL_STATE(5498)] = 203821, - [SMALL_STATE(5499)] = 203828, - [SMALL_STATE(5500)] = 203835, - [SMALL_STATE(5501)] = 203842, - [SMALL_STATE(5502)] = 203849, - [SMALL_STATE(5503)] = 203856, - [SMALL_STATE(5504)] = 203863, - [SMALL_STATE(5505)] = 203870, - [SMALL_STATE(5506)] = 203877, - [SMALL_STATE(5507)] = 203884, - [SMALL_STATE(5508)] = 203891, - [SMALL_STATE(5509)] = 203898, - [SMALL_STATE(5510)] = 203905, - [SMALL_STATE(5511)] = 203912, - [SMALL_STATE(5512)] = 203919, - [SMALL_STATE(5513)] = 203926, - [SMALL_STATE(5514)] = 203931, - [SMALL_STATE(5515)] = 203938, - [SMALL_STATE(5516)] = 203945, - [SMALL_STATE(5517)] = 203952, - [SMALL_STATE(5518)] = 203959, - [SMALL_STATE(5519)] = 203966, - [SMALL_STATE(5520)] = 203973, - [SMALL_STATE(5521)] = 203978, - [SMALL_STATE(5522)] = 203985, - [SMALL_STATE(5523)] = 203990, - [SMALL_STATE(5524)] = 203997, - [SMALL_STATE(5525)] = 204004, - [SMALL_STATE(5526)] = 204009, - [SMALL_STATE(5527)] = 204016, - [SMALL_STATE(5528)] = 204023, - [SMALL_STATE(5529)] = 204030, - [SMALL_STATE(5530)] = 204037, - [SMALL_STATE(5531)] = 204044, - [SMALL_STATE(5532)] = 204051, - [SMALL_STATE(5533)] = 204058, - [SMALL_STATE(5534)] = 204065, - [SMALL_STATE(5535)] = 204072, - [SMALL_STATE(5536)] = 204079, - [SMALL_STATE(5537)] = 204086, - [SMALL_STATE(5538)] = 204093, - [SMALL_STATE(5539)] = 204100, - [SMALL_STATE(5540)] = 204107, - [SMALL_STATE(5541)] = 204114, - [SMALL_STATE(5542)] = 204121, - [SMALL_STATE(5543)] = 204128, - [SMALL_STATE(5544)] = 204135, - [SMALL_STATE(5545)] = 204140, - [SMALL_STATE(5546)] = 204147, - [SMALL_STATE(5547)] = 204154, - [SMALL_STATE(5548)] = 204161, - [SMALL_STATE(5549)] = 204168, - [SMALL_STATE(5550)] = 204175, - [SMALL_STATE(5551)] = 204179, - [SMALL_STATE(5552)] = 204183, - [SMALL_STATE(5553)] = 204187, - [SMALL_STATE(5554)] = 204191, - [SMALL_STATE(5555)] = 204195, - [SMALL_STATE(5556)] = 204199, - [SMALL_STATE(5557)] = 204203, - [SMALL_STATE(5558)] = 204207, - [SMALL_STATE(5559)] = 204211, - [SMALL_STATE(5560)] = 204215, - [SMALL_STATE(5561)] = 204219, - [SMALL_STATE(5562)] = 204223, - [SMALL_STATE(5563)] = 204227, - [SMALL_STATE(5564)] = 204231, - [SMALL_STATE(5565)] = 204235, - [SMALL_STATE(5566)] = 204239, - [SMALL_STATE(5567)] = 204243, - [SMALL_STATE(5568)] = 204247, - [SMALL_STATE(5569)] = 204251, - [SMALL_STATE(5570)] = 204255, - [SMALL_STATE(5571)] = 204259, - [SMALL_STATE(5572)] = 204263, - [SMALL_STATE(5573)] = 204267, - [SMALL_STATE(5574)] = 204271, - [SMALL_STATE(5575)] = 204275, - [SMALL_STATE(5576)] = 204279, - [SMALL_STATE(5577)] = 204283, - [SMALL_STATE(5578)] = 204287, - [SMALL_STATE(5579)] = 204291, - [SMALL_STATE(5580)] = 204295, - [SMALL_STATE(5581)] = 204299, - [SMALL_STATE(5582)] = 204303, - [SMALL_STATE(5583)] = 204307, - [SMALL_STATE(5584)] = 204311, - [SMALL_STATE(5585)] = 204315, - [SMALL_STATE(5586)] = 204319, - [SMALL_STATE(5587)] = 204323, - [SMALL_STATE(5588)] = 204327, - [SMALL_STATE(5589)] = 204331, - [SMALL_STATE(5590)] = 204335, - [SMALL_STATE(5591)] = 204339, - [SMALL_STATE(5592)] = 204343, - [SMALL_STATE(5593)] = 204347, - [SMALL_STATE(5594)] = 204351, - [SMALL_STATE(5595)] = 204355, - [SMALL_STATE(5596)] = 204359, - [SMALL_STATE(5597)] = 204363, - [SMALL_STATE(5598)] = 204367, - [SMALL_STATE(5599)] = 204371, - [SMALL_STATE(5600)] = 204375, - [SMALL_STATE(5601)] = 204379, - [SMALL_STATE(5602)] = 204383, - [SMALL_STATE(5603)] = 204387, - [SMALL_STATE(5604)] = 204391, - [SMALL_STATE(5605)] = 204395, - [SMALL_STATE(5606)] = 204399, - [SMALL_STATE(5607)] = 204403, - [SMALL_STATE(5608)] = 204407, - [SMALL_STATE(5609)] = 204411, - [SMALL_STATE(5610)] = 204415, - [SMALL_STATE(5611)] = 204419, - [SMALL_STATE(5612)] = 204423, - [SMALL_STATE(5613)] = 204427, - [SMALL_STATE(5614)] = 204431, - [SMALL_STATE(5615)] = 204435, - [SMALL_STATE(5616)] = 204439, - [SMALL_STATE(5617)] = 204443, - [SMALL_STATE(5618)] = 204447, - [SMALL_STATE(5619)] = 204451, - [SMALL_STATE(5620)] = 204455, - [SMALL_STATE(5621)] = 204459, - [SMALL_STATE(5622)] = 204463, - [SMALL_STATE(5623)] = 204467, - [SMALL_STATE(5624)] = 204471, - [SMALL_STATE(5625)] = 204475, - [SMALL_STATE(5626)] = 204479, - [SMALL_STATE(5627)] = 204483, - [SMALL_STATE(5628)] = 204487, - [SMALL_STATE(5629)] = 204491, - [SMALL_STATE(5630)] = 204495, - [SMALL_STATE(5631)] = 204499, - [SMALL_STATE(5632)] = 204503, - [SMALL_STATE(5633)] = 204507, - [SMALL_STATE(5634)] = 204511, - [SMALL_STATE(5635)] = 204515, - [SMALL_STATE(5636)] = 204519, - [SMALL_STATE(5637)] = 204523, - [SMALL_STATE(5638)] = 204527, - [SMALL_STATE(5639)] = 204531, - [SMALL_STATE(5640)] = 204535, - [SMALL_STATE(5641)] = 204539, - [SMALL_STATE(5642)] = 204543, - [SMALL_STATE(5643)] = 204547, - [SMALL_STATE(5644)] = 204551, - [SMALL_STATE(5645)] = 204555, - [SMALL_STATE(5646)] = 204559, - [SMALL_STATE(5647)] = 204563, - [SMALL_STATE(5648)] = 204567, - [SMALL_STATE(5649)] = 204571, - [SMALL_STATE(5650)] = 204575, - [SMALL_STATE(5651)] = 204579, - [SMALL_STATE(5652)] = 204583, - [SMALL_STATE(5653)] = 204587, - [SMALL_STATE(5654)] = 204591, - [SMALL_STATE(5655)] = 204595, - [SMALL_STATE(5656)] = 204599, - [SMALL_STATE(5657)] = 204603, - [SMALL_STATE(5658)] = 204607, - [SMALL_STATE(5659)] = 204611, - [SMALL_STATE(5660)] = 204615, - [SMALL_STATE(5661)] = 204619, - [SMALL_STATE(5662)] = 204623, - [SMALL_STATE(5663)] = 204627, - [SMALL_STATE(5664)] = 204631, - [SMALL_STATE(5665)] = 204635, - [SMALL_STATE(5666)] = 204639, - [SMALL_STATE(5667)] = 204643, - [SMALL_STATE(5668)] = 204647, - [SMALL_STATE(5669)] = 204651, - [SMALL_STATE(5670)] = 204655, - [SMALL_STATE(5671)] = 204659, - [SMALL_STATE(5672)] = 204663, - [SMALL_STATE(5673)] = 204667, - [SMALL_STATE(5674)] = 204671, - [SMALL_STATE(5675)] = 204675, - [SMALL_STATE(5676)] = 204679, - [SMALL_STATE(5677)] = 204683, - [SMALL_STATE(5678)] = 204687, - [SMALL_STATE(5679)] = 204691, - [SMALL_STATE(5680)] = 204695, - [SMALL_STATE(5681)] = 204699, - [SMALL_STATE(5682)] = 204703, - [SMALL_STATE(5683)] = 204707, - [SMALL_STATE(5684)] = 204711, - [SMALL_STATE(5685)] = 204715, - [SMALL_STATE(5686)] = 204719, - [SMALL_STATE(5687)] = 204723, - [SMALL_STATE(5688)] = 204727, - [SMALL_STATE(5689)] = 204731, - [SMALL_STATE(5690)] = 204735, - [SMALL_STATE(5691)] = 204739, - [SMALL_STATE(5692)] = 204743, - [SMALL_STATE(5693)] = 204747, - [SMALL_STATE(5694)] = 204751, - [SMALL_STATE(5695)] = 204755, - [SMALL_STATE(5696)] = 204759, - [SMALL_STATE(5697)] = 204763, - [SMALL_STATE(5698)] = 204767, - [SMALL_STATE(5699)] = 204771, - [SMALL_STATE(5700)] = 204775, - [SMALL_STATE(5701)] = 204779, - [SMALL_STATE(5702)] = 204783, - [SMALL_STATE(5703)] = 204787, - [SMALL_STATE(5704)] = 204791, - [SMALL_STATE(5705)] = 204795, - [SMALL_STATE(5706)] = 204799, - [SMALL_STATE(5707)] = 204803, - [SMALL_STATE(5708)] = 204807, - [SMALL_STATE(5709)] = 204811, - [SMALL_STATE(5710)] = 204815, - [SMALL_STATE(5711)] = 204819, - [SMALL_STATE(5712)] = 204823, - [SMALL_STATE(5713)] = 204827, - [SMALL_STATE(5714)] = 204831, - [SMALL_STATE(5715)] = 204835, - [SMALL_STATE(5716)] = 204839, - [SMALL_STATE(5717)] = 204843, - [SMALL_STATE(5718)] = 204847, - [SMALL_STATE(5719)] = 204851, - [SMALL_STATE(5720)] = 204855, - [SMALL_STATE(5721)] = 204859, - [SMALL_STATE(5722)] = 204863, - [SMALL_STATE(5723)] = 204867, - [SMALL_STATE(5724)] = 204871, - [SMALL_STATE(5725)] = 204875, - [SMALL_STATE(5726)] = 204879, - [SMALL_STATE(5727)] = 204883, - [SMALL_STATE(5728)] = 204887, - [SMALL_STATE(5729)] = 204891, - [SMALL_STATE(5730)] = 204895, - [SMALL_STATE(5731)] = 204899, - [SMALL_STATE(5732)] = 204903, - [SMALL_STATE(5733)] = 204907, - [SMALL_STATE(5734)] = 204911, - [SMALL_STATE(5735)] = 204915, - [SMALL_STATE(5736)] = 204919, - [SMALL_STATE(5737)] = 204923, - [SMALL_STATE(5738)] = 204927, - [SMALL_STATE(5739)] = 204931, - [SMALL_STATE(5740)] = 204935, - [SMALL_STATE(5741)] = 204939, - [SMALL_STATE(5742)] = 204943, - [SMALL_STATE(5743)] = 204947, - [SMALL_STATE(5744)] = 204951, - [SMALL_STATE(5745)] = 204955, - [SMALL_STATE(5746)] = 204959, - [SMALL_STATE(5747)] = 204963, - [SMALL_STATE(5748)] = 204967, - [SMALL_STATE(5749)] = 204971, - [SMALL_STATE(5750)] = 204975, - [SMALL_STATE(5751)] = 204979, - [SMALL_STATE(5752)] = 204983, - [SMALL_STATE(5753)] = 204987, - [SMALL_STATE(5754)] = 204991, - [SMALL_STATE(5755)] = 204995, - [SMALL_STATE(5756)] = 204999, - [SMALL_STATE(5757)] = 205003, - [SMALL_STATE(5758)] = 205007, - [SMALL_STATE(5759)] = 205011, - [SMALL_STATE(5760)] = 205015, - [SMALL_STATE(5761)] = 205019, - [SMALL_STATE(5762)] = 205023, - [SMALL_STATE(5763)] = 205027, - [SMALL_STATE(5764)] = 205031, - [SMALL_STATE(5765)] = 205035, - [SMALL_STATE(5766)] = 205039, - [SMALL_STATE(5767)] = 205043, - [SMALL_STATE(5768)] = 205047, - [SMALL_STATE(5769)] = 205051, - [SMALL_STATE(5770)] = 205055, - [SMALL_STATE(5771)] = 205059, - [SMALL_STATE(5772)] = 205063, - [SMALL_STATE(5773)] = 205067, - [SMALL_STATE(5774)] = 205071, - [SMALL_STATE(5775)] = 205075, - [SMALL_STATE(5776)] = 205079, - [SMALL_STATE(5777)] = 205083, - [SMALL_STATE(5778)] = 205087, - [SMALL_STATE(5779)] = 205091, - [SMALL_STATE(5780)] = 205095, - [SMALL_STATE(5781)] = 205099, - [SMALL_STATE(5782)] = 205103, - [SMALL_STATE(5783)] = 205107, - [SMALL_STATE(5784)] = 205111, - [SMALL_STATE(5785)] = 205115, - [SMALL_STATE(5786)] = 205119, - [SMALL_STATE(5787)] = 205123, - [SMALL_STATE(5788)] = 205127, - [SMALL_STATE(5789)] = 205131, - [SMALL_STATE(5790)] = 205135, - [SMALL_STATE(5791)] = 205139, - [SMALL_STATE(5792)] = 205143, - [SMALL_STATE(5793)] = 205147, - [SMALL_STATE(5794)] = 205151, - [SMALL_STATE(5795)] = 205155, - [SMALL_STATE(5796)] = 205159, - [SMALL_STATE(5797)] = 205163, - [SMALL_STATE(5798)] = 205167, - [SMALL_STATE(5799)] = 205171, - [SMALL_STATE(5800)] = 205175, - [SMALL_STATE(5801)] = 205179, - [SMALL_STATE(5802)] = 205183, - [SMALL_STATE(5803)] = 205187, - [SMALL_STATE(5804)] = 205191, - [SMALL_STATE(5805)] = 205195, - [SMALL_STATE(5806)] = 205199, - [SMALL_STATE(5807)] = 205203, - [SMALL_STATE(5808)] = 205207, - [SMALL_STATE(5809)] = 205211, - [SMALL_STATE(5810)] = 205215, - [SMALL_STATE(5811)] = 205219, - [SMALL_STATE(5812)] = 205223, - [SMALL_STATE(5813)] = 205227, - [SMALL_STATE(5814)] = 205231, - [SMALL_STATE(5815)] = 205235, - [SMALL_STATE(5816)] = 205239, - [SMALL_STATE(5817)] = 205243, - [SMALL_STATE(5818)] = 205247, - [SMALL_STATE(5819)] = 205251, - [SMALL_STATE(5820)] = 205255, - [SMALL_STATE(5821)] = 205259, - [SMALL_STATE(5822)] = 205263, - [SMALL_STATE(5823)] = 205267, - [SMALL_STATE(5824)] = 205271, - [SMALL_STATE(5825)] = 205275, - [SMALL_STATE(5826)] = 205279, - [SMALL_STATE(5827)] = 205283, - [SMALL_STATE(5828)] = 205287, - [SMALL_STATE(5829)] = 205291, - [SMALL_STATE(5830)] = 205295, - [SMALL_STATE(5831)] = 205299, - [SMALL_STATE(5832)] = 205303, - [SMALL_STATE(5833)] = 205307, - [SMALL_STATE(5834)] = 205311, - [SMALL_STATE(5835)] = 205315, - [SMALL_STATE(5836)] = 205319, - [SMALL_STATE(5837)] = 205323, - [SMALL_STATE(5838)] = 205327, - [SMALL_STATE(5839)] = 205331, - [SMALL_STATE(5840)] = 205335, - [SMALL_STATE(5841)] = 205339, - [SMALL_STATE(5842)] = 205343, - [SMALL_STATE(5843)] = 205347, - [SMALL_STATE(5844)] = 205351, - [SMALL_STATE(5845)] = 205355, - [SMALL_STATE(5846)] = 205359, - [SMALL_STATE(5847)] = 205363, - [SMALL_STATE(5848)] = 205367, - [SMALL_STATE(5849)] = 205371, - [SMALL_STATE(5850)] = 205375, - [SMALL_STATE(5851)] = 205379, - [SMALL_STATE(5852)] = 205383, - [SMALL_STATE(5853)] = 205387, - [SMALL_STATE(5854)] = 205391, - [SMALL_STATE(5855)] = 205395, - [SMALL_STATE(5856)] = 205399, - [SMALL_STATE(5857)] = 205403, - [SMALL_STATE(5858)] = 205407, - [SMALL_STATE(5859)] = 205411, - [SMALL_STATE(5860)] = 205415, - [SMALL_STATE(5861)] = 205419, - [SMALL_STATE(5862)] = 205423, - [SMALL_STATE(5863)] = 205427, - [SMALL_STATE(5864)] = 205431, - [SMALL_STATE(5865)] = 205435, - [SMALL_STATE(5866)] = 205439, - [SMALL_STATE(5867)] = 205443, - [SMALL_STATE(5868)] = 205447, - [SMALL_STATE(5869)] = 205451, - [SMALL_STATE(5870)] = 205455, - [SMALL_STATE(5871)] = 205459, - [SMALL_STATE(5872)] = 205463, - [SMALL_STATE(5873)] = 205467, - [SMALL_STATE(5874)] = 205471, - [SMALL_STATE(5875)] = 205475, - [SMALL_STATE(5876)] = 205479, - [SMALL_STATE(5877)] = 205483, - [SMALL_STATE(5878)] = 205487, - [SMALL_STATE(5879)] = 205491, - [SMALL_STATE(5880)] = 205495, - [SMALL_STATE(5881)] = 205499, - [SMALL_STATE(5882)] = 205503, - [SMALL_STATE(5883)] = 205507, - [SMALL_STATE(5884)] = 205511, - [SMALL_STATE(5885)] = 205515, - [SMALL_STATE(5886)] = 205519, - [SMALL_STATE(5887)] = 205523, - [SMALL_STATE(5888)] = 205527, - [SMALL_STATE(5889)] = 205531, - [SMALL_STATE(5890)] = 205535, - [SMALL_STATE(5891)] = 205539, - [SMALL_STATE(5892)] = 205543, - [SMALL_STATE(5893)] = 205547, - [SMALL_STATE(5894)] = 205551, - [SMALL_STATE(5895)] = 205555, - [SMALL_STATE(5896)] = 205559, - [SMALL_STATE(5897)] = 205563, - [SMALL_STATE(5898)] = 205567, - [SMALL_STATE(5899)] = 205571, - [SMALL_STATE(5900)] = 205575, - [SMALL_STATE(5901)] = 205579, - [SMALL_STATE(5902)] = 205583, - [SMALL_STATE(5903)] = 205587, - [SMALL_STATE(5904)] = 205591, - [SMALL_STATE(5905)] = 205595, - [SMALL_STATE(5906)] = 205599, - [SMALL_STATE(5907)] = 205603, - [SMALL_STATE(5908)] = 205607, - [SMALL_STATE(5909)] = 205611, - [SMALL_STATE(5910)] = 205615, - [SMALL_STATE(5911)] = 205619, - [SMALL_STATE(5912)] = 205623, - [SMALL_STATE(5913)] = 205627, - [SMALL_STATE(5914)] = 205631, - [SMALL_STATE(5915)] = 205635, - [SMALL_STATE(5916)] = 205639, - [SMALL_STATE(5917)] = 205643, - [SMALL_STATE(5918)] = 205647, - [SMALL_STATE(5919)] = 205651, - [SMALL_STATE(5920)] = 205655, - [SMALL_STATE(5921)] = 205659, - [SMALL_STATE(5922)] = 205663, - [SMALL_STATE(5923)] = 205667, - [SMALL_STATE(5924)] = 205671, - [SMALL_STATE(5925)] = 205675, - [SMALL_STATE(5926)] = 205679, - [SMALL_STATE(5927)] = 205683, - [SMALL_STATE(5928)] = 205687, - [SMALL_STATE(5929)] = 205691, - [SMALL_STATE(5930)] = 205695, - [SMALL_STATE(5931)] = 205699, - [SMALL_STATE(5932)] = 205703, - [SMALL_STATE(5933)] = 205707, - [SMALL_STATE(5934)] = 205711, - [SMALL_STATE(5935)] = 205715, - [SMALL_STATE(5936)] = 205719, - [SMALL_STATE(5937)] = 205723, - [SMALL_STATE(5938)] = 205727, - [SMALL_STATE(5939)] = 205731, - [SMALL_STATE(5940)] = 205735, - [SMALL_STATE(5941)] = 205739, - [SMALL_STATE(5942)] = 205743, - [SMALL_STATE(5943)] = 205747, - [SMALL_STATE(5944)] = 205751, - [SMALL_STATE(5945)] = 205755, - [SMALL_STATE(5946)] = 205759, - [SMALL_STATE(5947)] = 205763, - [SMALL_STATE(5948)] = 205767, - [SMALL_STATE(5949)] = 205771, - [SMALL_STATE(5950)] = 205775, - [SMALL_STATE(5951)] = 205779, - [SMALL_STATE(5952)] = 205783, - [SMALL_STATE(5953)] = 205787, - [SMALL_STATE(5954)] = 205791, - [SMALL_STATE(5955)] = 205795, - [SMALL_STATE(5956)] = 205799, - [SMALL_STATE(5957)] = 205803, - [SMALL_STATE(5958)] = 205807, - [SMALL_STATE(5959)] = 205811, - [SMALL_STATE(5960)] = 205815, - [SMALL_STATE(5961)] = 205819, - [SMALL_STATE(5962)] = 205823, - [SMALL_STATE(5963)] = 205827, - [SMALL_STATE(5964)] = 205831, - [SMALL_STATE(5965)] = 205835, - [SMALL_STATE(5966)] = 205839, - [SMALL_STATE(5967)] = 205843, - [SMALL_STATE(5968)] = 205847, - [SMALL_STATE(5969)] = 205851, - [SMALL_STATE(5970)] = 205855, - [SMALL_STATE(5971)] = 205859, - [SMALL_STATE(5972)] = 205863, - [SMALL_STATE(5973)] = 205867, - [SMALL_STATE(5974)] = 205871, - [SMALL_STATE(5975)] = 205875, - [SMALL_STATE(5976)] = 205879, - [SMALL_STATE(5977)] = 205883, - [SMALL_STATE(5978)] = 205887, - [SMALL_STATE(5979)] = 205891, - [SMALL_STATE(5980)] = 205895, - [SMALL_STATE(5981)] = 205899, - [SMALL_STATE(5982)] = 205903, - [SMALL_STATE(5983)] = 205907, - [SMALL_STATE(5984)] = 205911, - [SMALL_STATE(5985)] = 205915, - [SMALL_STATE(5986)] = 205919, - [SMALL_STATE(5987)] = 205923, - [SMALL_STATE(5988)] = 205927, - [SMALL_STATE(5989)] = 205931, - [SMALL_STATE(5990)] = 205935, - [SMALL_STATE(5991)] = 205939, - [SMALL_STATE(5992)] = 205943, - [SMALL_STATE(5993)] = 205947, - [SMALL_STATE(5994)] = 205951, - [SMALL_STATE(5995)] = 205955, - [SMALL_STATE(5996)] = 205959, - [SMALL_STATE(5997)] = 205963, - [SMALL_STATE(5998)] = 205967, - [SMALL_STATE(5999)] = 205971, - [SMALL_STATE(6000)] = 205975, - [SMALL_STATE(6001)] = 205979, - [SMALL_STATE(6002)] = 205983, - [SMALL_STATE(6003)] = 205987, - [SMALL_STATE(6004)] = 205991, - [SMALL_STATE(6005)] = 205995, - [SMALL_STATE(6006)] = 205999, - [SMALL_STATE(6007)] = 206003, - [SMALL_STATE(6008)] = 206007, - [SMALL_STATE(6009)] = 206011, - [SMALL_STATE(6010)] = 206015, - [SMALL_STATE(6011)] = 206019, - [SMALL_STATE(6012)] = 206023, - [SMALL_STATE(6013)] = 206027, - [SMALL_STATE(6014)] = 206031, - [SMALL_STATE(6015)] = 206035, - [SMALL_STATE(6016)] = 206039, - [SMALL_STATE(6017)] = 206043, - [SMALL_STATE(6018)] = 206047, - [SMALL_STATE(6019)] = 206051, - [SMALL_STATE(6020)] = 206055, - [SMALL_STATE(6021)] = 206059, - [SMALL_STATE(6022)] = 206063, - [SMALL_STATE(6023)] = 206067, - [SMALL_STATE(6024)] = 206071, - [SMALL_STATE(6025)] = 206075, - [SMALL_STATE(6026)] = 206079, - [SMALL_STATE(6027)] = 206083, - [SMALL_STATE(6028)] = 206087, - [SMALL_STATE(6029)] = 206091, - [SMALL_STATE(6030)] = 206095, - [SMALL_STATE(6031)] = 206099, - [SMALL_STATE(6032)] = 206103, - [SMALL_STATE(6033)] = 206107, - [SMALL_STATE(6034)] = 206111, - [SMALL_STATE(6035)] = 206115, - [SMALL_STATE(6036)] = 206119, - [SMALL_STATE(6037)] = 206123, - [SMALL_STATE(6038)] = 206127, - [SMALL_STATE(6039)] = 206131, - [SMALL_STATE(6040)] = 206135, - [SMALL_STATE(6041)] = 206139, - [SMALL_STATE(6042)] = 206143, - [SMALL_STATE(6043)] = 206147, - [SMALL_STATE(6044)] = 206151, - [SMALL_STATE(6045)] = 206155, - [SMALL_STATE(6046)] = 206159, - [SMALL_STATE(6047)] = 206163, - [SMALL_STATE(6048)] = 206167, - [SMALL_STATE(6049)] = 206171, - [SMALL_STATE(6050)] = 206175, - [SMALL_STATE(6051)] = 206179, - [SMALL_STATE(6052)] = 206183, - [SMALL_STATE(6053)] = 206187, - [SMALL_STATE(6054)] = 206191, - [SMALL_STATE(6055)] = 206195, - [SMALL_STATE(6056)] = 206199, - [SMALL_STATE(6057)] = 206203, - [SMALL_STATE(6058)] = 206207, - [SMALL_STATE(6059)] = 206211, - [SMALL_STATE(6060)] = 206215, - [SMALL_STATE(6061)] = 206219, - [SMALL_STATE(6062)] = 206223, - [SMALL_STATE(6063)] = 206227, - [SMALL_STATE(6064)] = 206231, - [SMALL_STATE(6065)] = 206235, - [SMALL_STATE(6066)] = 206239, - [SMALL_STATE(6067)] = 206243, - [SMALL_STATE(6068)] = 206247, - [SMALL_STATE(6069)] = 206251, - [SMALL_STATE(6070)] = 206255, - [SMALL_STATE(6071)] = 206259, - [SMALL_STATE(6072)] = 206263, - [SMALL_STATE(6073)] = 206267, - [SMALL_STATE(6074)] = 206271, - [SMALL_STATE(6075)] = 206275, - [SMALL_STATE(6076)] = 206279, - [SMALL_STATE(6077)] = 206283, - [SMALL_STATE(6078)] = 206287, - [SMALL_STATE(6079)] = 206291, - [SMALL_STATE(6080)] = 206295, - [SMALL_STATE(6081)] = 206299, - [SMALL_STATE(6082)] = 206303, - [SMALL_STATE(6083)] = 206307, - [SMALL_STATE(6084)] = 206311, - [SMALL_STATE(6085)] = 206315, - [SMALL_STATE(6086)] = 206319, - [SMALL_STATE(6087)] = 206323, - [SMALL_STATE(6088)] = 206327, - [SMALL_STATE(6089)] = 206331, - [SMALL_STATE(6090)] = 206335, - [SMALL_STATE(6091)] = 206339, - [SMALL_STATE(6092)] = 206343, - [SMALL_STATE(6093)] = 206347, - [SMALL_STATE(6094)] = 206351, - [SMALL_STATE(6095)] = 206355, - [SMALL_STATE(6096)] = 206359, - [SMALL_STATE(6097)] = 206363, - [SMALL_STATE(6098)] = 206367, - [SMALL_STATE(6099)] = 206371, - [SMALL_STATE(6100)] = 206375, - [SMALL_STATE(6101)] = 206379, - [SMALL_STATE(6102)] = 206383, - [SMALL_STATE(6103)] = 206387, - [SMALL_STATE(6104)] = 206391, - [SMALL_STATE(6105)] = 206395, - [SMALL_STATE(6106)] = 206399, - [SMALL_STATE(6107)] = 206403, - [SMALL_STATE(6108)] = 206407, - [SMALL_STATE(6109)] = 206411, - [SMALL_STATE(6110)] = 206415, - [SMALL_STATE(6111)] = 206419, - [SMALL_STATE(6112)] = 206423, - [SMALL_STATE(6113)] = 206427, - [SMALL_STATE(6114)] = 206431, - [SMALL_STATE(6115)] = 206435, - [SMALL_STATE(6116)] = 206439, - [SMALL_STATE(6117)] = 206443, - [SMALL_STATE(6118)] = 206447, - [SMALL_STATE(6119)] = 206451, - [SMALL_STATE(6120)] = 206455, - [SMALL_STATE(6121)] = 206459, - [SMALL_STATE(6122)] = 206463, - [SMALL_STATE(6123)] = 206467, - [SMALL_STATE(6124)] = 206471, - [SMALL_STATE(6125)] = 206475, - [SMALL_STATE(6126)] = 206479, - [SMALL_STATE(6127)] = 206483, - [SMALL_STATE(6128)] = 206487, - [SMALL_STATE(6129)] = 206491, - [SMALL_STATE(6130)] = 206495, - [SMALL_STATE(6131)] = 206499, - [SMALL_STATE(6132)] = 206503, - [SMALL_STATE(6133)] = 206507, - [SMALL_STATE(6134)] = 206511, - [SMALL_STATE(6135)] = 206515, - [SMALL_STATE(6136)] = 206519, - [SMALL_STATE(6137)] = 206523, - [SMALL_STATE(6138)] = 206527, - [SMALL_STATE(6139)] = 206531, - [SMALL_STATE(6140)] = 206535, - [SMALL_STATE(6141)] = 206539, - [SMALL_STATE(6142)] = 206543, - [SMALL_STATE(6143)] = 206547, - [SMALL_STATE(6144)] = 206551, - [SMALL_STATE(6145)] = 206555, - [SMALL_STATE(6146)] = 206559, - [SMALL_STATE(6147)] = 206563, - [SMALL_STATE(6148)] = 206567, - [SMALL_STATE(6149)] = 206571, - [SMALL_STATE(6150)] = 206575, - [SMALL_STATE(6151)] = 206579, - [SMALL_STATE(6152)] = 206583, - [SMALL_STATE(6153)] = 206587, - [SMALL_STATE(6154)] = 206591, - [SMALL_STATE(6155)] = 206595, - [SMALL_STATE(6156)] = 206599, - [SMALL_STATE(6157)] = 206603, - [SMALL_STATE(6158)] = 206607, - [SMALL_STATE(6159)] = 206611, - [SMALL_STATE(6160)] = 206615, - [SMALL_STATE(6161)] = 206619, - [SMALL_STATE(6162)] = 206623, - [SMALL_STATE(6163)] = 206627, - [SMALL_STATE(6164)] = 206631, - [SMALL_STATE(6165)] = 206635, - [SMALL_STATE(6166)] = 206639, - [SMALL_STATE(6167)] = 206643, - [SMALL_STATE(6168)] = 206647, - [SMALL_STATE(6169)] = 206651, - [SMALL_STATE(6170)] = 206655, - [SMALL_STATE(6171)] = 206659, - [SMALL_STATE(6172)] = 206663, - [SMALL_STATE(6173)] = 206667, - [SMALL_STATE(6174)] = 206671, - [SMALL_STATE(6175)] = 206675, - [SMALL_STATE(6176)] = 206679, - [SMALL_STATE(6177)] = 206683, - [SMALL_STATE(6178)] = 206687, - [SMALL_STATE(6179)] = 206691, - [SMALL_STATE(6180)] = 206695, - [SMALL_STATE(6181)] = 206699, - [SMALL_STATE(6182)] = 206703, - [SMALL_STATE(6183)] = 206707, - [SMALL_STATE(6184)] = 206711, - [SMALL_STATE(6185)] = 206715, - [SMALL_STATE(6186)] = 206719, - [SMALL_STATE(6187)] = 206723, - [SMALL_STATE(6188)] = 206727, - [SMALL_STATE(6189)] = 206731, - [SMALL_STATE(6190)] = 206735, - [SMALL_STATE(6191)] = 206739, - [SMALL_STATE(6192)] = 206743, - [SMALL_STATE(6193)] = 206747, - [SMALL_STATE(6194)] = 206751, - [SMALL_STATE(6195)] = 206755, - [SMALL_STATE(6196)] = 206759, - [SMALL_STATE(6197)] = 206763, - [SMALL_STATE(6198)] = 206767, - [SMALL_STATE(6199)] = 206771, - [SMALL_STATE(6200)] = 206775, - [SMALL_STATE(6201)] = 206779, - [SMALL_STATE(6202)] = 206783, - [SMALL_STATE(6203)] = 206787, - [SMALL_STATE(6204)] = 206791, - [SMALL_STATE(6205)] = 206795, - [SMALL_STATE(6206)] = 206799, - [SMALL_STATE(6207)] = 206803, - [SMALL_STATE(6208)] = 206807, - [SMALL_STATE(6209)] = 206811, - [SMALL_STATE(6210)] = 206815, - [SMALL_STATE(6211)] = 206819, - [SMALL_STATE(6212)] = 206823, - [SMALL_STATE(6213)] = 206827, - [SMALL_STATE(6214)] = 206831, - [SMALL_STATE(6215)] = 206835, - [SMALL_STATE(6216)] = 206839, - [SMALL_STATE(6217)] = 206843, - [SMALL_STATE(6218)] = 206847, - [SMALL_STATE(6219)] = 206851, - [SMALL_STATE(6220)] = 206855, - [SMALL_STATE(6221)] = 206859, - [SMALL_STATE(6222)] = 206863, - [SMALL_STATE(6223)] = 206867, - [SMALL_STATE(6224)] = 206871, - [SMALL_STATE(6225)] = 206875, - [SMALL_STATE(6226)] = 206879, - [SMALL_STATE(6227)] = 206883, - [SMALL_STATE(6228)] = 206887, - [SMALL_STATE(6229)] = 206891, - [SMALL_STATE(6230)] = 206895, - [SMALL_STATE(6231)] = 206899, - [SMALL_STATE(6232)] = 206903, - [SMALL_STATE(6233)] = 206907, - [SMALL_STATE(6234)] = 206911, - [SMALL_STATE(6235)] = 206915, - [SMALL_STATE(6236)] = 206919, - [SMALL_STATE(6237)] = 206923, - [SMALL_STATE(6238)] = 206927, - [SMALL_STATE(6239)] = 206931, - [SMALL_STATE(6240)] = 206935, - [SMALL_STATE(6241)] = 206939, - [SMALL_STATE(6242)] = 206943, - [SMALL_STATE(6243)] = 206947, - [SMALL_STATE(6244)] = 206951, - [SMALL_STATE(6245)] = 206955, - [SMALL_STATE(6246)] = 206959, - [SMALL_STATE(6247)] = 206963, - [SMALL_STATE(6248)] = 206967, - [SMALL_STATE(6249)] = 206971, - [SMALL_STATE(6250)] = 206975, - [SMALL_STATE(6251)] = 206979, - [SMALL_STATE(6252)] = 206983, - [SMALL_STATE(6253)] = 206987, - [SMALL_STATE(6254)] = 206991, - [SMALL_STATE(6255)] = 206995, - [SMALL_STATE(6256)] = 206999, - [SMALL_STATE(6257)] = 207003, - [SMALL_STATE(6258)] = 207007, - [SMALL_STATE(6259)] = 207011, - [SMALL_STATE(6260)] = 207015, - [SMALL_STATE(6261)] = 207019, - [SMALL_STATE(6262)] = 207023, - [SMALL_STATE(6263)] = 207027, - [SMALL_STATE(6264)] = 207031, - [SMALL_STATE(6265)] = 207035, - [SMALL_STATE(6266)] = 207039, - [SMALL_STATE(6267)] = 207043, - [SMALL_STATE(6268)] = 207047, - [SMALL_STATE(6269)] = 207051, - [SMALL_STATE(6270)] = 207055, - [SMALL_STATE(6271)] = 207059, - [SMALL_STATE(6272)] = 207063, - [SMALL_STATE(6273)] = 207067, - [SMALL_STATE(6274)] = 207071, - [SMALL_STATE(6275)] = 207075, - [SMALL_STATE(6276)] = 207079, - [SMALL_STATE(6277)] = 207083, - [SMALL_STATE(6278)] = 207087, - [SMALL_STATE(6279)] = 207091, - [SMALL_STATE(6280)] = 207095, - [SMALL_STATE(6281)] = 207099, - [SMALL_STATE(6282)] = 207103, - [SMALL_STATE(6283)] = 207107, - [SMALL_STATE(6284)] = 207111, - [SMALL_STATE(6285)] = 207115, - [SMALL_STATE(6286)] = 207119, - [SMALL_STATE(6287)] = 207123, - [SMALL_STATE(6288)] = 207127, - [SMALL_STATE(6289)] = 207131, - [SMALL_STATE(6290)] = 207135, - [SMALL_STATE(6291)] = 207139, - [SMALL_STATE(6292)] = 207143, - [SMALL_STATE(6293)] = 207147, - [SMALL_STATE(6294)] = 207151, - [SMALL_STATE(6295)] = 207155, - [SMALL_STATE(6296)] = 207159, - [SMALL_STATE(6297)] = 207163, - [SMALL_STATE(6298)] = 207167, - [SMALL_STATE(6299)] = 207171, - [SMALL_STATE(6300)] = 207175, - [SMALL_STATE(6301)] = 207179, - [SMALL_STATE(6302)] = 207183, - [SMALL_STATE(6303)] = 207187, - [SMALL_STATE(6304)] = 207191, - [SMALL_STATE(6305)] = 207195, - [SMALL_STATE(6306)] = 207199, - [SMALL_STATE(6307)] = 207203, - [SMALL_STATE(6308)] = 207207, - [SMALL_STATE(6309)] = 207211, - [SMALL_STATE(6310)] = 207215, - [SMALL_STATE(6311)] = 207219, - [SMALL_STATE(6312)] = 207223, - [SMALL_STATE(6313)] = 207227, - [SMALL_STATE(6314)] = 207231, - [SMALL_STATE(6315)] = 207235, - [SMALL_STATE(6316)] = 207239, - [SMALL_STATE(6317)] = 207243, - [SMALL_STATE(6318)] = 207247, - [SMALL_STATE(6319)] = 207251, - [SMALL_STATE(6320)] = 207255, - [SMALL_STATE(6321)] = 207259, - [SMALL_STATE(6322)] = 207263, - [SMALL_STATE(6323)] = 207267, - [SMALL_STATE(6324)] = 207271, - [SMALL_STATE(6325)] = 207275, - [SMALL_STATE(6326)] = 207279, - [SMALL_STATE(6327)] = 207283, - [SMALL_STATE(6328)] = 207287, - [SMALL_STATE(6329)] = 207291, - [SMALL_STATE(6330)] = 207295, - [SMALL_STATE(6331)] = 207299, - [SMALL_STATE(6332)] = 207303, - [SMALL_STATE(6333)] = 207307, - [SMALL_STATE(6334)] = 207311, - [SMALL_STATE(6335)] = 207315, - [SMALL_STATE(6336)] = 207319, - [SMALL_STATE(6337)] = 207323, - [SMALL_STATE(6338)] = 207327, - [SMALL_STATE(6339)] = 207331, - [SMALL_STATE(6340)] = 207335, - [SMALL_STATE(6341)] = 207339, - [SMALL_STATE(6342)] = 207343, - [SMALL_STATE(6343)] = 207347, - [SMALL_STATE(6344)] = 207351, - [SMALL_STATE(6345)] = 207355, - [SMALL_STATE(6346)] = 207359, - [SMALL_STATE(6347)] = 207363, - [SMALL_STATE(6348)] = 207367, - [SMALL_STATE(6349)] = 207371, - [SMALL_STATE(6350)] = 207375, - [SMALL_STATE(6351)] = 207379, - [SMALL_STATE(6352)] = 207383, - [SMALL_STATE(6353)] = 207387, - [SMALL_STATE(6354)] = 207391, - [SMALL_STATE(6355)] = 207395, - [SMALL_STATE(6356)] = 207399, - [SMALL_STATE(6357)] = 207403, - [SMALL_STATE(6358)] = 207407, - [SMALL_STATE(6359)] = 207411, - [SMALL_STATE(6360)] = 207415, - [SMALL_STATE(6361)] = 207419, - [SMALL_STATE(6362)] = 207423, - [SMALL_STATE(6363)] = 207427, - [SMALL_STATE(6364)] = 207431, - [SMALL_STATE(6365)] = 207435, - [SMALL_STATE(6366)] = 207439, - [SMALL_STATE(6367)] = 207443, - [SMALL_STATE(6368)] = 207447, - [SMALL_STATE(6369)] = 207451, - [SMALL_STATE(6370)] = 207455, - [SMALL_STATE(6371)] = 207459, - [SMALL_STATE(6372)] = 207463, - [SMALL_STATE(6373)] = 207467, - [SMALL_STATE(6374)] = 207471, - [SMALL_STATE(6375)] = 207475, - [SMALL_STATE(6376)] = 207479, - [SMALL_STATE(6377)] = 207483, - [SMALL_STATE(6378)] = 207487, - [SMALL_STATE(6379)] = 207491, - [SMALL_STATE(6380)] = 207495, - [SMALL_STATE(6381)] = 207499, - [SMALL_STATE(6382)] = 207503, - [SMALL_STATE(6383)] = 207507, - [SMALL_STATE(6384)] = 207511, - [SMALL_STATE(6385)] = 207515, - [SMALL_STATE(6386)] = 207519, - [SMALL_STATE(6387)] = 207523, - [SMALL_STATE(6388)] = 207527, - [SMALL_STATE(6389)] = 207531, - [SMALL_STATE(6390)] = 207535, - [SMALL_STATE(6391)] = 207539, - [SMALL_STATE(6392)] = 207543, - [SMALL_STATE(6393)] = 207547, - [SMALL_STATE(6394)] = 207551, - [SMALL_STATE(6395)] = 207555, - [SMALL_STATE(6396)] = 207559, - [SMALL_STATE(6397)] = 207563, - [SMALL_STATE(6398)] = 207567, - [SMALL_STATE(6399)] = 207571, - [SMALL_STATE(6400)] = 207575, - [SMALL_STATE(6401)] = 207579, - [SMALL_STATE(6402)] = 207583, - [SMALL_STATE(6403)] = 207587, - [SMALL_STATE(6404)] = 207591, - [SMALL_STATE(6405)] = 207595, - [SMALL_STATE(6406)] = 207599, - [SMALL_STATE(6407)] = 207603, - [SMALL_STATE(6408)] = 207607, - [SMALL_STATE(6409)] = 207611, - [SMALL_STATE(6410)] = 207615, - [SMALL_STATE(6411)] = 207619, - [SMALL_STATE(6412)] = 207623, - [SMALL_STATE(6413)] = 207627, - [SMALL_STATE(6414)] = 207631, - [SMALL_STATE(6415)] = 207635, - [SMALL_STATE(6416)] = 207639, - [SMALL_STATE(6417)] = 207643, - [SMALL_STATE(6418)] = 207647, - [SMALL_STATE(6419)] = 207651, - [SMALL_STATE(6420)] = 207655, - [SMALL_STATE(6421)] = 207659, - [SMALL_STATE(6422)] = 207663, - [SMALL_STATE(6423)] = 207667, - [SMALL_STATE(6424)] = 207671, - [SMALL_STATE(6425)] = 207675, - [SMALL_STATE(6426)] = 207679, - [SMALL_STATE(6427)] = 207683, - [SMALL_STATE(6428)] = 207687, - [SMALL_STATE(6429)] = 207691, - [SMALL_STATE(6430)] = 207695, - [SMALL_STATE(6431)] = 207699, - [SMALL_STATE(6432)] = 207703, - [SMALL_STATE(6433)] = 207707, - [SMALL_STATE(6434)] = 207711, - [SMALL_STATE(6435)] = 207715, - [SMALL_STATE(6436)] = 207719, - [SMALL_STATE(6437)] = 207723, - [SMALL_STATE(6438)] = 207727, - [SMALL_STATE(6439)] = 207731, - [SMALL_STATE(6440)] = 207735, - [SMALL_STATE(6441)] = 207739, - [SMALL_STATE(6442)] = 207743, - [SMALL_STATE(6443)] = 207747, - [SMALL_STATE(6444)] = 207751, - [SMALL_STATE(6445)] = 207755, - [SMALL_STATE(6446)] = 207759, - [SMALL_STATE(6447)] = 207763, - [SMALL_STATE(6448)] = 207767, - [SMALL_STATE(6449)] = 207771, - [SMALL_STATE(6450)] = 207775, - [SMALL_STATE(6451)] = 207779, - [SMALL_STATE(6452)] = 207783, - [SMALL_STATE(6453)] = 207787, - [SMALL_STATE(6454)] = 207791, - [SMALL_STATE(6455)] = 207795, - [SMALL_STATE(6456)] = 207799, - [SMALL_STATE(6457)] = 207803, - [SMALL_STATE(6458)] = 207807, - [SMALL_STATE(6459)] = 207811, - [SMALL_STATE(6460)] = 207815, - [SMALL_STATE(6461)] = 207819, - [SMALL_STATE(6462)] = 207823, - [SMALL_STATE(6463)] = 207827, - [SMALL_STATE(6464)] = 207831, - [SMALL_STATE(6465)] = 207835, - [SMALL_STATE(6466)] = 207839, - [SMALL_STATE(6467)] = 207843, - [SMALL_STATE(6468)] = 207847, - [SMALL_STATE(6469)] = 207851, - [SMALL_STATE(6470)] = 207855, - [SMALL_STATE(6471)] = 207859, - [SMALL_STATE(6472)] = 207863, - [SMALL_STATE(6473)] = 207867, - [SMALL_STATE(6474)] = 207871, - [SMALL_STATE(6475)] = 207875, - [SMALL_STATE(6476)] = 207879, - [SMALL_STATE(6477)] = 207883, - [SMALL_STATE(6478)] = 207887, - [SMALL_STATE(6479)] = 207891, - [SMALL_STATE(6480)] = 207895, - [SMALL_STATE(6481)] = 207899, - [SMALL_STATE(6482)] = 207903, - [SMALL_STATE(6483)] = 207907, - [SMALL_STATE(6484)] = 207911, - [SMALL_STATE(6485)] = 207915, - [SMALL_STATE(6486)] = 207919, - [SMALL_STATE(6487)] = 207923, - [SMALL_STATE(6488)] = 207927, - [SMALL_STATE(6489)] = 207931, - [SMALL_STATE(6490)] = 207935, - [SMALL_STATE(6491)] = 207939, - [SMALL_STATE(6492)] = 207943, - [SMALL_STATE(6493)] = 207947, - [SMALL_STATE(6494)] = 207951, - [SMALL_STATE(6495)] = 207955, - [SMALL_STATE(6496)] = 207959, - [SMALL_STATE(6497)] = 207963, - [SMALL_STATE(6498)] = 207967, - [SMALL_STATE(6499)] = 207971, - [SMALL_STATE(6500)] = 207975, - [SMALL_STATE(6501)] = 207979, - [SMALL_STATE(6502)] = 207983, - [SMALL_STATE(6503)] = 207987, - [SMALL_STATE(6504)] = 207991, - [SMALL_STATE(6505)] = 207995, - [SMALL_STATE(6506)] = 207999, - [SMALL_STATE(6507)] = 208003, - [SMALL_STATE(6508)] = 208007, - [SMALL_STATE(6509)] = 208011, - [SMALL_STATE(6510)] = 208015, - [SMALL_STATE(6511)] = 208019, - [SMALL_STATE(6512)] = 208023, - [SMALL_STATE(6513)] = 208027, - [SMALL_STATE(6514)] = 208031, - [SMALL_STATE(6515)] = 208035, - [SMALL_STATE(6516)] = 208039, - [SMALL_STATE(6517)] = 208043, - [SMALL_STATE(6518)] = 208047, - [SMALL_STATE(6519)] = 208051, - [SMALL_STATE(6520)] = 208055, - [SMALL_STATE(6521)] = 208059, - [SMALL_STATE(6522)] = 208063, - [SMALL_STATE(6523)] = 208067, - [SMALL_STATE(6524)] = 208071, - [SMALL_STATE(6525)] = 208075, - [SMALL_STATE(6526)] = 208079, - [SMALL_STATE(6527)] = 208083, - [SMALL_STATE(6528)] = 208087, - [SMALL_STATE(6529)] = 208091, - [SMALL_STATE(6530)] = 208095, - [SMALL_STATE(6531)] = 208099, - [SMALL_STATE(6532)] = 208103, - [SMALL_STATE(6533)] = 208107, - [SMALL_STATE(6534)] = 208111, - [SMALL_STATE(6535)] = 208115, - [SMALL_STATE(6536)] = 208119, - [SMALL_STATE(6537)] = 208123, - [SMALL_STATE(6538)] = 208127, - [SMALL_STATE(6539)] = 208131, - [SMALL_STATE(6540)] = 208135, - [SMALL_STATE(6541)] = 208139, - [SMALL_STATE(6542)] = 208143, - [SMALL_STATE(6543)] = 208147, - [SMALL_STATE(6544)] = 208151, - [SMALL_STATE(6545)] = 208155, - [SMALL_STATE(6546)] = 208159, - [SMALL_STATE(6547)] = 208163, - [SMALL_STATE(6548)] = 208167, - [SMALL_STATE(6549)] = 208171, - [SMALL_STATE(6550)] = 208175, - [SMALL_STATE(6551)] = 208179, - [SMALL_STATE(6552)] = 208183, - [SMALL_STATE(6553)] = 208187, - [SMALL_STATE(6554)] = 208191, - [SMALL_STATE(6555)] = 208195, - [SMALL_STATE(6556)] = 208199, - [SMALL_STATE(6557)] = 208203, - [SMALL_STATE(6558)] = 208207, - [SMALL_STATE(6559)] = 208211, - [SMALL_STATE(6560)] = 208215, - [SMALL_STATE(6561)] = 208219, - [SMALL_STATE(6562)] = 208223, - [SMALL_STATE(6563)] = 208227, - [SMALL_STATE(6564)] = 208231, - [SMALL_STATE(6565)] = 208235, - [SMALL_STATE(6566)] = 208239, - [SMALL_STATE(6567)] = 208243, - [SMALL_STATE(6568)] = 208247, - [SMALL_STATE(6569)] = 208251, - [SMALL_STATE(6570)] = 208255, - [SMALL_STATE(6571)] = 208259, - [SMALL_STATE(6572)] = 208263, - [SMALL_STATE(6573)] = 208267, - [SMALL_STATE(6574)] = 208271, - [SMALL_STATE(6575)] = 208275, - [SMALL_STATE(6576)] = 208279, - [SMALL_STATE(6577)] = 208283, - [SMALL_STATE(6578)] = 208287, - [SMALL_STATE(6579)] = 208291, - [SMALL_STATE(6580)] = 208295, - [SMALL_STATE(6581)] = 208299, - [SMALL_STATE(6582)] = 208303, - [SMALL_STATE(6583)] = 208307, - [SMALL_STATE(6584)] = 208311, - [SMALL_STATE(6585)] = 208315, - [SMALL_STATE(6586)] = 208319, - [SMALL_STATE(6587)] = 208323, - [SMALL_STATE(6588)] = 208327, - [SMALL_STATE(6589)] = 208331, - [SMALL_STATE(6590)] = 208335, - [SMALL_STATE(6591)] = 208339, - [SMALL_STATE(6592)] = 208343, - [SMALL_STATE(6593)] = 208347, - [SMALL_STATE(6594)] = 208351, - [SMALL_STATE(6595)] = 208355, - [SMALL_STATE(6596)] = 208359, - [SMALL_STATE(6597)] = 208363, - [SMALL_STATE(6598)] = 208367, - [SMALL_STATE(6599)] = 208371, - [SMALL_STATE(6600)] = 208375, - [SMALL_STATE(6601)] = 208379, - [SMALL_STATE(6602)] = 208383, - [SMALL_STATE(6603)] = 208387, - [SMALL_STATE(6604)] = 208391, - [SMALL_STATE(6605)] = 208395, - [SMALL_STATE(6606)] = 208399, - [SMALL_STATE(6607)] = 208403, - [SMALL_STATE(6608)] = 208407, - [SMALL_STATE(6609)] = 208411, - [SMALL_STATE(6610)] = 208415, - [SMALL_STATE(6611)] = 208419, - [SMALL_STATE(6612)] = 208423, - [SMALL_STATE(6613)] = 208427, - [SMALL_STATE(6614)] = 208431, - [SMALL_STATE(6615)] = 208435, - [SMALL_STATE(6616)] = 208439, - [SMALL_STATE(6617)] = 208443, - [SMALL_STATE(6618)] = 208447, - [SMALL_STATE(6619)] = 208451, - [SMALL_STATE(6620)] = 208455, - [SMALL_STATE(6621)] = 208459, - [SMALL_STATE(6622)] = 208463, - [SMALL_STATE(6623)] = 208467, - [SMALL_STATE(6624)] = 208471, - [SMALL_STATE(6625)] = 208475, - [SMALL_STATE(6626)] = 208479, - [SMALL_STATE(6627)] = 208483, - [SMALL_STATE(6628)] = 208487, - [SMALL_STATE(6629)] = 208491, - [SMALL_STATE(6630)] = 208495, - [SMALL_STATE(6631)] = 208499, - [SMALL_STATE(6632)] = 208503, - [SMALL_STATE(6633)] = 208507, - [SMALL_STATE(6634)] = 208511, - [SMALL_STATE(6635)] = 208515, - [SMALL_STATE(6636)] = 208519, - [SMALL_STATE(6637)] = 208523, - [SMALL_STATE(6638)] = 208527, - [SMALL_STATE(6639)] = 208531, - [SMALL_STATE(6640)] = 208535, - [SMALL_STATE(6641)] = 208539, - [SMALL_STATE(6642)] = 208543, - [SMALL_STATE(6643)] = 208547, - [SMALL_STATE(6644)] = 208551, - [SMALL_STATE(6645)] = 208555, - [SMALL_STATE(6646)] = 208559, - [SMALL_STATE(6647)] = 208563, - [SMALL_STATE(6648)] = 208567, - [SMALL_STATE(6649)] = 208571, - [SMALL_STATE(6650)] = 208575, - [SMALL_STATE(6651)] = 208579, - [SMALL_STATE(6652)] = 208583, - [SMALL_STATE(6653)] = 208587, - [SMALL_STATE(6654)] = 208591, - [SMALL_STATE(6655)] = 208595, - [SMALL_STATE(6656)] = 208599, - [SMALL_STATE(6657)] = 208603, - [SMALL_STATE(6658)] = 208607, - [SMALL_STATE(6659)] = 208611, - [SMALL_STATE(6660)] = 208615, - [SMALL_STATE(6661)] = 208619, - [SMALL_STATE(6662)] = 208623, - [SMALL_STATE(6663)] = 208627, - [SMALL_STATE(6664)] = 208631, - [SMALL_STATE(6665)] = 208635, - [SMALL_STATE(6666)] = 208639, - [SMALL_STATE(6667)] = 208643, - [SMALL_STATE(6668)] = 208647, - [SMALL_STATE(6669)] = 208651, - [SMALL_STATE(6670)] = 208655, - [SMALL_STATE(6671)] = 208659, - [SMALL_STATE(6672)] = 208663, - [SMALL_STATE(6673)] = 208667, - [SMALL_STATE(6674)] = 208671, - [SMALL_STATE(6675)] = 208675, - [SMALL_STATE(6676)] = 208679, - [SMALL_STATE(6677)] = 208683, - [SMALL_STATE(6678)] = 208687, - [SMALL_STATE(6679)] = 208691, - [SMALL_STATE(6680)] = 208695, - [SMALL_STATE(6681)] = 208699, - [SMALL_STATE(6682)] = 208703, - [SMALL_STATE(6683)] = 208707, - [SMALL_STATE(6684)] = 208711, - [SMALL_STATE(6685)] = 208715, - [SMALL_STATE(6686)] = 208719, - [SMALL_STATE(6687)] = 208723, - [SMALL_STATE(6688)] = 208727, - [SMALL_STATE(6689)] = 208731, - [SMALL_STATE(6690)] = 208735, - [SMALL_STATE(6691)] = 208739, - [SMALL_STATE(6692)] = 208743, - [SMALL_STATE(6693)] = 208747, - [SMALL_STATE(6694)] = 208751, - [SMALL_STATE(6695)] = 208755, - [SMALL_STATE(6696)] = 208759, - [SMALL_STATE(6697)] = 208763, - [SMALL_STATE(6698)] = 208767, - [SMALL_STATE(6699)] = 208771, - [SMALL_STATE(6700)] = 208775, - [SMALL_STATE(6701)] = 208779, - [SMALL_STATE(6702)] = 208783, - [SMALL_STATE(6703)] = 208787, - [SMALL_STATE(6704)] = 208791, - [SMALL_STATE(6705)] = 208795, - [SMALL_STATE(6706)] = 208799, - [SMALL_STATE(6707)] = 208803, - [SMALL_STATE(6708)] = 208807, - [SMALL_STATE(6709)] = 208811, - [SMALL_STATE(6710)] = 208815, - [SMALL_STATE(6711)] = 208819, - [SMALL_STATE(6712)] = 208823, - [SMALL_STATE(6713)] = 208827, - [SMALL_STATE(6714)] = 208831, - [SMALL_STATE(6715)] = 208835, - [SMALL_STATE(6716)] = 208839, - [SMALL_STATE(6717)] = 208843, - [SMALL_STATE(6718)] = 208847, - [SMALL_STATE(6719)] = 208851, - [SMALL_STATE(6720)] = 208855, - [SMALL_STATE(6721)] = 208859, - [SMALL_STATE(6722)] = 208863, - [SMALL_STATE(6723)] = 208867, - [SMALL_STATE(6724)] = 208871, - [SMALL_STATE(6725)] = 208875, - [SMALL_STATE(6726)] = 208879, - [SMALL_STATE(6727)] = 208883, - [SMALL_STATE(6728)] = 208887, - [SMALL_STATE(6729)] = 208891, - [SMALL_STATE(6730)] = 208895, - [SMALL_STATE(6731)] = 208899, - [SMALL_STATE(6732)] = 208903, - [SMALL_STATE(6733)] = 208907, - [SMALL_STATE(6734)] = 208911, - [SMALL_STATE(6735)] = 208915, - [SMALL_STATE(6736)] = 208919, - [SMALL_STATE(6737)] = 208923, - [SMALL_STATE(6738)] = 208927, - [SMALL_STATE(6739)] = 208931, - [SMALL_STATE(6740)] = 208935, - [SMALL_STATE(6741)] = 208939, - [SMALL_STATE(6742)] = 208943, - [SMALL_STATE(6743)] = 208947, - [SMALL_STATE(6744)] = 208951, - [SMALL_STATE(6745)] = 208955, - [SMALL_STATE(6746)] = 208959, - [SMALL_STATE(6747)] = 208963, - [SMALL_STATE(6748)] = 208967, - [SMALL_STATE(6749)] = 208971, - [SMALL_STATE(6750)] = 208975, - [SMALL_STATE(6751)] = 208979, - [SMALL_STATE(6752)] = 208983, - [SMALL_STATE(6753)] = 208987, - [SMALL_STATE(6754)] = 208991, - [SMALL_STATE(6755)] = 208995, - [SMALL_STATE(6756)] = 208999, - [SMALL_STATE(6757)] = 209003, - [SMALL_STATE(6758)] = 209007, - [SMALL_STATE(6759)] = 209011, - [SMALL_STATE(6760)] = 209015, - [SMALL_STATE(6761)] = 209019, - [SMALL_STATE(6762)] = 209023, - [SMALL_STATE(6763)] = 209027, - [SMALL_STATE(6764)] = 209031, - [SMALL_STATE(6765)] = 209035, - [SMALL_STATE(6766)] = 209039, - [SMALL_STATE(6767)] = 209043, - [SMALL_STATE(6768)] = 209047, - [SMALL_STATE(6769)] = 209051, - [SMALL_STATE(6770)] = 209055, - [SMALL_STATE(6771)] = 209059, - [SMALL_STATE(6772)] = 209063, - [SMALL_STATE(6773)] = 209067, - [SMALL_STATE(6774)] = 209071, - [SMALL_STATE(6775)] = 209075, - [SMALL_STATE(6776)] = 209079, - [SMALL_STATE(6777)] = 209083, - [SMALL_STATE(6778)] = 209087, - [SMALL_STATE(6779)] = 209091, - [SMALL_STATE(6780)] = 209095, - [SMALL_STATE(6781)] = 209099, - [SMALL_STATE(6782)] = 209103, - [SMALL_STATE(6783)] = 209107, - [SMALL_STATE(6784)] = 209111, - [SMALL_STATE(6785)] = 209115, - [SMALL_STATE(6786)] = 209119, - [SMALL_STATE(6787)] = 209123, - [SMALL_STATE(6788)] = 209127, - [SMALL_STATE(6789)] = 209131, - [SMALL_STATE(6790)] = 209135, - [SMALL_STATE(6791)] = 209139, - [SMALL_STATE(6792)] = 209143, - [SMALL_STATE(6793)] = 209147, - [SMALL_STATE(6794)] = 209151, - [SMALL_STATE(6795)] = 209155, - [SMALL_STATE(6796)] = 209159, - [SMALL_STATE(6797)] = 209163, - [SMALL_STATE(6798)] = 209167, - [SMALL_STATE(6799)] = 209171, - [SMALL_STATE(6800)] = 209175, - [SMALL_STATE(6801)] = 209179, - [SMALL_STATE(6802)] = 209183, - [SMALL_STATE(6803)] = 209187, - [SMALL_STATE(6804)] = 209191, - [SMALL_STATE(6805)] = 209195, - [SMALL_STATE(6806)] = 209199, - [SMALL_STATE(6807)] = 209203, - [SMALL_STATE(6808)] = 209207, - [SMALL_STATE(6809)] = 209211, - [SMALL_STATE(6810)] = 209215, - [SMALL_STATE(6811)] = 209219, - [SMALL_STATE(6812)] = 209223, - [SMALL_STATE(6813)] = 209227, - [SMALL_STATE(6814)] = 209231, - [SMALL_STATE(6815)] = 209235, - [SMALL_STATE(6816)] = 209239, - [SMALL_STATE(6817)] = 209243, - [SMALL_STATE(6818)] = 209247, - [SMALL_STATE(6819)] = 209251, - [SMALL_STATE(6820)] = 209255, - [SMALL_STATE(6821)] = 209259, - [SMALL_STATE(6822)] = 209263, - [SMALL_STATE(6823)] = 209267, - [SMALL_STATE(6824)] = 209271, - [SMALL_STATE(6825)] = 209275, - [SMALL_STATE(6826)] = 209279, - [SMALL_STATE(6827)] = 209283, - [SMALL_STATE(6828)] = 209287, - [SMALL_STATE(6829)] = 209291, - [SMALL_STATE(6830)] = 209295, - [SMALL_STATE(6831)] = 209299, - [SMALL_STATE(6832)] = 209303, - [SMALL_STATE(6833)] = 209307, - [SMALL_STATE(6834)] = 209311, - [SMALL_STATE(6835)] = 209315, - [SMALL_STATE(6836)] = 209319, - [SMALL_STATE(6837)] = 209323, - [SMALL_STATE(6838)] = 209327, - [SMALL_STATE(6839)] = 209331, - [SMALL_STATE(6840)] = 209335, - [SMALL_STATE(6841)] = 209339, - [SMALL_STATE(6842)] = 209343, - [SMALL_STATE(6843)] = 209347, - [SMALL_STATE(6844)] = 209351, - [SMALL_STATE(6845)] = 209355, - [SMALL_STATE(6846)] = 209359, - [SMALL_STATE(6847)] = 209363, - [SMALL_STATE(6848)] = 209367, - [SMALL_STATE(6849)] = 209371, - [SMALL_STATE(6850)] = 209375, - [SMALL_STATE(6851)] = 209379, - [SMALL_STATE(6852)] = 209383, - [SMALL_STATE(6853)] = 209387, - [SMALL_STATE(6854)] = 209391, - [SMALL_STATE(6855)] = 209395, - [SMALL_STATE(6856)] = 209399, - [SMALL_STATE(6857)] = 209403, - [SMALL_STATE(6858)] = 209407, - [SMALL_STATE(6859)] = 209411, - [SMALL_STATE(6860)] = 209415, - [SMALL_STATE(6861)] = 209419, - [SMALL_STATE(6862)] = 209423, - [SMALL_STATE(6863)] = 209427, - [SMALL_STATE(6864)] = 209431, - [SMALL_STATE(6865)] = 209435, - [SMALL_STATE(6866)] = 209439, - [SMALL_STATE(6867)] = 209443, - [SMALL_STATE(6868)] = 209447, - [SMALL_STATE(6869)] = 209451, - [SMALL_STATE(6870)] = 209455, - [SMALL_STATE(6871)] = 209459, - [SMALL_STATE(6872)] = 209463, - [SMALL_STATE(6873)] = 209467, - [SMALL_STATE(6874)] = 209471, - [SMALL_STATE(6875)] = 209475, - [SMALL_STATE(6876)] = 209479, - [SMALL_STATE(6877)] = 209483, - [SMALL_STATE(6878)] = 209487, - [SMALL_STATE(6879)] = 209491, - [SMALL_STATE(6880)] = 209495, - [SMALL_STATE(6881)] = 209499, + [SMALL_STATE(1933)] = 77500, + [SMALL_STATE(1934)] = 77559, + [SMALL_STATE(1935)] = 77617, + [SMALL_STATE(1936)] = 77675, + [SMALL_STATE(1937)] = 77733, + [SMALL_STATE(1938)] = 77791, + [SMALL_STATE(1939)] = 77849, + [SMALL_STATE(1940)] = 77907, + [SMALL_STATE(1941)] = 77965, + [SMALL_STATE(1942)] = 78023, + [SMALL_STATE(1943)] = 78081, + [SMALL_STATE(1944)] = 78139, + [SMALL_STATE(1945)] = 78197, + [SMALL_STATE(1946)] = 78255, + [SMALL_STATE(1947)] = 78313, + [SMALL_STATE(1948)] = 78371, + [SMALL_STATE(1949)] = 78429, + [SMALL_STATE(1950)] = 78487, + [SMALL_STATE(1951)] = 78545, + [SMALL_STATE(1952)] = 78603, + [SMALL_STATE(1953)] = 78661, + [SMALL_STATE(1954)] = 78719, + [SMALL_STATE(1955)] = 78777, + [SMALL_STATE(1956)] = 78835, + [SMALL_STATE(1957)] = 78893, + [SMALL_STATE(1958)] = 78951, + [SMALL_STATE(1959)] = 79009, + [SMALL_STATE(1960)] = 79067, + [SMALL_STATE(1961)] = 79125, + [SMALL_STATE(1962)] = 79183, + [SMALL_STATE(1963)] = 79241, + [SMALL_STATE(1964)] = 79299, + [SMALL_STATE(1965)] = 79357, + [SMALL_STATE(1966)] = 79415, + [SMALL_STATE(1967)] = 79473, + [SMALL_STATE(1968)] = 79531, + [SMALL_STATE(1969)] = 79589, + [SMALL_STATE(1970)] = 79647, + [SMALL_STATE(1971)] = 79705, + [SMALL_STATE(1972)] = 79763, + [SMALL_STATE(1973)] = 79821, + [SMALL_STATE(1974)] = 79879, + [SMALL_STATE(1975)] = 79937, + [SMALL_STATE(1976)] = 79995, + [SMALL_STATE(1977)] = 80053, + [SMALL_STATE(1978)] = 80111, + [SMALL_STATE(1979)] = 80169, + [SMALL_STATE(1980)] = 80227, + [SMALL_STATE(1981)] = 80285, + [SMALL_STATE(1982)] = 80343, + [SMALL_STATE(1983)] = 80401, + [SMALL_STATE(1984)] = 80459, + [SMALL_STATE(1985)] = 80517, + [SMALL_STATE(1986)] = 80575, + [SMALL_STATE(1987)] = 80633, + [SMALL_STATE(1988)] = 80691, + [SMALL_STATE(1989)] = 80749, + [SMALL_STATE(1990)] = 80807, + [SMALL_STATE(1991)] = 80865, + [SMALL_STATE(1992)] = 80923, + [SMALL_STATE(1993)] = 80981, + [SMALL_STATE(1994)] = 81039, + [SMALL_STATE(1995)] = 81097, + [SMALL_STATE(1996)] = 81155, + [SMALL_STATE(1997)] = 81213, + [SMALL_STATE(1998)] = 81271, + [SMALL_STATE(1999)] = 81329, + [SMALL_STATE(2000)] = 81387, + [SMALL_STATE(2001)] = 81445, + [SMALL_STATE(2002)] = 81503, + [SMALL_STATE(2003)] = 81561, + [SMALL_STATE(2004)] = 81619, + [SMALL_STATE(2005)] = 81677, + [SMALL_STATE(2006)] = 81735, + [SMALL_STATE(2007)] = 81793, + [SMALL_STATE(2008)] = 81851, + [SMALL_STATE(2009)] = 81909, + [SMALL_STATE(2010)] = 81967, + [SMALL_STATE(2011)] = 82025, + [SMALL_STATE(2012)] = 82083, + [SMALL_STATE(2013)] = 82141, + [SMALL_STATE(2014)] = 82199, + [SMALL_STATE(2015)] = 82257, + [SMALL_STATE(2016)] = 82315, + [SMALL_STATE(2017)] = 82373, + [SMALL_STATE(2018)] = 82431, + [SMALL_STATE(2019)] = 82489, + [SMALL_STATE(2020)] = 82547, + [SMALL_STATE(2021)] = 82605, + [SMALL_STATE(2022)] = 82663, + [SMALL_STATE(2023)] = 82721, + [SMALL_STATE(2024)] = 82779, + [SMALL_STATE(2025)] = 82837, + [SMALL_STATE(2026)] = 82895, + [SMALL_STATE(2027)] = 82953, + [SMALL_STATE(2028)] = 83011, + [SMALL_STATE(2029)] = 83069, + [SMALL_STATE(2030)] = 83127, + [SMALL_STATE(2031)] = 83185, + [SMALL_STATE(2032)] = 83243, + [SMALL_STATE(2033)] = 83301, + [SMALL_STATE(2034)] = 83359, + [SMALL_STATE(2035)] = 83417, + [SMALL_STATE(2036)] = 83475, + [SMALL_STATE(2037)] = 83533, + [SMALL_STATE(2038)] = 83591, + [SMALL_STATE(2039)] = 83649, + [SMALL_STATE(2040)] = 83707, + [SMALL_STATE(2041)] = 83765, + [SMALL_STATE(2042)] = 83823, + [SMALL_STATE(2043)] = 83881, + [SMALL_STATE(2044)] = 83939, + [SMALL_STATE(2045)] = 83997, + [SMALL_STATE(2046)] = 84055, + [SMALL_STATE(2047)] = 84113, + [SMALL_STATE(2048)] = 84171, + [SMALL_STATE(2049)] = 84229, + [SMALL_STATE(2050)] = 84287, + [SMALL_STATE(2051)] = 84345, + [SMALL_STATE(2052)] = 84403, + [SMALL_STATE(2053)] = 84461, + [SMALL_STATE(2054)] = 84519, + [SMALL_STATE(2055)] = 84577, + [SMALL_STATE(2056)] = 84635, + [SMALL_STATE(2057)] = 84693, + [SMALL_STATE(2058)] = 84751, + [SMALL_STATE(2059)] = 84809, + [SMALL_STATE(2060)] = 84867, + [SMALL_STATE(2061)] = 84925, + [SMALL_STATE(2062)] = 84983, + [SMALL_STATE(2063)] = 85041, + [SMALL_STATE(2064)] = 85099, + [SMALL_STATE(2065)] = 85157, + [SMALL_STATE(2066)] = 85215, + [SMALL_STATE(2067)] = 85273, + [SMALL_STATE(2068)] = 85331, + [SMALL_STATE(2069)] = 85389, + [SMALL_STATE(2070)] = 85447, + [SMALL_STATE(2071)] = 85505, + [SMALL_STATE(2072)] = 85563, + [SMALL_STATE(2073)] = 85621, + [SMALL_STATE(2074)] = 85679, + [SMALL_STATE(2075)] = 85737, + [SMALL_STATE(2076)] = 85795, + [SMALL_STATE(2077)] = 85853, + [SMALL_STATE(2078)] = 85911, + [SMALL_STATE(2079)] = 85969, + [SMALL_STATE(2080)] = 86027, + [SMALL_STATE(2081)] = 86085, + [SMALL_STATE(2082)] = 86143, + [SMALL_STATE(2083)] = 86201, + [SMALL_STATE(2084)] = 86259, + [SMALL_STATE(2085)] = 86317, + [SMALL_STATE(2086)] = 86375, + [SMALL_STATE(2087)] = 86433, + [SMALL_STATE(2088)] = 86491, + [SMALL_STATE(2089)] = 86549, + [SMALL_STATE(2090)] = 86607, + [SMALL_STATE(2091)] = 86665, + [SMALL_STATE(2092)] = 86723, + [SMALL_STATE(2093)] = 86781, + [SMALL_STATE(2094)] = 86839, + [SMALL_STATE(2095)] = 86897, + [SMALL_STATE(2096)] = 86955, + [SMALL_STATE(2097)] = 87013, + [SMALL_STATE(2098)] = 87071, + [SMALL_STATE(2099)] = 87129, + [SMALL_STATE(2100)] = 87187, + [SMALL_STATE(2101)] = 87245, + [SMALL_STATE(2102)] = 87303, + [SMALL_STATE(2103)] = 87361, + [SMALL_STATE(2104)] = 87419, + [SMALL_STATE(2105)] = 87477, + [SMALL_STATE(2106)] = 87535, + [SMALL_STATE(2107)] = 87593, + [SMALL_STATE(2108)] = 87651, + [SMALL_STATE(2109)] = 87709, + [SMALL_STATE(2110)] = 87767, + [SMALL_STATE(2111)] = 87825, + [SMALL_STATE(2112)] = 87883, + [SMALL_STATE(2113)] = 87941, + [SMALL_STATE(2114)] = 87999, + [SMALL_STATE(2115)] = 88057, + [SMALL_STATE(2116)] = 88115, + [SMALL_STATE(2117)] = 88173, + [SMALL_STATE(2118)] = 88231, + [SMALL_STATE(2119)] = 88289, + [SMALL_STATE(2120)] = 88347, + [SMALL_STATE(2121)] = 88405, + [SMALL_STATE(2122)] = 88463, + [SMALL_STATE(2123)] = 88521, + [SMALL_STATE(2124)] = 88579, + [SMALL_STATE(2125)] = 88637, + [SMALL_STATE(2126)] = 88695, + [SMALL_STATE(2127)] = 88753, + [SMALL_STATE(2128)] = 88811, + [SMALL_STATE(2129)] = 88869, + [SMALL_STATE(2130)] = 88927, + [SMALL_STATE(2131)] = 88985, + [SMALL_STATE(2132)] = 89043, + [SMALL_STATE(2133)] = 89101, + [SMALL_STATE(2134)] = 89159, + [SMALL_STATE(2135)] = 89217, + [SMALL_STATE(2136)] = 89275, + [SMALL_STATE(2137)] = 89333, + [SMALL_STATE(2138)] = 89391, + [SMALL_STATE(2139)] = 89449, + [SMALL_STATE(2140)] = 89507, + [SMALL_STATE(2141)] = 89565, + [SMALL_STATE(2142)] = 89623, + [SMALL_STATE(2143)] = 89681, + [SMALL_STATE(2144)] = 89739, + [SMALL_STATE(2145)] = 89797, + [SMALL_STATE(2146)] = 89855, + [SMALL_STATE(2147)] = 89913, + [SMALL_STATE(2148)] = 89971, + [SMALL_STATE(2149)] = 90029, + [SMALL_STATE(2150)] = 90087, + [SMALL_STATE(2151)] = 90145, + [SMALL_STATE(2152)] = 90203, + [SMALL_STATE(2153)] = 90261, + [SMALL_STATE(2154)] = 90319, + [SMALL_STATE(2155)] = 90377, + [SMALL_STATE(2156)] = 90435, + [SMALL_STATE(2157)] = 90493, + [SMALL_STATE(2158)] = 90551, + [SMALL_STATE(2159)] = 90609, + [SMALL_STATE(2160)] = 90667, + [SMALL_STATE(2161)] = 90725, + [SMALL_STATE(2162)] = 90783, + [SMALL_STATE(2163)] = 90841, + [SMALL_STATE(2164)] = 90899, + [SMALL_STATE(2165)] = 90957, + [SMALL_STATE(2166)] = 91015, + [SMALL_STATE(2167)] = 91073, + [SMALL_STATE(2168)] = 91131, + [SMALL_STATE(2169)] = 91189, + [SMALL_STATE(2170)] = 91247, + [SMALL_STATE(2171)] = 91305, + [SMALL_STATE(2172)] = 91363, + [SMALL_STATE(2173)] = 91421, + [SMALL_STATE(2174)] = 91479, + [SMALL_STATE(2175)] = 91537, + [SMALL_STATE(2176)] = 91595, + [SMALL_STATE(2177)] = 91653, + [SMALL_STATE(2178)] = 91711, + [SMALL_STATE(2179)] = 91769, + [SMALL_STATE(2180)] = 91827, + [SMALL_STATE(2181)] = 91885, + [SMALL_STATE(2182)] = 91943, + [SMALL_STATE(2183)] = 92001, + [SMALL_STATE(2184)] = 92059, + [SMALL_STATE(2185)] = 92117, + [SMALL_STATE(2186)] = 92175, + [SMALL_STATE(2187)] = 92233, + [SMALL_STATE(2188)] = 92291, + [SMALL_STATE(2189)] = 92349, + [SMALL_STATE(2190)] = 92407, + [SMALL_STATE(2191)] = 92465, + [SMALL_STATE(2192)] = 92523, + [SMALL_STATE(2193)] = 92581, + [SMALL_STATE(2194)] = 92639, + [SMALL_STATE(2195)] = 92697, + [SMALL_STATE(2196)] = 92755, + [SMALL_STATE(2197)] = 92813, + [SMALL_STATE(2198)] = 92871, + [SMALL_STATE(2199)] = 92929, + [SMALL_STATE(2200)] = 92987, + [SMALL_STATE(2201)] = 93045, + [SMALL_STATE(2202)] = 93103, + [SMALL_STATE(2203)] = 93161, + [SMALL_STATE(2204)] = 93219, + [SMALL_STATE(2205)] = 93277, + [SMALL_STATE(2206)] = 93335, + [SMALL_STATE(2207)] = 93393, + [SMALL_STATE(2208)] = 93451, + [SMALL_STATE(2209)] = 93509, + [SMALL_STATE(2210)] = 93567, + [SMALL_STATE(2211)] = 93625, + [SMALL_STATE(2212)] = 93683, + [SMALL_STATE(2213)] = 93741, + [SMALL_STATE(2214)] = 93799, + [SMALL_STATE(2215)] = 93857, + [SMALL_STATE(2216)] = 93915, + [SMALL_STATE(2217)] = 93973, + [SMALL_STATE(2218)] = 94031, + [SMALL_STATE(2219)] = 94089, + [SMALL_STATE(2220)] = 94147, + [SMALL_STATE(2221)] = 94205, + [SMALL_STATE(2222)] = 94263, + [SMALL_STATE(2223)] = 94321, + [SMALL_STATE(2224)] = 94379, + [SMALL_STATE(2225)] = 94437, + [SMALL_STATE(2226)] = 94495, + [SMALL_STATE(2227)] = 94553, + [SMALL_STATE(2228)] = 94611, + [SMALL_STATE(2229)] = 94669, + [SMALL_STATE(2230)] = 94727, + [SMALL_STATE(2231)] = 94785, + [SMALL_STATE(2232)] = 94843, + [SMALL_STATE(2233)] = 94901, + [SMALL_STATE(2234)] = 94959, + [SMALL_STATE(2235)] = 95017, + [SMALL_STATE(2236)] = 95075, + [SMALL_STATE(2237)] = 95133, + [SMALL_STATE(2238)] = 95191, + [SMALL_STATE(2239)] = 95249, + [SMALL_STATE(2240)] = 95307, + [SMALL_STATE(2241)] = 95365, + [SMALL_STATE(2242)] = 95423, + [SMALL_STATE(2243)] = 95481, + [SMALL_STATE(2244)] = 95539, + [SMALL_STATE(2245)] = 95597, + [SMALL_STATE(2246)] = 95655, + [SMALL_STATE(2247)] = 95713, + [SMALL_STATE(2248)] = 95771, + [SMALL_STATE(2249)] = 95829, + [SMALL_STATE(2250)] = 95887, + [SMALL_STATE(2251)] = 95945, + [SMALL_STATE(2252)] = 96003, + [SMALL_STATE(2253)] = 96061, + [SMALL_STATE(2254)] = 96119, + [SMALL_STATE(2255)] = 96177, + [SMALL_STATE(2256)] = 96235, + [SMALL_STATE(2257)] = 96293, + [SMALL_STATE(2258)] = 96351, + [SMALL_STATE(2259)] = 96409, + [SMALL_STATE(2260)] = 96467, + [SMALL_STATE(2261)] = 96525, + [SMALL_STATE(2262)] = 96583, + [SMALL_STATE(2263)] = 96641, + [SMALL_STATE(2264)] = 96699, + [SMALL_STATE(2265)] = 96757, + [SMALL_STATE(2266)] = 96815, + [SMALL_STATE(2267)] = 96873, + [SMALL_STATE(2268)] = 96931, + [SMALL_STATE(2269)] = 96989, + [SMALL_STATE(2270)] = 97047, + [SMALL_STATE(2271)] = 97105, + [SMALL_STATE(2272)] = 97163, + [SMALL_STATE(2273)] = 97221, + [SMALL_STATE(2274)] = 97279, + [SMALL_STATE(2275)] = 97337, + [SMALL_STATE(2276)] = 97395, + [SMALL_STATE(2277)] = 97453, + [SMALL_STATE(2278)] = 97511, + [SMALL_STATE(2279)] = 97569, + [SMALL_STATE(2280)] = 97627, + [SMALL_STATE(2281)] = 97685, + [SMALL_STATE(2282)] = 97743, + [SMALL_STATE(2283)] = 97801, + [SMALL_STATE(2284)] = 97859, + [SMALL_STATE(2285)] = 97917, + [SMALL_STATE(2286)] = 97975, + [SMALL_STATE(2287)] = 98033, + [SMALL_STATE(2288)] = 98091, + [SMALL_STATE(2289)] = 98149, + [SMALL_STATE(2290)] = 98207, + [SMALL_STATE(2291)] = 98265, + [SMALL_STATE(2292)] = 98323, + [SMALL_STATE(2293)] = 98381, + [SMALL_STATE(2294)] = 98439, + [SMALL_STATE(2295)] = 98497, + [SMALL_STATE(2296)] = 98555, + [SMALL_STATE(2297)] = 98613, + [SMALL_STATE(2298)] = 98671, + [SMALL_STATE(2299)] = 98729, + [SMALL_STATE(2300)] = 98787, + [SMALL_STATE(2301)] = 98845, + [SMALL_STATE(2302)] = 98903, + [SMALL_STATE(2303)] = 98961, + [SMALL_STATE(2304)] = 99019, + [SMALL_STATE(2305)] = 99077, + [SMALL_STATE(2306)] = 99135, + [SMALL_STATE(2307)] = 99193, + [SMALL_STATE(2308)] = 99251, + [SMALL_STATE(2309)] = 99309, + [SMALL_STATE(2310)] = 99367, + [SMALL_STATE(2311)] = 99425, + [SMALL_STATE(2312)] = 99483, + [SMALL_STATE(2313)] = 99541, + [SMALL_STATE(2314)] = 99599, + [SMALL_STATE(2315)] = 99657, + [SMALL_STATE(2316)] = 99715, + [SMALL_STATE(2317)] = 99773, + [SMALL_STATE(2318)] = 99831, + [SMALL_STATE(2319)] = 99889, + [SMALL_STATE(2320)] = 99947, + [SMALL_STATE(2321)] = 100005, + [SMALL_STATE(2322)] = 100063, + [SMALL_STATE(2323)] = 100121, + [SMALL_STATE(2324)] = 100179, + [SMALL_STATE(2325)] = 100237, + [SMALL_STATE(2326)] = 100295, + [SMALL_STATE(2327)] = 100353, + [SMALL_STATE(2328)] = 100411, + [SMALL_STATE(2329)] = 100469, + [SMALL_STATE(2330)] = 100527, + [SMALL_STATE(2331)] = 100585, + [SMALL_STATE(2332)] = 100643, + [SMALL_STATE(2333)] = 100701, + [SMALL_STATE(2334)] = 100759, + [SMALL_STATE(2335)] = 100817, + [SMALL_STATE(2336)] = 100875, + [SMALL_STATE(2337)] = 100933, + [SMALL_STATE(2338)] = 100991, + [SMALL_STATE(2339)] = 101049, + [SMALL_STATE(2340)] = 101107, + [SMALL_STATE(2341)] = 101165, + [SMALL_STATE(2342)] = 101223, + [SMALL_STATE(2343)] = 101281, + [SMALL_STATE(2344)] = 101339, + [SMALL_STATE(2345)] = 101397, + [SMALL_STATE(2346)] = 101455, + [SMALL_STATE(2347)] = 101513, + [SMALL_STATE(2348)] = 101571, + [SMALL_STATE(2349)] = 101629, + [SMALL_STATE(2350)] = 101687, + [SMALL_STATE(2351)] = 101745, + [SMALL_STATE(2352)] = 101803, + [SMALL_STATE(2353)] = 101861, + [SMALL_STATE(2354)] = 101919, + [SMALL_STATE(2355)] = 101977, + [SMALL_STATE(2356)] = 102035, + [SMALL_STATE(2357)] = 102093, + [SMALL_STATE(2358)] = 102151, + [SMALL_STATE(2359)] = 102209, + [SMALL_STATE(2360)] = 102267, + [SMALL_STATE(2361)] = 102325, + [SMALL_STATE(2362)] = 102383, + [SMALL_STATE(2363)] = 102441, + [SMALL_STATE(2364)] = 102499, + [SMALL_STATE(2365)] = 102557, + [SMALL_STATE(2366)] = 102615, + [SMALL_STATE(2367)] = 102673, + [SMALL_STATE(2368)] = 102731, + [SMALL_STATE(2369)] = 102789, + [SMALL_STATE(2370)] = 102847, + [SMALL_STATE(2371)] = 102905, + [SMALL_STATE(2372)] = 102963, + [SMALL_STATE(2373)] = 103021, + [SMALL_STATE(2374)] = 103079, + [SMALL_STATE(2375)] = 103137, + [SMALL_STATE(2376)] = 103195, + [SMALL_STATE(2377)] = 103253, + [SMALL_STATE(2378)] = 103311, + [SMALL_STATE(2379)] = 103369, + [SMALL_STATE(2380)] = 103427, + [SMALL_STATE(2381)] = 103485, + [SMALL_STATE(2382)] = 103543, + [SMALL_STATE(2383)] = 103601, + [SMALL_STATE(2384)] = 103659, + [SMALL_STATE(2385)] = 103717, + [SMALL_STATE(2386)] = 103775, + [SMALL_STATE(2387)] = 103833, + [SMALL_STATE(2388)] = 103891, + [SMALL_STATE(2389)] = 103949, + [SMALL_STATE(2390)] = 104007, + [SMALL_STATE(2391)] = 104065, + [SMALL_STATE(2392)] = 104123, + [SMALL_STATE(2393)] = 104181, + [SMALL_STATE(2394)] = 104239, + [SMALL_STATE(2395)] = 104297, + [SMALL_STATE(2396)] = 104355, + [SMALL_STATE(2397)] = 104413, + [SMALL_STATE(2398)] = 104471, + [SMALL_STATE(2399)] = 104529, + [SMALL_STATE(2400)] = 104587, + [SMALL_STATE(2401)] = 104645, + [SMALL_STATE(2402)] = 104703, + [SMALL_STATE(2403)] = 104761, + [SMALL_STATE(2404)] = 104819, + [SMALL_STATE(2405)] = 104877, + [SMALL_STATE(2406)] = 104935, + [SMALL_STATE(2407)] = 104993, + [SMALL_STATE(2408)] = 105051, + [SMALL_STATE(2409)] = 105109, + [SMALL_STATE(2410)] = 105167, + [SMALL_STATE(2411)] = 105225, + [SMALL_STATE(2412)] = 105283, + [SMALL_STATE(2413)] = 105341, + [SMALL_STATE(2414)] = 105399, + [SMALL_STATE(2415)] = 105457, + [SMALL_STATE(2416)] = 105515, + [SMALL_STATE(2417)] = 105573, + [SMALL_STATE(2418)] = 105631, + [SMALL_STATE(2419)] = 105689, + [SMALL_STATE(2420)] = 105747, + [SMALL_STATE(2421)] = 105805, + [SMALL_STATE(2422)] = 105863, + [SMALL_STATE(2423)] = 105921, + [SMALL_STATE(2424)] = 105979, + [SMALL_STATE(2425)] = 106037, + [SMALL_STATE(2426)] = 106095, + [SMALL_STATE(2427)] = 106153, + [SMALL_STATE(2428)] = 106211, + [SMALL_STATE(2429)] = 106269, + [SMALL_STATE(2430)] = 106327, + [SMALL_STATE(2431)] = 106385, + [SMALL_STATE(2432)] = 106443, + [SMALL_STATE(2433)] = 106501, + [SMALL_STATE(2434)] = 106559, + [SMALL_STATE(2435)] = 106617, + [SMALL_STATE(2436)] = 106675, + [SMALL_STATE(2437)] = 106733, + [SMALL_STATE(2438)] = 106791, + [SMALL_STATE(2439)] = 106849, + [SMALL_STATE(2440)] = 106907, + [SMALL_STATE(2441)] = 106965, + [SMALL_STATE(2442)] = 107023, + [SMALL_STATE(2443)] = 107081, + [SMALL_STATE(2444)] = 107139, + [SMALL_STATE(2445)] = 107197, + [SMALL_STATE(2446)] = 107255, + [SMALL_STATE(2447)] = 107313, + [SMALL_STATE(2448)] = 107371, + [SMALL_STATE(2449)] = 107429, + [SMALL_STATE(2450)] = 107487, + [SMALL_STATE(2451)] = 107545, + [SMALL_STATE(2452)] = 107603, + [SMALL_STATE(2453)] = 107661, + [SMALL_STATE(2454)] = 107719, + [SMALL_STATE(2455)] = 107777, + [SMALL_STATE(2456)] = 107835, + [SMALL_STATE(2457)] = 107893, + [SMALL_STATE(2458)] = 107951, + [SMALL_STATE(2459)] = 108009, + [SMALL_STATE(2460)] = 108067, + [SMALL_STATE(2461)] = 108125, + [SMALL_STATE(2462)] = 108183, + [SMALL_STATE(2463)] = 108241, + [SMALL_STATE(2464)] = 108299, + [SMALL_STATE(2465)] = 108357, + [SMALL_STATE(2466)] = 108415, + [SMALL_STATE(2467)] = 108473, + [SMALL_STATE(2468)] = 108531, + [SMALL_STATE(2469)] = 108589, + [SMALL_STATE(2470)] = 108647, + [SMALL_STATE(2471)] = 108705, + [SMALL_STATE(2472)] = 108763, + [SMALL_STATE(2473)] = 108821, + [SMALL_STATE(2474)] = 108879, + [SMALL_STATE(2475)] = 108937, + [SMALL_STATE(2476)] = 108995, + [SMALL_STATE(2477)] = 109053, + [SMALL_STATE(2478)] = 109111, + [SMALL_STATE(2479)] = 109169, + [SMALL_STATE(2480)] = 109227, + [SMALL_STATE(2481)] = 109285, + [SMALL_STATE(2482)] = 109343, + [SMALL_STATE(2483)] = 109401, + [SMALL_STATE(2484)] = 109459, + [SMALL_STATE(2485)] = 109517, + [SMALL_STATE(2486)] = 109575, + [SMALL_STATE(2487)] = 109633, + [SMALL_STATE(2488)] = 109691, + [SMALL_STATE(2489)] = 109749, + [SMALL_STATE(2490)] = 109807, + [SMALL_STATE(2491)] = 109865, + [SMALL_STATE(2492)] = 109923, + [SMALL_STATE(2493)] = 109981, + [SMALL_STATE(2494)] = 110039, + [SMALL_STATE(2495)] = 110097, + [SMALL_STATE(2496)] = 110155, + [SMALL_STATE(2497)] = 110213, + [SMALL_STATE(2498)] = 110271, + [SMALL_STATE(2499)] = 110329, + [SMALL_STATE(2500)] = 110387, + [SMALL_STATE(2501)] = 110445, + [SMALL_STATE(2502)] = 110503, + [SMALL_STATE(2503)] = 110561, + [SMALL_STATE(2504)] = 110619, + [SMALL_STATE(2505)] = 110677, + [SMALL_STATE(2506)] = 110735, + [SMALL_STATE(2507)] = 110793, + [SMALL_STATE(2508)] = 110851, + [SMALL_STATE(2509)] = 110909, + [SMALL_STATE(2510)] = 110967, + [SMALL_STATE(2511)] = 111025, + [SMALL_STATE(2512)] = 111083, + [SMALL_STATE(2513)] = 111141, + [SMALL_STATE(2514)] = 111199, + [SMALL_STATE(2515)] = 111257, + [SMALL_STATE(2516)] = 111315, + [SMALL_STATE(2517)] = 111373, + [SMALL_STATE(2518)] = 111431, + [SMALL_STATE(2519)] = 111489, + [SMALL_STATE(2520)] = 111547, + [SMALL_STATE(2521)] = 111605, + [SMALL_STATE(2522)] = 111663, + [SMALL_STATE(2523)] = 111721, + [SMALL_STATE(2524)] = 111779, + [SMALL_STATE(2525)] = 111837, + [SMALL_STATE(2526)] = 111895, + [SMALL_STATE(2527)] = 111953, + [SMALL_STATE(2528)] = 112011, + [SMALL_STATE(2529)] = 112069, + [SMALL_STATE(2530)] = 112127, + [SMALL_STATE(2531)] = 112185, + [SMALL_STATE(2532)] = 112243, + [SMALL_STATE(2533)] = 112301, + [SMALL_STATE(2534)] = 112359, + [SMALL_STATE(2535)] = 112417, + [SMALL_STATE(2536)] = 112475, + [SMALL_STATE(2537)] = 112533, + [SMALL_STATE(2538)] = 112591, + [SMALL_STATE(2539)] = 112649, + [SMALL_STATE(2540)] = 112707, + [SMALL_STATE(2541)] = 112765, + [SMALL_STATE(2542)] = 112823, + [SMALL_STATE(2543)] = 112881, + [SMALL_STATE(2544)] = 112939, + [SMALL_STATE(2545)] = 112997, + [SMALL_STATE(2546)] = 113055, + [SMALL_STATE(2547)] = 113113, + [SMALL_STATE(2548)] = 113171, + [SMALL_STATE(2549)] = 113229, + [SMALL_STATE(2550)] = 113287, + [SMALL_STATE(2551)] = 113345, + [SMALL_STATE(2552)] = 113403, + [SMALL_STATE(2553)] = 113461, + [SMALL_STATE(2554)] = 113519, + [SMALL_STATE(2555)] = 113577, + [SMALL_STATE(2556)] = 113635, + [SMALL_STATE(2557)] = 113693, + [SMALL_STATE(2558)] = 113751, + [SMALL_STATE(2559)] = 113809, + [SMALL_STATE(2560)] = 113867, + [SMALL_STATE(2561)] = 113925, + [SMALL_STATE(2562)] = 113983, + [SMALL_STATE(2563)] = 114041, + [SMALL_STATE(2564)] = 114099, + [SMALL_STATE(2565)] = 114157, + [SMALL_STATE(2566)] = 114215, + [SMALL_STATE(2567)] = 114273, + [SMALL_STATE(2568)] = 114331, + [SMALL_STATE(2569)] = 114389, + [SMALL_STATE(2570)] = 114447, + [SMALL_STATE(2571)] = 114505, + [SMALL_STATE(2572)] = 114563, + [SMALL_STATE(2573)] = 114621, + [SMALL_STATE(2574)] = 114679, + [SMALL_STATE(2575)] = 114737, + [SMALL_STATE(2576)] = 114795, + [SMALL_STATE(2577)] = 114853, + [SMALL_STATE(2578)] = 114911, + [SMALL_STATE(2579)] = 114969, + [SMALL_STATE(2580)] = 115027, + [SMALL_STATE(2581)] = 115085, + [SMALL_STATE(2582)] = 115143, + [SMALL_STATE(2583)] = 115201, + [SMALL_STATE(2584)] = 115259, + [SMALL_STATE(2585)] = 115317, + [SMALL_STATE(2586)] = 115375, + [SMALL_STATE(2587)] = 115433, + [SMALL_STATE(2588)] = 115491, + [SMALL_STATE(2589)] = 115549, + [SMALL_STATE(2590)] = 115607, + [SMALL_STATE(2591)] = 115665, + [SMALL_STATE(2592)] = 115723, + [SMALL_STATE(2593)] = 115781, + [SMALL_STATE(2594)] = 115839, + [SMALL_STATE(2595)] = 115897, + [SMALL_STATE(2596)] = 115955, + [SMALL_STATE(2597)] = 116013, + [SMALL_STATE(2598)] = 116071, + [SMALL_STATE(2599)] = 116129, + [SMALL_STATE(2600)] = 116187, + [SMALL_STATE(2601)] = 116245, + [SMALL_STATE(2602)] = 116303, + [SMALL_STATE(2603)] = 116361, + [SMALL_STATE(2604)] = 116419, + [SMALL_STATE(2605)] = 116477, + [SMALL_STATE(2606)] = 116535, + [SMALL_STATE(2607)] = 116593, + [SMALL_STATE(2608)] = 116651, + [SMALL_STATE(2609)] = 116709, + [SMALL_STATE(2610)] = 116767, + [SMALL_STATE(2611)] = 116825, + [SMALL_STATE(2612)] = 116883, + [SMALL_STATE(2613)] = 116941, + [SMALL_STATE(2614)] = 116999, + [SMALL_STATE(2615)] = 117057, + [SMALL_STATE(2616)] = 117115, + [SMALL_STATE(2617)] = 117173, + [SMALL_STATE(2618)] = 117231, + [SMALL_STATE(2619)] = 117289, + [SMALL_STATE(2620)] = 117347, + [SMALL_STATE(2621)] = 117405, + [SMALL_STATE(2622)] = 117463, + [SMALL_STATE(2623)] = 117521, + [SMALL_STATE(2624)] = 117579, + [SMALL_STATE(2625)] = 117637, + [SMALL_STATE(2626)] = 117695, + [SMALL_STATE(2627)] = 117753, + [SMALL_STATE(2628)] = 117811, + [SMALL_STATE(2629)] = 117869, + [SMALL_STATE(2630)] = 117927, + [SMALL_STATE(2631)] = 117985, + [SMALL_STATE(2632)] = 118043, + [SMALL_STATE(2633)] = 118101, + [SMALL_STATE(2634)] = 118159, + [SMALL_STATE(2635)] = 118217, + [SMALL_STATE(2636)] = 118275, + [SMALL_STATE(2637)] = 118333, + [SMALL_STATE(2638)] = 118391, + [SMALL_STATE(2639)] = 118449, + [SMALL_STATE(2640)] = 118507, + [SMALL_STATE(2641)] = 118565, + [SMALL_STATE(2642)] = 118623, + [SMALL_STATE(2643)] = 118681, + [SMALL_STATE(2644)] = 118739, + [SMALL_STATE(2645)] = 118797, + [SMALL_STATE(2646)] = 118855, + [SMALL_STATE(2647)] = 118913, + [SMALL_STATE(2648)] = 118971, + [SMALL_STATE(2649)] = 119029, + [SMALL_STATE(2650)] = 119087, + [SMALL_STATE(2651)] = 119145, + [SMALL_STATE(2652)] = 119203, + [SMALL_STATE(2653)] = 119261, + [SMALL_STATE(2654)] = 119319, + [SMALL_STATE(2655)] = 119377, + [SMALL_STATE(2656)] = 119435, + [SMALL_STATE(2657)] = 119493, + [SMALL_STATE(2658)] = 119551, + [SMALL_STATE(2659)] = 119609, + [SMALL_STATE(2660)] = 119667, + [SMALL_STATE(2661)] = 119725, + [SMALL_STATE(2662)] = 119783, + [SMALL_STATE(2663)] = 119841, + [SMALL_STATE(2664)] = 119899, + [SMALL_STATE(2665)] = 119957, + [SMALL_STATE(2666)] = 120015, + [SMALL_STATE(2667)] = 120073, + [SMALL_STATE(2668)] = 120131, + [SMALL_STATE(2669)] = 120189, + [SMALL_STATE(2670)] = 120247, + [SMALL_STATE(2671)] = 120305, + [SMALL_STATE(2672)] = 120363, + [SMALL_STATE(2673)] = 120421, + [SMALL_STATE(2674)] = 120479, + [SMALL_STATE(2675)] = 120537, + [SMALL_STATE(2676)] = 120595, + [SMALL_STATE(2677)] = 120653, + [SMALL_STATE(2678)] = 120711, + [SMALL_STATE(2679)] = 120769, + [SMALL_STATE(2680)] = 120827, + [SMALL_STATE(2681)] = 120885, + [SMALL_STATE(2682)] = 120943, + [SMALL_STATE(2683)] = 121001, + [SMALL_STATE(2684)] = 121059, + [SMALL_STATE(2685)] = 121117, + [SMALL_STATE(2686)] = 121175, + [SMALL_STATE(2687)] = 121233, + [SMALL_STATE(2688)] = 121291, + [SMALL_STATE(2689)] = 121349, + [SMALL_STATE(2690)] = 121407, + [SMALL_STATE(2691)] = 121465, + [SMALL_STATE(2692)] = 121523, + [SMALL_STATE(2693)] = 121581, + [SMALL_STATE(2694)] = 121639, + [SMALL_STATE(2695)] = 121697, + [SMALL_STATE(2696)] = 121755, + [SMALL_STATE(2697)] = 121813, + [SMALL_STATE(2698)] = 121871, + [SMALL_STATE(2699)] = 121929, + [SMALL_STATE(2700)] = 121987, + [SMALL_STATE(2701)] = 122045, + [SMALL_STATE(2702)] = 122103, + [SMALL_STATE(2703)] = 122161, + [SMALL_STATE(2704)] = 122219, + [SMALL_STATE(2705)] = 122277, + [SMALL_STATE(2706)] = 122335, + [SMALL_STATE(2707)] = 122393, + [SMALL_STATE(2708)] = 122451, + [SMALL_STATE(2709)] = 122509, + [SMALL_STATE(2710)] = 122567, + [SMALL_STATE(2711)] = 122625, + [SMALL_STATE(2712)] = 122683, + [SMALL_STATE(2713)] = 122741, + [SMALL_STATE(2714)] = 122799, + [SMALL_STATE(2715)] = 122857, + [SMALL_STATE(2716)] = 122915, + [SMALL_STATE(2717)] = 122973, + [SMALL_STATE(2718)] = 123031, + [SMALL_STATE(2719)] = 123089, + [SMALL_STATE(2720)] = 123147, + [SMALL_STATE(2721)] = 123205, + [SMALL_STATE(2722)] = 123263, + [SMALL_STATE(2723)] = 123321, + [SMALL_STATE(2724)] = 123379, + [SMALL_STATE(2725)] = 123437, + [SMALL_STATE(2726)] = 123495, + [SMALL_STATE(2727)] = 123553, + [SMALL_STATE(2728)] = 123611, + [SMALL_STATE(2729)] = 123669, + [SMALL_STATE(2730)] = 123727, + [SMALL_STATE(2731)] = 123785, + [SMALL_STATE(2732)] = 123843, + [SMALL_STATE(2733)] = 123901, + [SMALL_STATE(2734)] = 123959, + [SMALL_STATE(2735)] = 124017, + [SMALL_STATE(2736)] = 124075, + [SMALL_STATE(2737)] = 124133, + [SMALL_STATE(2738)] = 124191, + [SMALL_STATE(2739)] = 124249, + [SMALL_STATE(2740)] = 124307, + [SMALL_STATE(2741)] = 124365, + [SMALL_STATE(2742)] = 124423, + [SMALL_STATE(2743)] = 124481, + [SMALL_STATE(2744)] = 124539, + [SMALL_STATE(2745)] = 124597, + [SMALL_STATE(2746)] = 124655, + [SMALL_STATE(2747)] = 124713, + [SMALL_STATE(2748)] = 124771, + [SMALL_STATE(2749)] = 124829, + [SMALL_STATE(2750)] = 124887, + [SMALL_STATE(2751)] = 124945, + [SMALL_STATE(2752)] = 125003, + [SMALL_STATE(2753)] = 125061, + [SMALL_STATE(2754)] = 125119, + [SMALL_STATE(2755)] = 125177, + [SMALL_STATE(2756)] = 125235, + [SMALL_STATE(2757)] = 125293, + [SMALL_STATE(2758)] = 125351, + [SMALL_STATE(2759)] = 125409, + [SMALL_STATE(2760)] = 125467, + [SMALL_STATE(2761)] = 125525, + [SMALL_STATE(2762)] = 125583, + [SMALL_STATE(2763)] = 125641, + [SMALL_STATE(2764)] = 125699, + [SMALL_STATE(2765)] = 125757, + [SMALL_STATE(2766)] = 125815, + [SMALL_STATE(2767)] = 125873, + [SMALL_STATE(2768)] = 125931, + [SMALL_STATE(2769)] = 125989, + [SMALL_STATE(2770)] = 126047, + [SMALL_STATE(2771)] = 126105, + [SMALL_STATE(2772)] = 126163, + [SMALL_STATE(2773)] = 126221, + [SMALL_STATE(2774)] = 126279, + [SMALL_STATE(2775)] = 126337, + [SMALL_STATE(2776)] = 126395, + [SMALL_STATE(2777)] = 126453, + [SMALL_STATE(2778)] = 126511, + [SMALL_STATE(2779)] = 126569, + [SMALL_STATE(2780)] = 126627, + [SMALL_STATE(2781)] = 126685, + [SMALL_STATE(2782)] = 126743, + [SMALL_STATE(2783)] = 126801, + [SMALL_STATE(2784)] = 126859, + [SMALL_STATE(2785)] = 126917, + [SMALL_STATE(2786)] = 126975, + [SMALL_STATE(2787)] = 127033, + [SMALL_STATE(2788)] = 127091, + [SMALL_STATE(2789)] = 127149, + [SMALL_STATE(2790)] = 127207, + [SMALL_STATE(2791)] = 127265, + [SMALL_STATE(2792)] = 127323, + [SMALL_STATE(2793)] = 127381, + [SMALL_STATE(2794)] = 127439, + [SMALL_STATE(2795)] = 127497, + [SMALL_STATE(2796)] = 127555, + [SMALL_STATE(2797)] = 127613, + [SMALL_STATE(2798)] = 127671, + [SMALL_STATE(2799)] = 127729, + [SMALL_STATE(2800)] = 127787, + [SMALL_STATE(2801)] = 127845, + [SMALL_STATE(2802)] = 127903, + [SMALL_STATE(2803)] = 127961, + [SMALL_STATE(2804)] = 128019, + [SMALL_STATE(2805)] = 128077, + [SMALL_STATE(2806)] = 128135, + [SMALL_STATE(2807)] = 128193, + [SMALL_STATE(2808)] = 128251, + [SMALL_STATE(2809)] = 128309, + [SMALL_STATE(2810)] = 128367, + [SMALL_STATE(2811)] = 128425, + [SMALL_STATE(2812)] = 128483, + [SMALL_STATE(2813)] = 128541, + [SMALL_STATE(2814)] = 128599, + [SMALL_STATE(2815)] = 128657, + [SMALL_STATE(2816)] = 128715, + [SMALL_STATE(2817)] = 128773, + [SMALL_STATE(2818)] = 128831, + [SMALL_STATE(2819)] = 128889, + [SMALL_STATE(2820)] = 128947, + [SMALL_STATE(2821)] = 129005, + [SMALL_STATE(2822)] = 129063, + [SMALL_STATE(2823)] = 129121, + [SMALL_STATE(2824)] = 129179, + [SMALL_STATE(2825)] = 129237, + [SMALL_STATE(2826)] = 129295, + [SMALL_STATE(2827)] = 129353, + [SMALL_STATE(2828)] = 129411, + [SMALL_STATE(2829)] = 129469, + [SMALL_STATE(2830)] = 129527, + [SMALL_STATE(2831)] = 129585, + [SMALL_STATE(2832)] = 129643, + [SMALL_STATE(2833)] = 129701, + [SMALL_STATE(2834)] = 129759, + [SMALL_STATE(2835)] = 129817, + [SMALL_STATE(2836)] = 129875, + [SMALL_STATE(2837)] = 129933, + [SMALL_STATE(2838)] = 129991, + [SMALL_STATE(2839)] = 130049, + [SMALL_STATE(2840)] = 130107, + [SMALL_STATE(2841)] = 130165, + [SMALL_STATE(2842)] = 130223, + [SMALL_STATE(2843)] = 130281, + [SMALL_STATE(2844)] = 130339, + [SMALL_STATE(2845)] = 130397, + [SMALL_STATE(2846)] = 130455, + [SMALL_STATE(2847)] = 130513, + [SMALL_STATE(2848)] = 130571, + [SMALL_STATE(2849)] = 130629, + [SMALL_STATE(2850)] = 130687, + [SMALL_STATE(2851)] = 130745, + [SMALL_STATE(2852)] = 130803, + [SMALL_STATE(2853)] = 130861, + [SMALL_STATE(2854)] = 130919, + [SMALL_STATE(2855)] = 130977, + [SMALL_STATE(2856)] = 131035, + [SMALL_STATE(2857)] = 131093, + [SMALL_STATE(2858)] = 131151, + [SMALL_STATE(2859)] = 131209, + [SMALL_STATE(2860)] = 131267, + [SMALL_STATE(2861)] = 131325, + [SMALL_STATE(2862)] = 131383, + [SMALL_STATE(2863)] = 131441, + [SMALL_STATE(2864)] = 131499, + [SMALL_STATE(2865)] = 131557, + [SMALL_STATE(2866)] = 131615, + [SMALL_STATE(2867)] = 131673, + [SMALL_STATE(2868)] = 131731, + [SMALL_STATE(2869)] = 131789, + [SMALL_STATE(2870)] = 131847, + [SMALL_STATE(2871)] = 131905, + [SMALL_STATE(2872)] = 131963, + [SMALL_STATE(2873)] = 132021, + [SMALL_STATE(2874)] = 132079, + [SMALL_STATE(2875)] = 132137, + [SMALL_STATE(2876)] = 132195, + [SMALL_STATE(2877)] = 132253, + [SMALL_STATE(2878)] = 132311, + [SMALL_STATE(2879)] = 132369, + [SMALL_STATE(2880)] = 132427, + [SMALL_STATE(2881)] = 132485, + [SMALL_STATE(2882)] = 132543, + [SMALL_STATE(2883)] = 132601, + [SMALL_STATE(2884)] = 132659, + [SMALL_STATE(2885)] = 132717, + [SMALL_STATE(2886)] = 132775, + [SMALL_STATE(2887)] = 132833, + [SMALL_STATE(2888)] = 132891, + [SMALL_STATE(2889)] = 132949, + [SMALL_STATE(2890)] = 133007, + [SMALL_STATE(2891)] = 133065, + [SMALL_STATE(2892)] = 133123, + [SMALL_STATE(2893)] = 133181, + [SMALL_STATE(2894)] = 133239, + [SMALL_STATE(2895)] = 133297, + [SMALL_STATE(2896)] = 133355, + [SMALL_STATE(2897)] = 133413, + [SMALL_STATE(2898)] = 133471, + [SMALL_STATE(2899)] = 133529, + [SMALL_STATE(2900)] = 133587, + [SMALL_STATE(2901)] = 133645, + [SMALL_STATE(2902)] = 133703, + [SMALL_STATE(2903)] = 133761, + [SMALL_STATE(2904)] = 133819, + [SMALL_STATE(2905)] = 133877, + [SMALL_STATE(2906)] = 133935, + [SMALL_STATE(2907)] = 133993, + [SMALL_STATE(2908)] = 134051, + [SMALL_STATE(2909)] = 134109, + [SMALL_STATE(2910)] = 134167, + [SMALL_STATE(2911)] = 134225, + [SMALL_STATE(2912)] = 134283, + [SMALL_STATE(2913)] = 134341, + [SMALL_STATE(2914)] = 134399, + [SMALL_STATE(2915)] = 134457, + [SMALL_STATE(2916)] = 134515, + [SMALL_STATE(2917)] = 134573, + [SMALL_STATE(2918)] = 134631, + [SMALL_STATE(2919)] = 134689, + [SMALL_STATE(2920)] = 134747, + [SMALL_STATE(2921)] = 134805, + [SMALL_STATE(2922)] = 134863, + [SMALL_STATE(2923)] = 134921, + [SMALL_STATE(2924)] = 134979, + [SMALL_STATE(2925)] = 135037, + [SMALL_STATE(2926)] = 135095, + [SMALL_STATE(2927)] = 135153, + [SMALL_STATE(2928)] = 135211, + [SMALL_STATE(2929)] = 135269, + [SMALL_STATE(2930)] = 135327, + [SMALL_STATE(2931)] = 135385, + [SMALL_STATE(2932)] = 135443, + [SMALL_STATE(2933)] = 135501, + [SMALL_STATE(2934)] = 135559, + [SMALL_STATE(2935)] = 135617, + [SMALL_STATE(2936)] = 135675, + [SMALL_STATE(2937)] = 135733, + [SMALL_STATE(2938)] = 135791, + [SMALL_STATE(2939)] = 135849, + [SMALL_STATE(2940)] = 135907, + [SMALL_STATE(2941)] = 135965, + [SMALL_STATE(2942)] = 136023, + [SMALL_STATE(2943)] = 136081, + [SMALL_STATE(2944)] = 136139, + [SMALL_STATE(2945)] = 136197, + [SMALL_STATE(2946)] = 136255, + [SMALL_STATE(2947)] = 136313, + [SMALL_STATE(2948)] = 136371, + [SMALL_STATE(2949)] = 136429, + [SMALL_STATE(2950)] = 136487, + [SMALL_STATE(2951)] = 136545, + [SMALL_STATE(2952)] = 136603, + [SMALL_STATE(2953)] = 136661, + [SMALL_STATE(2954)] = 136719, + [SMALL_STATE(2955)] = 136777, + [SMALL_STATE(2956)] = 136835, + [SMALL_STATE(2957)] = 136893, + [SMALL_STATE(2958)] = 136951, + [SMALL_STATE(2959)] = 137009, + [SMALL_STATE(2960)] = 137067, + [SMALL_STATE(2961)] = 137125, + [SMALL_STATE(2962)] = 137183, + [SMALL_STATE(2963)] = 137241, + [SMALL_STATE(2964)] = 137299, + [SMALL_STATE(2965)] = 137357, + [SMALL_STATE(2966)] = 137415, + [SMALL_STATE(2967)] = 137473, + [SMALL_STATE(2968)] = 137531, + [SMALL_STATE(2969)] = 137589, + [SMALL_STATE(2970)] = 137647, + [SMALL_STATE(2971)] = 137705, + [SMALL_STATE(2972)] = 137763, + [SMALL_STATE(2973)] = 137821, + [SMALL_STATE(2974)] = 137879, + [SMALL_STATE(2975)] = 137937, + [SMALL_STATE(2976)] = 137995, + [SMALL_STATE(2977)] = 138053, + [SMALL_STATE(2978)] = 138111, + [SMALL_STATE(2979)] = 138169, + [SMALL_STATE(2980)] = 138227, + [SMALL_STATE(2981)] = 138285, + [SMALL_STATE(2982)] = 138343, + [SMALL_STATE(2983)] = 138401, + [SMALL_STATE(2984)] = 138459, + [SMALL_STATE(2985)] = 138517, + [SMALL_STATE(2986)] = 138575, + [SMALL_STATE(2987)] = 138633, + [SMALL_STATE(2988)] = 138691, + [SMALL_STATE(2989)] = 138749, + [SMALL_STATE(2990)] = 138807, + [SMALL_STATE(2991)] = 138865, + [SMALL_STATE(2992)] = 138923, + [SMALL_STATE(2993)] = 138981, + [SMALL_STATE(2994)] = 139039, + [SMALL_STATE(2995)] = 139097, + [SMALL_STATE(2996)] = 139155, + [SMALL_STATE(2997)] = 139213, + [SMALL_STATE(2998)] = 139271, + [SMALL_STATE(2999)] = 139329, + [SMALL_STATE(3000)] = 139387, + [SMALL_STATE(3001)] = 139445, + [SMALL_STATE(3002)] = 139503, + [SMALL_STATE(3003)] = 139561, + [SMALL_STATE(3004)] = 139619, + [SMALL_STATE(3005)] = 139677, + [SMALL_STATE(3006)] = 139735, + [SMALL_STATE(3007)] = 139793, + [SMALL_STATE(3008)] = 139851, + [SMALL_STATE(3009)] = 139909, + [SMALL_STATE(3010)] = 139967, + [SMALL_STATE(3011)] = 140025, + [SMALL_STATE(3012)] = 140083, + [SMALL_STATE(3013)] = 140141, + [SMALL_STATE(3014)] = 140199, + [SMALL_STATE(3015)] = 140257, + [SMALL_STATE(3016)] = 140315, + [SMALL_STATE(3017)] = 140373, + [SMALL_STATE(3018)] = 140431, + [SMALL_STATE(3019)] = 140489, + [SMALL_STATE(3020)] = 140547, + [SMALL_STATE(3021)] = 140605, + [SMALL_STATE(3022)] = 140663, + [SMALL_STATE(3023)] = 140721, + [SMALL_STATE(3024)] = 140779, + [SMALL_STATE(3025)] = 140837, + [SMALL_STATE(3026)] = 140895, + [SMALL_STATE(3027)] = 140953, + [SMALL_STATE(3028)] = 141011, + [SMALL_STATE(3029)] = 141069, + [SMALL_STATE(3030)] = 141127, + [SMALL_STATE(3031)] = 141185, + [SMALL_STATE(3032)] = 141243, + [SMALL_STATE(3033)] = 141301, + [SMALL_STATE(3034)] = 141359, + [SMALL_STATE(3035)] = 141417, + [SMALL_STATE(3036)] = 141475, + [SMALL_STATE(3037)] = 141533, + [SMALL_STATE(3038)] = 141591, + [SMALL_STATE(3039)] = 141649, + [SMALL_STATE(3040)] = 141707, + [SMALL_STATE(3041)] = 141765, + [SMALL_STATE(3042)] = 141823, + [SMALL_STATE(3043)] = 141881, + [SMALL_STATE(3044)] = 141939, + [SMALL_STATE(3045)] = 141997, + [SMALL_STATE(3046)] = 142055, + [SMALL_STATE(3047)] = 142113, + [SMALL_STATE(3048)] = 142171, + [SMALL_STATE(3049)] = 142229, + [SMALL_STATE(3050)] = 142287, + [SMALL_STATE(3051)] = 142345, + [SMALL_STATE(3052)] = 142403, + [SMALL_STATE(3053)] = 142461, + [SMALL_STATE(3054)] = 142519, + [SMALL_STATE(3055)] = 142577, + [SMALL_STATE(3056)] = 142635, + [SMALL_STATE(3057)] = 142693, + [SMALL_STATE(3058)] = 142751, + [SMALL_STATE(3059)] = 142809, + [SMALL_STATE(3060)] = 142867, + [SMALL_STATE(3061)] = 142925, + [SMALL_STATE(3062)] = 142983, + [SMALL_STATE(3063)] = 143041, + [SMALL_STATE(3064)] = 143099, + [SMALL_STATE(3065)] = 143157, + [SMALL_STATE(3066)] = 143215, + [SMALL_STATE(3067)] = 143273, + [SMALL_STATE(3068)] = 143331, + [SMALL_STATE(3069)] = 143389, + [SMALL_STATE(3070)] = 143447, + [SMALL_STATE(3071)] = 143505, + [SMALL_STATE(3072)] = 143563, + [SMALL_STATE(3073)] = 143621, + [SMALL_STATE(3074)] = 143679, + [SMALL_STATE(3075)] = 143737, + [SMALL_STATE(3076)] = 143795, + [SMALL_STATE(3077)] = 143853, + [SMALL_STATE(3078)] = 143911, + [SMALL_STATE(3079)] = 143969, + [SMALL_STATE(3080)] = 144027, + [SMALL_STATE(3081)] = 144085, + [SMALL_STATE(3082)] = 144143, + [SMALL_STATE(3083)] = 144201, + [SMALL_STATE(3084)] = 144259, + [SMALL_STATE(3085)] = 144317, + [SMALL_STATE(3086)] = 144375, + [SMALL_STATE(3087)] = 144433, + [SMALL_STATE(3088)] = 144491, + [SMALL_STATE(3089)] = 144549, + [SMALL_STATE(3090)] = 144607, + [SMALL_STATE(3091)] = 144665, + [SMALL_STATE(3092)] = 144723, + [SMALL_STATE(3093)] = 144781, + [SMALL_STATE(3094)] = 144839, + [SMALL_STATE(3095)] = 144897, + [SMALL_STATE(3096)] = 144955, + [SMALL_STATE(3097)] = 145013, + [SMALL_STATE(3098)] = 145071, + [SMALL_STATE(3099)] = 145129, + [SMALL_STATE(3100)] = 145187, + [SMALL_STATE(3101)] = 145245, + [SMALL_STATE(3102)] = 145303, + [SMALL_STATE(3103)] = 145361, + [SMALL_STATE(3104)] = 145419, + [SMALL_STATE(3105)] = 145477, + [SMALL_STATE(3106)] = 145535, + [SMALL_STATE(3107)] = 145593, + [SMALL_STATE(3108)] = 145651, + [SMALL_STATE(3109)] = 145709, + [SMALL_STATE(3110)] = 145767, + [SMALL_STATE(3111)] = 145825, + [SMALL_STATE(3112)] = 145883, + [SMALL_STATE(3113)] = 145941, + [SMALL_STATE(3114)] = 145999, + [SMALL_STATE(3115)] = 146057, + [SMALL_STATE(3116)] = 146115, + [SMALL_STATE(3117)] = 146173, + [SMALL_STATE(3118)] = 146231, + [SMALL_STATE(3119)] = 146289, + [SMALL_STATE(3120)] = 146347, + [SMALL_STATE(3121)] = 146405, + [SMALL_STATE(3122)] = 146463, + [SMALL_STATE(3123)] = 146521, + [SMALL_STATE(3124)] = 146579, + [SMALL_STATE(3125)] = 146637, + [SMALL_STATE(3126)] = 146695, + [SMALL_STATE(3127)] = 146753, + [SMALL_STATE(3128)] = 146811, + [SMALL_STATE(3129)] = 146869, + [SMALL_STATE(3130)] = 146927, + [SMALL_STATE(3131)] = 146985, + [SMALL_STATE(3132)] = 147043, + [SMALL_STATE(3133)] = 147101, + [SMALL_STATE(3134)] = 147159, + [SMALL_STATE(3135)] = 147217, + [SMALL_STATE(3136)] = 147275, + [SMALL_STATE(3137)] = 147333, + [SMALL_STATE(3138)] = 147391, + [SMALL_STATE(3139)] = 147449, + [SMALL_STATE(3140)] = 147507, + [SMALL_STATE(3141)] = 147565, + [SMALL_STATE(3142)] = 147623, + [SMALL_STATE(3143)] = 147681, + [SMALL_STATE(3144)] = 147739, + [SMALL_STATE(3145)] = 147797, + [SMALL_STATE(3146)] = 147855, + [SMALL_STATE(3147)] = 147913, + [SMALL_STATE(3148)] = 147971, + [SMALL_STATE(3149)] = 148029, + [SMALL_STATE(3150)] = 148087, + [SMALL_STATE(3151)] = 148145, + [SMALL_STATE(3152)] = 148203, + [SMALL_STATE(3153)] = 148261, + [SMALL_STATE(3154)] = 148319, + [SMALL_STATE(3155)] = 148377, + [SMALL_STATE(3156)] = 148435, + [SMALL_STATE(3157)] = 148493, + [SMALL_STATE(3158)] = 148551, + [SMALL_STATE(3159)] = 148609, + [SMALL_STATE(3160)] = 148667, + [SMALL_STATE(3161)] = 148725, + [SMALL_STATE(3162)] = 148783, + [SMALL_STATE(3163)] = 148841, + [SMALL_STATE(3164)] = 148899, + [SMALL_STATE(3165)] = 148957, + [SMALL_STATE(3166)] = 149015, + [SMALL_STATE(3167)] = 149073, + [SMALL_STATE(3168)] = 149131, + [SMALL_STATE(3169)] = 149189, + [SMALL_STATE(3170)] = 149247, + [SMALL_STATE(3171)] = 149305, + [SMALL_STATE(3172)] = 149363, + [SMALL_STATE(3173)] = 149421, + [SMALL_STATE(3174)] = 149479, + [SMALL_STATE(3175)] = 149537, + [SMALL_STATE(3176)] = 149595, + [SMALL_STATE(3177)] = 149653, + [SMALL_STATE(3178)] = 149711, + [SMALL_STATE(3179)] = 149769, + [SMALL_STATE(3180)] = 149827, + [SMALL_STATE(3181)] = 149885, + [SMALL_STATE(3182)] = 149943, + [SMALL_STATE(3183)] = 150001, + [SMALL_STATE(3184)] = 150059, + [SMALL_STATE(3185)] = 150117, + [SMALL_STATE(3186)] = 150175, + [SMALL_STATE(3187)] = 150233, + [SMALL_STATE(3188)] = 150291, + [SMALL_STATE(3189)] = 150349, + [SMALL_STATE(3190)] = 150407, + [SMALL_STATE(3191)] = 150465, + [SMALL_STATE(3192)] = 150523, + [SMALL_STATE(3193)] = 150581, + [SMALL_STATE(3194)] = 150639, + [SMALL_STATE(3195)] = 150697, + [SMALL_STATE(3196)] = 150755, + [SMALL_STATE(3197)] = 150813, + [SMALL_STATE(3198)] = 150871, + [SMALL_STATE(3199)] = 150929, + [SMALL_STATE(3200)] = 150987, + [SMALL_STATE(3201)] = 151045, + [SMALL_STATE(3202)] = 151103, + [SMALL_STATE(3203)] = 151161, + [SMALL_STATE(3204)] = 151219, + [SMALL_STATE(3205)] = 151277, + [SMALL_STATE(3206)] = 151335, + [SMALL_STATE(3207)] = 151393, + [SMALL_STATE(3208)] = 151451, + [SMALL_STATE(3209)] = 151509, + [SMALL_STATE(3210)] = 151567, + [SMALL_STATE(3211)] = 151625, + [SMALL_STATE(3212)] = 151683, + [SMALL_STATE(3213)] = 151741, + [SMALL_STATE(3214)] = 151799, + [SMALL_STATE(3215)] = 151857, + [SMALL_STATE(3216)] = 151915, + [SMALL_STATE(3217)] = 151973, + [SMALL_STATE(3218)] = 152031, + [SMALL_STATE(3219)] = 152089, + [SMALL_STATE(3220)] = 152147, + [SMALL_STATE(3221)] = 152205, + [SMALL_STATE(3222)] = 152263, + [SMALL_STATE(3223)] = 152321, + [SMALL_STATE(3224)] = 152379, + [SMALL_STATE(3225)] = 152437, + [SMALL_STATE(3226)] = 152495, + [SMALL_STATE(3227)] = 152553, + [SMALL_STATE(3228)] = 152611, + [SMALL_STATE(3229)] = 152669, + [SMALL_STATE(3230)] = 152727, + [SMALL_STATE(3231)] = 152785, + [SMALL_STATE(3232)] = 152843, + [SMALL_STATE(3233)] = 152901, + [SMALL_STATE(3234)] = 152959, + [SMALL_STATE(3235)] = 153017, + [SMALL_STATE(3236)] = 153075, + [SMALL_STATE(3237)] = 153133, + [SMALL_STATE(3238)] = 153191, + [SMALL_STATE(3239)] = 153249, + [SMALL_STATE(3240)] = 153307, + [SMALL_STATE(3241)] = 153365, + [SMALL_STATE(3242)] = 153423, + [SMALL_STATE(3243)] = 153481, + [SMALL_STATE(3244)] = 153539, + [SMALL_STATE(3245)] = 153597, + [SMALL_STATE(3246)] = 153655, + [SMALL_STATE(3247)] = 153713, + [SMALL_STATE(3248)] = 153771, + [SMALL_STATE(3249)] = 153829, + [SMALL_STATE(3250)] = 153887, + [SMALL_STATE(3251)] = 153945, + [SMALL_STATE(3252)] = 154003, + [SMALL_STATE(3253)] = 154061, + [SMALL_STATE(3254)] = 154119, + [SMALL_STATE(3255)] = 154177, + [SMALL_STATE(3256)] = 154235, + [SMALL_STATE(3257)] = 154293, + [SMALL_STATE(3258)] = 154351, + [SMALL_STATE(3259)] = 154409, + [SMALL_STATE(3260)] = 154467, + [SMALL_STATE(3261)] = 154525, + [SMALL_STATE(3262)] = 154583, + [SMALL_STATE(3263)] = 154641, + [SMALL_STATE(3264)] = 154699, + [SMALL_STATE(3265)] = 154757, + [SMALL_STATE(3266)] = 154815, + [SMALL_STATE(3267)] = 154873, + [SMALL_STATE(3268)] = 154931, + [SMALL_STATE(3269)] = 154989, + [SMALL_STATE(3270)] = 155047, + [SMALL_STATE(3271)] = 155105, + [SMALL_STATE(3272)] = 155163, + [SMALL_STATE(3273)] = 155221, + [SMALL_STATE(3274)] = 155279, + [SMALL_STATE(3275)] = 155337, + [SMALL_STATE(3276)] = 155395, + [SMALL_STATE(3277)] = 155453, + [SMALL_STATE(3278)] = 155511, + [SMALL_STATE(3279)] = 155569, + [SMALL_STATE(3280)] = 155627, + [SMALL_STATE(3281)] = 155685, + [SMALL_STATE(3282)] = 155743, + [SMALL_STATE(3283)] = 155801, + [SMALL_STATE(3284)] = 155859, + [SMALL_STATE(3285)] = 155917, + [SMALL_STATE(3286)] = 155975, + [SMALL_STATE(3287)] = 156033, + [SMALL_STATE(3288)] = 156091, + [SMALL_STATE(3289)] = 156149, + [SMALL_STATE(3290)] = 156207, + [SMALL_STATE(3291)] = 156265, + [SMALL_STATE(3292)] = 156323, + [SMALL_STATE(3293)] = 156381, + [SMALL_STATE(3294)] = 156439, + [SMALL_STATE(3295)] = 156497, + [SMALL_STATE(3296)] = 156555, + [SMALL_STATE(3297)] = 156613, + [SMALL_STATE(3298)] = 156671, + [SMALL_STATE(3299)] = 156729, + [SMALL_STATE(3300)] = 156787, + [SMALL_STATE(3301)] = 156845, + [SMALL_STATE(3302)] = 156903, + [SMALL_STATE(3303)] = 156961, + [SMALL_STATE(3304)] = 157019, + [SMALL_STATE(3305)] = 157077, + [SMALL_STATE(3306)] = 157135, + [SMALL_STATE(3307)] = 157193, + [SMALL_STATE(3308)] = 157251, + [SMALL_STATE(3309)] = 157309, + [SMALL_STATE(3310)] = 157367, + [SMALL_STATE(3311)] = 157425, + [SMALL_STATE(3312)] = 157483, + [SMALL_STATE(3313)] = 157541, + [SMALL_STATE(3314)] = 157599, + [SMALL_STATE(3315)] = 157657, + [SMALL_STATE(3316)] = 157715, + [SMALL_STATE(3317)] = 157773, + [SMALL_STATE(3318)] = 157831, + [SMALL_STATE(3319)] = 157889, + [SMALL_STATE(3320)] = 157947, + [SMALL_STATE(3321)] = 158005, + [SMALL_STATE(3322)] = 158063, + [SMALL_STATE(3323)] = 158121, + [SMALL_STATE(3324)] = 158179, + [SMALL_STATE(3325)] = 158237, + [SMALL_STATE(3326)] = 158295, + [SMALL_STATE(3327)] = 158353, + [SMALL_STATE(3328)] = 158411, + [SMALL_STATE(3329)] = 158469, + [SMALL_STATE(3330)] = 158527, + [SMALL_STATE(3331)] = 158585, + [SMALL_STATE(3332)] = 158643, + [SMALL_STATE(3333)] = 158701, + [SMALL_STATE(3334)] = 158759, + [SMALL_STATE(3335)] = 158817, + [SMALL_STATE(3336)] = 158875, + [SMALL_STATE(3337)] = 158933, + [SMALL_STATE(3338)] = 158991, + [SMALL_STATE(3339)] = 159049, + [SMALL_STATE(3340)] = 159107, + [SMALL_STATE(3341)] = 159165, + [SMALL_STATE(3342)] = 159223, + [SMALL_STATE(3343)] = 159281, + [SMALL_STATE(3344)] = 159339, + [SMALL_STATE(3345)] = 159397, + [SMALL_STATE(3346)] = 159455, + [SMALL_STATE(3347)] = 159513, + [SMALL_STATE(3348)] = 159571, + [SMALL_STATE(3349)] = 159629, + [SMALL_STATE(3350)] = 159687, + [SMALL_STATE(3351)] = 159745, + [SMALL_STATE(3352)] = 159803, + [SMALL_STATE(3353)] = 159861, + [SMALL_STATE(3354)] = 159919, + [SMALL_STATE(3355)] = 159977, + [SMALL_STATE(3356)] = 160035, + [SMALL_STATE(3357)] = 160093, + [SMALL_STATE(3358)] = 160151, + [SMALL_STATE(3359)] = 160209, + [SMALL_STATE(3360)] = 160267, + [SMALL_STATE(3361)] = 160325, + [SMALL_STATE(3362)] = 160383, + [SMALL_STATE(3363)] = 160441, + [SMALL_STATE(3364)] = 160499, + [SMALL_STATE(3365)] = 160557, + [SMALL_STATE(3366)] = 160615, + [SMALL_STATE(3367)] = 160673, + [SMALL_STATE(3368)] = 160731, + [SMALL_STATE(3369)] = 160789, + [SMALL_STATE(3370)] = 160847, + [SMALL_STATE(3371)] = 160905, + [SMALL_STATE(3372)] = 160963, + [SMALL_STATE(3373)] = 161021, + [SMALL_STATE(3374)] = 161079, + [SMALL_STATE(3375)] = 161137, + [SMALL_STATE(3376)] = 161195, + [SMALL_STATE(3377)] = 161253, + [SMALL_STATE(3378)] = 161311, + [SMALL_STATE(3379)] = 161369, + [SMALL_STATE(3380)] = 161427, + [SMALL_STATE(3381)] = 161485, + [SMALL_STATE(3382)] = 161543, + [SMALL_STATE(3383)] = 161601, + [SMALL_STATE(3384)] = 161659, + [SMALL_STATE(3385)] = 161717, + [SMALL_STATE(3386)] = 161775, + [SMALL_STATE(3387)] = 161833, + [SMALL_STATE(3388)] = 161891, + [SMALL_STATE(3389)] = 161949, + [SMALL_STATE(3390)] = 162007, + [SMALL_STATE(3391)] = 162065, + [SMALL_STATE(3392)] = 162123, + [SMALL_STATE(3393)] = 162181, + [SMALL_STATE(3394)] = 162239, + [SMALL_STATE(3395)] = 162297, + [SMALL_STATE(3396)] = 162355, + [SMALL_STATE(3397)] = 162413, + [SMALL_STATE(3398)] = 162471, + [SMALL_STATE(3399)] = 162529, + [SMALL_STATE(3400)] = 162587, + [SMALL_STATE(3401)] = 162645, + [SMALL_STATE(3402)] = 162703, + [SMALL_STATE(3403)] = 162761, + [SMALL_STATE(3404)] = 162819, + [SMALL_STATE(3405)] = 162877, + [SMALL_STATE(3406)] = 162935, + [SMALL_STATE(3407)] = 162993, + [SMALL_STATE(3408)] = 163051, + [SMALL_STATE(3409)] = 163109, + [SMALL_STATE(3410)] = 163167, + [SMALL_STATE(3411)] = 163225, + [SMALL_STATE(3412)] = 163283, + [SMALL_STATE(3413)] = 163341, + [SMALL_STATE(3414)] = 163399, + [SMALL_STATE(3415)] = 163457, + [SMALL_STATE(3416)] = 163515, + [SMALL_STATE(3417)] = 163573, + [SMALL_STATE(3418)] = 163631, + [SMALL_STATE(3419)] = 163689, + [SMALL_STATE(3420)] = 163747, + [SMALL_STATE(3421)] = 163805, + [SMALL_STATE(3422)] = 163863, + [SMALL_STATE(3423)] = 163921, + [SMALL_STATE(3424)] = 163979, + [SMALL_STATE(3425)] = 164037, + [SMALL_STATE(3426)] = 164095, + [SMALL_STATE(3427)] = 164153, + [SMALL_STATE(3428)] = 164211, + [SMALL_STATE(3429)] = 164269, + [SMALL_STATE(3430)] = 164327, + [SMALL_STATE(3431)] = 164385, + [SMALL_STATE(3432)] = 164443, + [SMALL_STATE(3433)] = 164501, + [SMALL_STATE(3434)] = 164559, + [SMALL_STATE(3435)] = 164617, + [SMALL_STATE(3436)] = 164675, + [SMALL_STATE(3437)] = 164733, + [SMALL_STATE(3438)] = 164791, + [SMALL_STATE(3439)] = 164849, + [SMALL_STATE(3440)] = 164907, + [SMALL_STATE(3441)] = 164965, + [SMALL_STATE(3442)] = 165023, + [SMALL_STATE(3443)] = 165081, + [SMALL_STATE(3444)] = 165139, + [SMALL_STATE(3445)] = 165197, + [SMALL_STATE(3446)] = 165255, + [SMALL_STATE(3447)] = 165313, + [SMALL_STATE(3448)] = 165371, + [SMALL_STATE(3449)] = 165429, + [SMALL_STATE(3450)] = 165487, + [SMALL_STATE(3451)] = 165545, + [SMALL_STATE(3452)] = 165603, + [SMALL_STATE(3453)] = 165661, + [SMALL_STATE(3454)] = 165719, + [SMALL_STATE(3455)] = 165777, + [SMALL_STATE(3456)] = 165835, + [SMALL_STATE(3457)] = 165893, + [SMALL_STATE(3458)] = 165951, + [SMALL_STATE(3459)] = 166009, + [SMALL_STATE(3460)] = 166067, + [SMALL_STATE(3461)] = 166125, + [SMALL_STATE(3462)] = 166183, + [SMALL_STATE(3463)] = 166241, + [SMALL_STATE(3464)] = 166299, + [SMALL_STATE(3465)] = 166357, + [SMALL_STATE(3466)] = 166415, + [SMALL_STATE(3467)] = 166473, + [SMALL_STATE(3468)] = 166531, + [SMALL_STATE(3469)] = 166589, + [SMALL_STATE(3470)] = 166647, + [SMALL_STATE(3471)] = 166705, + [SMALL_STATE(3472)] = 166763, + [SMALL_STATE(3473)] = 166821, + [SMALL_STATE(3474)] = 166879, + [SMALL_STATE(3475)] = 166937, + [SMALL_STATE(3476)] = 166995, + [SMALL_STATE(3477)] = 167053, + [SMALL_STATE(3478)] = 167111, + [SMALL_STATE(3479)] = 167169, + [SMALL_STATE(3480)] = 167227, + [SMALL_STATE(3481)] = 167285, + [SMALL_STATE(3482)] = 167343, + [SMALL_STATE(3483)] = 167401, + [SMALL_STATE(3484)] = 167459, + [SMALL_STATE(3485)] = 167517, + [SMALL_STATE(3486)] = 167575, + [SMALL_STATE(3487)] = 167633, + [SMALL_STATE(3488)] = 167691, + [SMALL_STATE(3489)] = 167749, + [SMALL_STATE(3490)] = 167807, + [SMALL_STATE(3491)] = 167865, + [SMALL_STATE(3492)] = 167923, + [SMALL_STATE(3493)] = 167981, + [SMALL_STATE(3494)] = 168039, + [SMALL_STATE(3495)] = 168097, + [SMALL_STATE(3496)] = 168155, + [SMALL_STATE(3497)] = 168213, + [SMALL_STATE(3498)] = 168271, + [SMALL_STATE(3499)] = 168329, + [SMALL_STATE(3500)] = 168387, + [SMALL_STATE(3501)] = 168445, + [SMALL_STATE(3502)] = 168503, + [SMALL_STATE(3503)] = 168561, + [SMALL_STATE(3504)] = 168619, + [SMALL_STATE(3505)] = 168677, + [SMALL_STATE(3506)] = 168735, + [SMALL_STATE(3507)] = 168793, + [SMALL_STATE(3508)] = 168851, + [SMALL_STATE(3509)] = 168909, + [SMALL_STATE(3510)] = 168967, + [SMALL_STATE(3511)] = 169025, + [SMALL_STATE(3512)] = 169083, + [SMALL_STATE(3513)] = 169141, + [SMALL_STATE(3514)] = 169199, + [SMALL_STATE(3515)] = 169257, + [SMALL_STATE(3516)] = 169315, + [SMALL_STATE(3517)] = 169373, + [SMALL_STATE(3518)] = 169431, + [SMALL_STATE(3519)] = 169489, + [SMALL_STATE(3520)] = 169547, + [SMALL_STATE(3521)] = 169605, + [SMALL_STATE(3522)] = 169663, + [SMALL_STATE(3523)] = 169721, + [SMALL_STATE(3524)] = 169779, + [SMALL_STATE(3525)] = 169837, + [SMALL_STATE(3526)] = 169895, + [SMALL_STATE(3527)] = 169953, + [SMALL_STATE(3528)] = 170011, + [SMALL_STATE(3529)] = 170069, + [SMALL_STATE(3530)] = 170127, + [SMALL_STATE(3531)] = 170185, + [SMALL_STATE(3532)] = 170243, + [SMALL_STATE(3533)] = 170301, + [SMALL_STATE(3534)] = 170359, + [SMALL_STATE(3535)] = 170417, + [SMALL_STATE(3536)] = 170475, + [SMALL_STATE(3537)] = 170533, + [SMALL_STATE(3538)] = 170591, + [SMALL_STATE(3539)] = 170649, + [SMALL_STATE(3540)] = 170707, + [SMALL_STATE(3541)] = 170765, + [SMALL_STATE(3542)] = 170823, + [SMALL_STATE(3543)] = 170881, + [SMALL_STATE(3544)] = 170939, + [SMALL_STATE(3545)] = 170997, + [SMALL_STATE(3546)] = 171055, + [SMALL_STATE(3547)] = 171113, + [SMALL_STATE(3548)] = 171171, + [SMALL_STATE(3549)] = 171229, + [SMALL_STATE(3550)] = 171287, + [SMALL_STATE(3551)] = 171345, + [SMALL_STATE(3552)] = 171403, + [SMALL_STATE(3553)] = 171461, + [SMALL_STATE(3554)] = 171519, + [SMALL_STATE(3555)] = 171577, + [SMALL_STATE(3556)] = 171635, + [SMALL_STATE(3557)] = 171693, + [SMALL_STATE(3558)] = 171751, + [SMALL_STATE(3559)] = 171809, + [SMALL_STATE(3560)] = 171867, + [SMALL_STATE(3561)] = 171925, + [SMALL_STATE(3562)] = 171983, + [SMALL_STATE(3563)] = 172041, + [SMALL_STATE(3564)] = 172099, + [SMALL_STATE(3565)] = 172157, + [SMALL_STATE(3566)] = 172215, + [SMALL_STATE(3567)] = 172273, + [SMALL_STATE(3568)] = 172331, + [SMALL_STATE(3569)] = 172389, + [SMALL_STATE(3570)] = 172447, + [SMALL_STATE(3571)] = 172505, + [SMALL_STATE(3572)] = 172563, + [SMALL_STATE(3573)] = 172595, + [SMALL_STATE(3574)] = 172627, + [SMALL_STATE(3575)] = 172659, + [SMALL_STATE(3576)] = 172691, + [SMALL_STATE(3577)] = 172723, + [SMALL_STATE(3578)] = 172755, + [SMALL_STATE(3579)] = 172787, + [SMALL_STATE(3580)] = 172819, + [SMALL_STATE(3581)] = 172851, + [SMALL_STATE(3582)] = 172883, + [SMALL_STATE(3583)] = 172915, + [SMALL_STATE(3584)] = 172947, + [SMALL_STATE(3585)] = 172979, + [SMALL_STATE(3586)] = 173011, + [SMALL_STATE(3587)] = 173043, + [SMALL_STATE(3588)] = 173075, + [SMALL_STATE(3589)] = 173107, + [SMALL_STATE(3590)] = 173139, + [SMALL_STATE(3591)] = 173171, + [SMALL_STATE(3592)] = 173203, + [SMALL_STATE(3593)] = 173235, + [SMALL_STATE(3594)] = 173267, + [SMALL_STATE(3595)] = 173299, + [SMALL_STATE(3596)] = 173331, + [SMALL_STATE(3597)] = 173363, + [SMALL_STATE(3598)] = 173395, + [SMALL_STATE(3599)] = 173427, + [SMALL_STATE(3600)] = 173459, + [SMALL_STATE(3601)] = 173491, + [SMALL_STATE(3602)] = 173523, + [SMALL_STATE(3603)] = 173555, + [SMALL_STATE(3604)] = 173587, + [SMALL_STATE(3605)] = 173619, + [SMALL_STATE(3606)] = 173651, + [SMALL_STATE(3607)] = 173683, + [SMALL_STATE(3608)] = 173706, + [SMALL_STATE(3609)] = 173729, + [SMALL_STATE(3610)] = 173752, + [SMALL_STATE(3611)] = 173775, + [SMALL_STATE(3612)] = 173798, + [SMALL_STATE(3613)] = 173821, + [SMALL_STATE(3614)] = 173844, + [SMALL_STATE(3615)] = 173867, + [SMALL_STATE(3616)] = 173890, + [SMALL_STATE(3617)] = 173913, + [SMALL_STATE(3618)] = 173936, + [SMALL_STATE(3619)] = 173963, + [SMALL_STATE(3620)] = 173990, + [SMALL_STATE(3621)] = 174017, + [SMALL_STATE(3622)] = 174040, + [SMALL_STATE(3623)] = 174063, + [SMALL_STATE(3624)] = 174086, + [SMALL_STATE(3625)] = 174113, + [SMALL_STATE(3626)] = 174140, + [SMALL_STATE(3627)] = 174163, + [SMALL_STATE(3628)] = 174186, + [SMALL_STATE(3629)] = 174209, + [SMALL_STATE(3630)] = 174232, + [SMALL_STATE(3631)] = 174255, + [SMALL_STATE(3632)] = 174278, + [SMALL_STATE(3633)] = 174301, + [SMALL_STATE(3634)] = 174324, + [SMALL_STATE(3635)] = 174347, + [SMALL_STATE(3636)] = 174370, + [SMALL_STATE(3637)] = 174393, + [SMALL_STATE(3638)] = 174416, + [SMALL_STATE(3639)] = 174439, + [SMALL_STATE(3640)] = 174462, + [SMALL_STATE(3641)] = 174485, + [SMALL_STATE(3642)] = 174508, + [SMALL_STATE(3643)] = 174531, + [SMALL_STATE(3644)] = 174554, + [SMALL_STATE(3645)] = 174577, + [SMALL_STATE(3646)] = 174600, + [SMALL_STATE(3647)] = 174623, + [SMALL_STATE(3648)] = 174646, + [SMALL_STATE(3649)] = 174669, + [SMALL_STATE(3650)] = 174692, + [SMALL_STATE(3651)] = 174715, + [SMALL_STATE(3652)] = 174738, + [SMALL_STATE(3653)] = 174761, + [SMALL_STATE(3654)] = 174784, + [SMALL_STATE(3655)] = 174807, + [SMALL_STATE(3656)] = 174830, + [SMALL_STATE(3657)] = 174853, + [SMALL_STATE(3658)] = 174880, + [SMALL_STATE(3659)] = 174903, + [SMALL_STATE(3660)] = 174926, + [SMALL_STATE(3661)] = 174949, + [SMALL_STATE(3662)] = 174972, + [SMALL_STATE(3663)] = 174995, + [SMALL_STATE(3664)] = 175018, + [SMALL_STATE(3665)] = 175041, + [SMALL_STATE(3666)] = 175064, + [SMALL_STATE(3667)] = 175087, + [SMALL_STATE(3668)] = 175110, + [SMALL_STATE(3669)] = 175133, + [SMALL_STATE(3670)] = 175156, + [SMALL_STATE(3671)] = 175179, + [SMALL_STATE(3672)] = 175202, + [SMALL_STATE(3673)] = 175225, + [SMALL_STATE(3674)] = 175248, + [SMALL_STATE(3675)] = 175271, + [SMALL_STATE(3676)] = 175294, + [SMALL_STATE(3677)] = 175317, + [SMALL_STATE(3678)] = 175340, + [SMALL_STATE(3679)] = 175363, + [SMALL_STATE(3680)] = 175386, + [SMALL_STATE(3681)] = 175409, + [SMALL_STATE(3682)] = 175432, + [SMALL_STATE(3683)] = 175459, + [SMALL_STATE(3684)] = 175486, + [SMALL_STATE(3685)] = 175509, + [SMALL_STATE(3686)] = 175532, + [SMALL_STATE(3687)] = 175555, + [SMALL_STATE(3688)] = 175582, + [SMALL_STATE(3689)] = 175605, + [SMALL_STATE(3690)] = 175628, + [SMALL_STATE(3691)] = 175655, + [SMALL_STATE(3692)] = 175682, + [SMALL_STATE(3693)] = 175705, + [SMALL_STATE(3694)] = 175728, + [SMALL_STATE(3695)] = 175751, + [SMALL_STATE(3696)] = 175774, + [SMALL_STATE(3697)] = 175797, + [SMALL_STATE(3698)] = 175820, + [SMALL_STATE(3699)] = 175843, + [SMALL_STATE(3700)] = 175866, + [SMALL_STATE(3701)] = 175889, + [SMALL_STATE(3702)] = 175916, + [SMALL_STATE(3703)] = 175939, + [SMALL_STATE(3704)] = 175962, + [SMALL_STATE(3705)] = 175985, + [SMALL_STATE(3706)] = 176008, + [SMALL_STATE(3707)] = 176031, + [SMALL_STATE(3708)] = 176058, + [SMALL_STATE(3709)] = 176081, + [SMALL_STATE(3710)] = 176104, + [SMALL_STATE(3711)] = 176127, + [SMALL_STATE(3712)] = 176150, + [SMALL_STATE(3713)] = 176173, + [SMALL_STATE(3714)] = 176196, + [SMALL_STATE(3715)] = 176219, + [SMALL_STATE(3716)] = 176242, + [SMALL_STATE(3717)] = 176265, + [SMALL_STATE(3718)] = 176288, + [SMALL_STATE(3719)] = 176311, + [SMALL_STATE(3720)] = 176334, + [SMALL_STATE(3721)] = 176357, + [SMALL_STATE(3722)] = 176380, + [SMALL_STATE(3723)] = 176403, + [SMALL_STATE(3724)] = 176426, + [SMALL_STATE(3725)] = 176449, + [SMALL_STATE(3726)] = 176476, + [SMALL_STATE(3727)] = 176499, + [SMALL_STATE(3728)] = 176522, + [SMALL_STATE(3729)] = 176549, + [SMALL_STATE(3730)] = 176572, + [SMALL_STATE(3731)] = 176595, + [SMALL_STATE(3732)] = 176618, + [SMALL_STATE(3733)] = 176641, + [SMALL_STATE(3734)] = 176664, + [SMALL_STATE(3735)] = 176687, + [SMALL_STATE(3736)] = 176710, + [SMALL_STATE(3737)] = 176733, + [SMALL_STATE(3738)] = 176756, + [SMALL_STATE(3739)] = 176779, + [SMALL_STATE(3740)] = 176802, + [SMALL_STATE(3741)] = 176825, + [SMALL_STATE(3742)] = 176848, + [SMALL_STATE(3743)] = 176871, + [SMALL_STATE(3744)] = 176894, + [SMALL_STATE(3745)] = 176917, + [SMALL_STATE(3746)] = 176940, + [SMALL_STATE(3747)] = 176963, + [SMALL_STATE(3748)] = 176986, + [SMALL_STATE(3749)] = 177009, + [SMALL_STATE(3750)] = 177032, + [SMALL_STATE(3751)] = 177055, + [SMALL_STATE(3752)] = 177078, + [SMALL_STATE(3753)] = 177101, + [SMALL_STATE(3754)] = 177124, + [SMALL_STATE(3755)] = 177147, + [SMALL_STATE(3756)] = 177170, + [SMALL_STATE(3757)] = 177193, + [SMALL_STATE(3758)] = 177216, + [SMALL_STATE(3759)] = 177239, + [SMALL_STATE(3760)] = 177262, + [SMALL_STATE(3761)] = 177285, + [SMALL_STATE(3762)] = 177308, + [SMALL_STATE(3763)] = 177331, + [SMALL_STATE(3764)] = 177354, + [SMALL_STATE(3765)] = 177377, + [SMALL_STATE(3766)] = 177400, + [SMALL_STATE(3767)] = 177423, + [SMALL_STATE(3768)] = 177446, + [SMALL_STATE(3769)] = 177469, + [SMALL_STATE(3770)] = 177492, + [SMALL_STATE(3771)] = 177515, + [SMALL_STATE(3772)] = 177538, + [SMALL_STATE(3773)] = 177561, + [SMALL_STATE(3774)] = 177584, + [SMALL_STATE(3775)] = 177607, + [SMALL_STATE(3776)] = 177630, + [SMALL_STATE(3777)] = 177653, + [SMALL_STATE(3778)] = 177676, + [SMALL_STATE(3779)] = 177699, + [SMALL_STATE(3780)] = 177722, + [SMALL_STATE(3781)] = 177745, + [SMALL_STATE(3782)] = 177768, + [SMALL_STATE(3783)] = 177791, + [SMALL_STATE(3784)] = 177814, + [SMALL_STATE(3785)] = 177837, + [SMALL_STATE(3786)] = 177860, + [SMALL_STATE(3787)] = 177883, + [SMALL_STATE(3788)] = 177906, + [SMALL_STATE(3789)] = 177929, + [SMALL_STATE(3790)] = 177952, + [SMALL_STATE(3791)] = 177975, + [SMALL_STATE(3792)] = 177998, + [SMALL_STATE(3793)] = 178021, + [SMALL_STATE(3794)] = 178044, + [SMALL_STATE(3795)] = 178067, + [SMALL_STATE(3796)] = 178090, + [SMALL_STATE(3797)] = 178113, + [SMALL_STATE(3798)] = 178136, + [SMALL_STATE(3799)] = 178159, + [SMALL_STATE(3800)] = 178182, + [SMALL_STATE(3801)] = 178205, + [SMALL_STATE(3802)] = 178232, + [SMALL_STATE(3803)] = 178255, + [SMALL_STATE(3804)] = 178278, + [SMALL_STATE(3805)] = 178301, + [SMALL_STATE(3806)] = 178328, + [SMALL_STATE(3807)] = 178351, + [SMALL_STATE(3808)] = 178374, + [SMALL_STATE(3809)] = 178397, + [SMALL_STATE(3810)] = 178420, + [SMALL_STATE(3811)] = 178443, + [SMALL_STATE(3812)] = 178466, + [SMALL_STATE(3813)] = 178489, + [SMALL_STATE(3814)] = 178512, + [SMALL_STATE(3815)] = 178535, + [SMALL_STATE(3816)] = 178558, + [SMALL_STATE(3817)] = 178585, + [SMALL_STATE(3818)] = 178612, + [SMALL_STATE(3819)] = 178639, + [SMALL_STATE(3820)] = 178662, + [SMALL_STATE(3821)] = 178685, + [SMALL_STATE(3822)] = 178708, + [SMALL_STATE(3823)] = 178735, + [SMALL_STATE(3824)] = 178762, + [SMALL_STATE(3825)] = 178785, + [SMALL_STATE(3826)] = 178808, + [SMALL_STATE(3827)] = 178831, + [SMALL_STATE(3828)] = 178854, + [SMALL_STATE(3829)] = 178877, + [SMALL_STATE(3830)] = 178900, + [SMALL_STATE(3831)] = 178923, + [SMALL_STATE(3832)] = 178946, + [SMALL_STATE(3833)] = 178969, + [SMALL_STATE(3834)] = 178992, + [SMALL_STATE(3835)] = 179015, + [SMALL_STATE(3836)] = 179038, + [SMALL_STATE(3837)] = 179061, + [SMALL_STATE(3838)] = 179084, + [SMALL_STATE(3839)] = 179107, + [SMALL_STATE(3840)] = 179130, + [SMALL_STATE(3841)] = 179153, + [SMALL_STATE(3842)] = 179176, + [SMALL_STATE(3843)] = 179199, + [SMALL_STATE(3844)] = 179222, + [SMALL_STATE(3845)] = 179245, + [SMALL_STATE(3846)] = 179268, + [SMALL_STATE(3847)] = 179291, + [SMALL_STATE(3848)] = 179318, + [SMALL_STATE(3849)] = 179341, + [SMALL_STATE(3850)] = 179364, + [SMALL_STATE(3851)] = 179387, + [SMALL_STATE(3852)] = 179410, + [SMALL_STATE(3853)] = 179433, + [SMALL_STATE(3854)] = 179456, + [SMALL_STATE(3855)] = 179479, + [SMALL_STATE(3856)] = 179506, + [SMALL_STATE(3857)] = 179533, + [SMALL_STATE(3858)] = 179556, + [SMALL_STATE(3859)] = 179579, + [SMALL_STATE(3860)] = 179602, + [SMALL_STATE(3861)] = 179629, + [SMALL_STATE(3862)] = 179652, + [SMALL_STATE(3863)] = 179675, + [SMALL_STATE(3864)] = 179698, + [SMALL_STATE(3865)] = 179721, + [SMALL_STATE(3866)] = 179744, + [SMALL_STATE(3867)] = 179767, + [SMALL_STATE(3868)] = 179794, + [SMALL_STATE(3869)] = 179817, + [SMALL_STATE(3870)] = 179840, + [SMALL_STATE(3871)] = 179863, + [SMALL_STATE(3872)] = 179886, + [SMALL_STATE(3873)] = 179909, + [SMALL_STATE(3874)] = 179932, + [SMALL_STATE(3875)] = 179955, + [SMALL_STATE(3876)] = 179978, + [SMALL_STATE(3877)] = 180001, + [SMALL_STATE(3878)] = 180024, + [SMALL_STATE(3879)] = 180047, + [SMALL_STATE(3880)] = 180070, + [SMALL_STATE(3881)] = 180093, + [SMALL_STATE(3882)] = 180116, + [SMALL_STATE(3883)] = 180139, + [SMALL_STATE(3884)] = 180162, + [SMALL_STATE(3885)] = 180185, + [SMALL_STATE(3886)] = 180208, + [SMALL_STATE(3887)] = 180231, + [SMALL_STATE(3888)] = 180254, + [SMALL_STATE(3889)] = 180281, + [SMALL_STATE(3890)] = 180304, + [SMALL_STATE(3891)] = 180327, + [SMALL_STATE(3892)] = 180350, + [SMALL_STATE(3893)] = 180373, + [SMALL_STATE(3894)] = 180396, + [SMALL_STATE(3895)] = 180419, + [SMALL_STATE(3896)] = 180442, + [SMALL_STATE(3897)] = 180465, + [SMALL_STATE(3898)] = 180488, + [SMALL_STATE(3899)] = 180511, + [SMALL_STATE(3900)] = 180534, + [SMALL_STATE(3901)] = 180557, + [SMALL_STATE(3902)] = 180580, + [SMALL_STATE(3903)] = 180607, + [SMALL_STATE(3904)] = 180630, + [SMALL_STATE(3905)] = 180653, + [SMALL_STATE(3906)] = 180676, + [SMALL_STATE(3907)] = 180699, + [SMALL_STATE(3908)] = 180722, + [SMALL_STATE(3909)] = 180745, + [SMALL_STATE(3910)] = 180768, + [SMALL_STATE(3911)] = 180791, + [SMALL_STATE(3912)] = 180814, + [SMALL_STATE(3913)] = 180837, + [SMALL_STATE(3914)] = 180860, + [SMALL_STATE(3915)] = 180883, + [SMALL_STATE(3916)] = 180906, + [SMALL_STATE(3917)] = 180929, + [SMALL_STATE(3918)] = 180952, + [SMALL_STATE(3919)] = 180975, + [SMALL_STATE(3920)] = 180998, + [SMALL_STATE(3921)] = 181021, + [SMALL_STATE(3922)] = 181044, + [SMALL_STATE(3923)] = 181067, + [SMALL_STATE(3924)] = 181094, + [SMALL_STATE(3925)] = 181117, + [SMALL_STATE(3926)] = 181140, + [SMALL_STATE(3927)] = 181167, + [SMALL_STATE(3928)] = 181190, + [SMALL_STATE(3929)] = 181213, + [SMALL_STATE(3930)] = 181236, + [SMALL_STATE(3931)] = 181259, + [SMALL_STATE(3932)] = 181282, + [SMALL_STATE(3933)] = 181309, + [SMALL_STATE(3934)] = 181332, + [SMALL_STATE(3935)] = 181355, + [SMALL_STATE(3936)] = 181378, + [SMALL_STATE(3937)] = 181401, + [SMALL_STATE(3938)] = 181428, + [SMALL_STATE(3939)] = 181451, + [SMALL_STATE(3940)] = 181474, + [SMALL_STATE(3941)] = 181497, + [SMALL_STATE(3942)] = 181520, + [SMALL_STATE(3943)] = 181543, + [SMALL_STATE(3944)] = 181566, + [SMALL_STATE(3945)] = 181589, + [SMALL_STATE(3946)] = 181612, + [SMALL_STATE(3947)] = 181635, + [SMALL_STATE(3948)] = 181658, + [SMALL_STATE(3949)] = 181681, + [SMALL_STATE(3950)] = 181704, + [SMALL_STATE(3951)] = 181727, + [SMALL_STATE(3952)] = 181750, + [SMALL_STATE(3953)] = 181773, + [SMALL_STATE(3954)] = 181796, + [SMALL_STATE(3955)] = 181819, + [SMALL_STATE(3956)] = 181842, + [SMALL_STATE(3957)] = 181865, + [SMALL_STATE(3958)] = 181892, + [SMALL_STATE(3959)] = 181915, + [SMALL_STATE(3960)] = 181942, + [SMALL_STATE(3961)] = 181965, + [SMALL_STATE(3962)] = 181988, + [SMALL_STATE(3963)] = 182012, + [SMALL_STATE(3964)] = 182036, + [SMALL_STATE(3965)] = 182060, + [SMALL_STATE(3966)] = 182084, + [SMALL_STATE(3967)] = 182108, + [SMALL_STATE(3968)] = 182132, + [SMALL_STATE(3969)] = 182156, + [SMALL_STATE(3970)] = 182180, + [SMALL_STATE(3971)] = 182204, + [SMALL_STATE(3972)] = 182228, + [SMALL_STATE(3973)] = 182252, + [SMALL_STATE(3974)] = 182276, + [SMALL_STATE(3975)] = 182300, + [SMALL_STATE(3976)] = 182324, + [SMALL_STATE(3977)] = 182348, + [SMALL_STATE(3978)] = 182372, + [SMALL_STATE(3979)] = 182396, + [SMALL_STATE(3980)] = 182420, + [SMALL_STATE(3981)] = 182444, + [SMALL_STATE(3982)] = 182468, + [SMALL_STATE(3983)] = 182492, + [SMALL_STATE(3984)] = 182516, + [SMALL_STATE(3985)] = 182540, + [SMALL_STATE(3986)] = 182564, + [SMALL_STATE(3987)] = 182588, + [SMALL_STATE(3988)] = 182612, + [SMALL_STATE(3989)] = 182636, + [SMALL_STATE(3990)] = 182660, + [SMALL_STATE(3991)] = 182684, + [SMALL_STATE(3992)] = 182708, + [SMALL_STATE(3993)] = 182732, + [SMALL_STATE(3994)] = 182756, + [SMALL_STATE(3995)] = 182780, + [SMALL_STATE(3996)] = 182804, + [SMALL_STATE(3997)] = 182828, + [SMALL_STATE(3998)] = 182852, + [SMALL_STATE(3999)] = 182876, + [SMALL_STATE(4000)] = 182900, + [SMALL_STATE(4001)] = 182924, + [SMALL_STATE(4002)] = 182948, + [SMALL_STATE(4003)] = 182972, + [SMALL_STATE(4004)] = 182996, + [SMALL_STATE(4005)] = 183020, + [SMALL_STATE(4006)] = 183044, + [SMALL_STATE(4007)] = 183068, + [SMALL_STATE(4008)] = 183092, + [SMALL_STATE(4009)] = 183116, + [SMALL_STATE(4010)] = 183140, + [SMALL_STATE(4011)] = 183164, + [SMALL_STATE(4012)] = 183188, + [SMALL_STATE(4013)] = 183212, + [SMALL_STATE(4014)] = 183236, + [SMALL_STATE(4015)] = 183260, + [SMALL_STATE(4016)] = 183284, + [SMALL_STATE(4017)] = 183308, + [SMALL_STATE(4018)] = 183332, + [SMALL_STATE(4019)] = 183356, + [SMALL_STATE(4020)] = 183380, + [SMALL_STATE(4021)] = 183404, + [SMALL_STATE(4022)] = 183428, + [SMALL_STATE(4023)] = 183452, + [SMALL_STATE(4024)] = 183476, + [SMALL_STATE(4025)] = 183500, + [SMALL_STATE(4026)] = 183524, + [SMALL_STATE(4027)] = 183548, + [SMALL_STATE(4028)] = 183572, + [SMALL_STATE(4029)] = 183596, + [SMALL_STATE(4030)] = 183620, + [SMALL_STATE(4031)] = 183644, + [SMALL_STATE(4032)] = 183668, + [SMALL_STATE(4033)] = 183692, + [SMALL_STATE(4034)] = 183716, + [SMALL_STATE(4035)] = 183740, + [SMALL_STATE(4036)] = 183764, + [SMALL_STATE(4037)] = 183788, + [SMALL_STATE(4038)] = 183812, + [SMALL_STATE(4039)] = 183836, + [SMALL_STATE(4040)] = 183860, + [SMALL_STATE(4041)] = 183884, + [SMALL_STATE(4042)] = 183908, + [SMALL_STATE(4043)] = 183932, + [SMALL_STATE(4044)] = 183956, + [SMALL_STATE(4045)] = 183980, + [SMALL_STATE(4046)] = 184004, + [SMALL_STATE(4047)] = 184028, + [SMALL_STATE(4048)] = 184052, + [SMALL_STATE(4049)] = 184076, + [SMALL_STATE(4050)] = 184100, + [SMALL_STATE(4051)] = 184124, + [SMALL_STATE(4052)] = 184148, + [SMALL_STATE(4053)] = 184172, + [SMALL_STATE(4054)] = 184196, + [SMALL_STATE(4055)] = 184220, + [SMALL_STATE(4056)] = 184244, + [SMALL_STATE(4057)] = 184268, + [SMALL_STATE(4058)] = 184292, + [SMALL_STATE(4059)] = 184316, + [SMALL_STATE(4060)] = 184340, + [SMALL_STATE(4061)] = 184364, + [SMALL_STATE(4062)] = 184388, + [SMALL_STATE(4063)] = 184412, + [SMALL_STATE(4064)] = 184436, + [SMALL_STATE(4065)] = 184460, + [SMALL_STATE(4066)] = 184484, + [SMALL_STATE(4067)] = 184508, + [SMALL_STATE(4068)] = 184525, + [SMALL_STATE(4069)] = 184542, + [SMALL_STATE(4070)] = 184560, + [SMALL_STATE(4071)] = 184578, + [SMALL_STATE(4072)] = 184596, + [SMALL_STATE(4073)] = 184614, + [SMALL_STATE(4074)] = 184632, + [SMALL_STATE(4075)] = 184648, + [SMALL_STATE(4076)] = 184666, + [SMALL_STATE(4077)] = 184684, + [SMALL_STATE(4078)] = 184702, + [SMALL_STATE(4079)] = 184720, + [SMALL_STATE(4080)] = 184736, + [SMALL_STATE(4081)] = 184754, + [SMALL_STATE(4082)] = 184772, + [SMALL_STATE(4083)] = 184790, + [SMALL_STATE(4084)] = 184808, + [SMALL_STATE(4085)] = 184824, + [SMALL_STATE(4086)] = 184840, + [SMALL_STATE(4087)] = 184858, + [SMALL_STATE(4088)] = 184876, + [SMALL_STATE(4089)] = 184894, + [SMALL_STATE(4090)] = 184912, + [SMALL_STATE(4091)] = 184930, + [SMALL_STATE(4092)] = 184948, + [SMALL_STATE(4093)] = 184966, + [SMALL_STATE(4094)] = 184984, + [SMALL_STATE(4095)] = 185002, + [SMALL_STATE(4096)] = 185020, + [SMALL_STATE(4097)] = 185038, + [SMALL_STATE(4098)] = 185056, + [SMALL_STATE(4099)] = 185074, + [SMALL_STATE(4100)] = 185092, + [SMALL_STATE(4101)] = 185110, + [SMALL_STATE(4102)] = 185128, + [SMALL_STATE(4103)] = 185144, + [SMALL_STATE(4104)] = 185162, + [SMALL_STATE(4105)] = 185180, + [SMALL_STATE(4106)] = 185198, + [SMALL_STATE(4107)] = 185216, + [SMALL_STATE(4108)] = 185234, + [SMALL_STATE(4109)] = 185252, + [SMALL_STATE(4110)] = 185270, + [SMALL_STATE(4111)] = 185288, + [SMALL_STATE(4112)] = 185306, + [SMALL_STATE(4113)] = 185324, + [SMALL_STATE(4114)] = 185342, + [SMALL_STATE(4115)] = 185358, + [SMALL_STATE(4116)] = 185376, + [SMALL_STATE(4117)] = 185394, + [SMALL_STATE(4118)] = 185412, + [SMALL_STATE(4119)] = 185428, + [SMALL_STATE(4120)] = 185446, + [SMALL_STATE(4121)] = 185464, + [SMALL_STATE(4122)] = 185480, + [SMALL_STATE(4123)] = 185498, + [SMALL_STATE(4124)] = 185516, + [SMALL_STATE(4125)] = 185534, + [SMALL_STATE(4126)] = 185552, + [SMALL_STATE(4127)] = 185570, + [SMALL_STATE(4128)] = 185588, + [SMALL_STATE(4129)] = 185606, + [SMALL_STATE(4130)] = 185622, + [SMALL_STATE(4131)] = 185640, + [SMALL_STATE(4132)] = 185658, + [SMALL_STATE(4133)] = 185676, + [SMALL_STATE(4134)] = 185694, + [SMALL_STATE(4135)] = 185712, + [SMALL_STATE(4136)] = 185730, + [SMALL_STATE(4137)] = 185748, + [SMALL_STATE(4138)] = 185766, + [SMALL_STATE(4139)] = 185784, + [SMALL_STATE(4140)] = 185802, + [SMALL_STATE(4141)] = 185818, + [SMALL_STATE(4142)] = 185836, + [SMALL_STATE(4143)] = 185854, + [SMALL_STATE(4144)] = 185872, + [SMALL_STATE(4145)] = 185890, + [SMALL_STATE(4146)] = 185908, + [SMALL_STATE(4147)] = 185926, + [SMALL_STATE(4148)] = 185944, + [SMALL_STATE(4149)] = 185962, + [SMALL_STATE(4150)] = 185980, + [SMALL_STATE(4151)] = 185998, + [SMALL_STATE(4152)] = 186016, + [SMALL_STATE(4153)] = 186034, + [SMALL_STATE(4154)] = 186052, + [SMALL_STATE(4155)] = 186070, + [SMALL_STATE(4156)] = 186088, + [SMALL_STATE(4157)] = 186106, + [SMALL_STATE(4158)] = 186124, + [SMALL_STATE(4159)] = 186142, + [SMALL_STATE(4160)] = 186160, + [SMALL_STATE(4161)] = 186178, + [SMALL_STATE(4162)] = 186196, + [SMALL_STATE(4163)] = 186214, + [SMALL_STATE(4164)] = 186232, + [SMALL_STATE(4165)] = 186250, + [SMALL_STATE(4166)] = 186268, + [SMALL_STATE(4167)] = 186286, + [SMALL_STATE(4168)] = 186304, + [SMALL_STATE(4169)] = 186322, + [SMALL_STATE(4170)] = 186340, + [SMALL_STATE(4171)] = 186358, + [SMALL_STATE(4172)] = 186376, + [SMALL_STATE(4173)] = 186392, + [SMALL_STATE(4174)] = 186410, + [SMALL_STATE(4175)] = 186428, + [SMALL_STATE(4176)] = 186446, + [SMALL_STATE(4177)] = 186464, + [SMALL_STATE(4178)] = 186482, + [SMALL_STATE(4179)] = 186498, + [SMALL_STATE(4180)] = 186516, + [SMALL_STATE(4181)] = 186534, + [SMALL_STATE(4182)] = 186552, + [SMALL_STATE(4183)] = 186570, + [SMALL_STATE(4184)] = 186588, + [SMALL_STATE(4185)] = 186606, + [SMALL_STATE(4186)] = 186624, + [SMALL_STATE(4187)] = 186639, + [SMALL_STATE(4188)] = 186654, + [SMALL_STATE(4189)] = 186669, + [SMALL_STATE(4190)] = 186684, + [SMALL_STATE(4191)] = 186699, + [SMALL_STATE(4192)] = 186714, + [SMALL_STATE(4193)] = 186729, + [SMALL_STATE(4194)] = 186744, + [SMALL_STATE(4195)] = 186759, + [SMALL_STATE(4196)] = 186774, + [SMALL_STATE(4197)] = 186788, + [SMALL_STATE(4198)] = 186802, + [SMALL_STATE(4199)] = 186816, + [SMALL_STATE(4200)] = 186830, + [SMALL_STATE(4201)] = 186844, + [SMALL_STATE(4202)] = 186858, + [SMALL_STATE(4203)] = 186872, + [SMALL_STATE(4204)] = 186886, + [SMALL_STATE(4205)] = 186900, + [SMALL_STATE(4206)] = 186914, + [SMALL_STATE(4207)] = 186928, + [SMALL_STATE(4208)] = 186942, + [SMALL_STATE(4209)] = 186956, + [SMALL_STATE(4210)] = 186970, + [SMALL_STATE(4211)] = 186984, + [SMALL_STATE(4212)] = 186998, + [SMALL_STATE(4213)] = 187012, + [SMALL_STATE(4214)] = 187026, + [SMALL_STATE(4215)] = 187040, + [SMALL_STATE(4216)] = 187054, + [SMALL_STATE(4217)] = 187068, + [SMALL_STATE(4218)] = 187080, + [SMALL_STATE(4219)] = 187094, + [SMALL_STATE(4220)] = 187104, + [SMALL_STATE(4221)] = 187118, + [SMALL_STATE(4222)] = 187132, + [SMALL_STATE(4223)] = 187146, + [SMALL_STATE(4224)] = 187160, + [SMALL_STATE(4225)] = 187174, + [SMALL_STATE(4226)] = 187188, + [SMALL_STATE(4227)] = 187202, + [SMALL_STATE(4228)] = 187216, + [SMALL_STATE(4229)] = 187230, + [SMALL_STATE(4230)] = 187244, + [SMALL_STATE(4231)] = 187258, + [SMALL_STATE(4232)] = 187272, + [SMALL_STATE(4233)] = 187286, + [SMALL_STATE(4234)] = 187300, + [SMALL_STATE(4235)] = 187314, + [SMALL_STATE(4236)] = 187328, + [SMALL_STATE(4237)] = 187342, + [SMALL_STATE(4238)] = 187356, + [SMALL_STATE(4239)] = 187370, + [SMALL_STATE(4240)] = 187384, + [SMALL_STATE(4241)] = 187398, + [SMALL_STATE(4242)] = 187412, + [SMALL_STATE(4243)] = 187426, + [SMALL_STATE(4244)] = 187440, + [SMALL_STATE(4245)] = 187450, + [SMALL_STATE(4246)] = 187464, + [SMALL_STATE(4247)] = 187478, + [SMALL_STATE(4248)] = 187492, + [SMALL_STATE(4249)] = 187506, + [SMALL_STATE(4250)] = 187520, + [SMALL_STATE(4251)] = 187534, + [SMALL_STATE(4252)] = 187548, + [SMALL_STATE(4253)] = 187562, + [SMALL_STATE(4254)] = 187576, + [SMALL_STATE(4255)] = 187586, + [SMALL_STATE(4256)] = 187600, + [SMALL_STATE(4257)] = 187614, + [SMALL_STATE(4258)] = 187628, + [SMALL_STATE(4259)] = 187642, + [SMALL_STATE(4260)] = 187652, + [SMALL_STATE(4261)] = 187666, + [SMALL_STATE(4262)] = 187680, + [SMALL_STATE(4263)] = 187694, + [SMALL_STATE(4264)] = 187708, + [SMALL_STATE(4265)] = 187722, + [SMALL_STATE(4266)] = 187736, + [SMALL_STATE(4267)] = 187750, + [SMALL_STATE(4268)] = 187764, + [SMALL_STATE(4269)] = 187778, + [SMALL_STATE(4270)] = 187792, + [SMALL_STATE(4271)] = 187806, + [SMALL_STATE(4272)] = 187820, + [SMALL_STATE(4273)] = 187834, + [SMALL_STATE(4274)] = 187848, + [SMALL_STATE(4275)] = 187862, + [SMALL_STATE(4276)] = 187876, + [SMALL_STATE(4277)] = 187890, + [SMALL_STATE(4278)] = 187904, + [SMALL_STATE(4279)] = 187918, + [SMALL_STATE(4280)] = 187932, + [SMALL_STATE(4281)] = 187946, + [SMALL_STATE(4282)] = 187960, + [SMALL_STATE(4283)] = 187974, + [SMALL_STATE(4284)] = 187988, + [SMALL_STATE(4285)] = 188002, + [SMALL_STATE(4286)] = 188016, + [SMALL_STATE(4287)] = 188030, + [SMALL_STATE(4288)] = 188044, + [SMALL_STATE(4289)] = 188054, + [SMALL_STATE(4290)] = 188068, + [SMALL_STATE(4291)] = 188082, + [SMALL_STATE(4292)] = 188096, + [SMALL_STATE(4293)] = 188110, + [SMALL_STATE(4294)] = 188124, + [SMALL_STATE(4295)] = 188138, + [SMALL_STATE(4296)] = 188152, + [SMALL_STATE(4297)] = 188166, + [SMALL_STATE(4298)] = 188180, + [SMALL_STATE(4299)] = 188194, + [SMALL_STATE(4300)] = 188208, + [SMALL_STATE(4301)] = 188222, + [SMALL_STATE(4302)] = 188236, + [SMALL_STATE(4303)] = 188250, + [SMALL_STATE(4304)] = 188264, + [SMALL_STATE(4305)] = 188274, + [SMALL_STATE(4306)] = 188288, + [SMALL_STATE(4307)] = 188302, + [SMALL_STATE(4308)] = 188316, + [SMALL_STATE(4309)] = 188330, + [SMALL_STATE(4310)] = 188344, + [SMALL_STATE(4311)] = 188358, + [SMALL_STATE(4312)] = 188372, + [SMALL_STATE(4313)] = 188386, + [SMALL_STATE(4314)] = 188400, + [SMALL_STATE(4315)] = 188414, + [SMALL_STATE(4316)] = 188424, + [SMALL_STATE(4317)] = 188438, + [SMALL_STATE(4318)] = 188452, + [SMALL_STATE(4319)] = 188466, + [SMALL_STATE(4320)] = 188476, + [SMALL_STATE(4321)] = 188490, + [SMALL_STATE(4322)] = 188500, + [SMALL_STATE(4323)] = 188510, + [SMALL_STATE(4324)] = 188524, + [SMALL_STATE(4325)] = 188538, + [SMALL_STATE(4326)] = 188552, + [SMALL_STATE(4327)] = 188566, + [SMALL_STATE(4328)] = 188580, + [SMALL_STATE(4329)] = 188594, + [SMALL_STATE(4330)] = 188604, + [SMALL_STATE(4331)] = 188614, + [SMALL_STATE(4332)] = 188628, + [SMALL_STATE(4333)] = 188642, + [SMALL_STATE(4334)] = 188656, + [SMALL_STATE(4335)] = 188670, + [SMALL_STATE(4336)] = 188684, + [SMALL_STATE(4337)] = 188698, + [SMALL_STATE(4338)] = 188712, + [SMALL_STATE(4339)] = 188726, + [SMALL_STATE(4340)] = 188736, + [SMALL_STATE(4341)] = 188750, + [SMALL_STATE(4342)] = 188764, + [SMALL_STATE(4343)] = 188778, + [SMALL_STATE(4344)] = 188792, + [SMALL_STATE(4345)] = 188806, + [SMALL_STATE(4346)] = 188820, + [SMALL_STATE(4347)] = 188834, + [SMALL_STATE(4348)] = 188848, + [SMALL_STATE(4349)] = 188858, + [SMALL_STATE(4350)] = 188872, + [SMALL_STATE(4351)] = 188886, + [SMALL_STATE(4352)] = 188900, + [SMALL_STATE(4353)] = 188914, + [SMALL_STATE(4354)] = 188928, + [SMALL_STATE(4355)] = 188942, + [SMALL_STATE(4356)] = 188956, + [SMALL_STATE(4357)] = 188970, + [SMALL_STATE(4358)] = 188984, + [SMALL_STATE(4359)] = 188998, + [SMALL_STATE(4360)] = 189012, + [SMALL_STATE(4361)] = 189026, + [SMALL_STATE(4362)] = 189036, + [SMALL_STATE(4363)] = 189050, + [SMALL_STATE(4364)] = 189064, + [SMALL_STATE(4365)] = 189078, + [SMALL_STATE(4366)] = 189092, + [SMALL_STATE(4367)] = 189106, + [SMALL_STATE(4368)] = 189120, + [SMALL_STATE(4369)] = 189134, + [SMALL_STATE(4370)] = 189148, + [SMALL_STATE(4371)] = 189162, + [SMALL_STATE(4372)] = 189176, + [SMALL_STATE(4373)] = 189186, + [SMALL_STATE(4374)] = 189196, + [SMALL_STATE(4375)] = 189206, + [SMALL_STATE(4376)] = 189216, + [SMALL_STATE(4377)] = 189226, + [SMALL_STATE(4378)] = 189236, + [SMALL_STATE(4379)] = 189246, + [SMALL_STATE(4380)] = 189256, + [SMALL_STATE(4381)] = 189266, + [SMALL_STATE(4382)] = 189276, + [SMALL_STATE(4383)] = 189286, + [SMALL_STATE(4384)] = 189296, + [SMALL_STATE(4385)] = 189306, + [SMALL_STATE(4386)] = 189316, + [SMALL_STATE(4387)] = 189326, + [SMALL_STATE(4388)] = 189336, + [SMALL_STATE(4389)] = 189346, + [SMALL_STATE(4390)] = 189356, + [SMALL_STATE(4391)] = 189366, + [SMALL_STATE(4392)] = 189376, + [SMALL_STATE(4393)] = 189386, + [SMALL_STATE(4394)] = 189396, + [SMALL_STATE(4395)] = 189406, + [SMALL_STATE(4396)] = 189416, + [SMALL_STATE(4397)] = 189426, + [SMALL_STATE(4398)] = 189436, + [SMALL_STATE(4399)] = 189446, + [SMALL_STATE(4400)] = 189456, + [SMALL_STATE(4401)] = 189466, + [SMALL_STATE(4402)] = 189476, + [SMALL_STATE(4403)] = 189486, + [SMALL_STATE(4404)] = 189496, + [SMALL_STATE(4405)] = 189506, + [SMALL_STATE(4406)] = 189516, + [SMALL_STATE(4407)] = 189526, + [SMALL_STATE(4408)] = 189536, + [SMALL_STATE(4409)] = 189546, + [SMALL_STATE(4410)] = 189556, + [SMALL_STATE(4411)] = 189566, + [SMALL_STATE(4412)] = 189576, + [SMALL_STATE(4413)] = 189586, + [SMALL_STATE(4414)] = 189596, + [SMALL_STATE(4415)] = 189606, + [SMALL_STATE(4416)] = 189616, + [SMALL_STATE(4417)] = 189626, + [SMALL_STATE(4418)] = 189636, + [SMALL_STATE(4419)] = 189646, + [SMALL_STATE(4420)] = 189656, + [SMALL_STATE(4421)] = 189666, + [SMALL_STATE(4422)] = 189676, + [SMALL_STATE(4423)] = 189686, + [SMALL_STATE(4424)] = 189696, + [SMALL_STATE(4425)] = 189706, + [SMALL_STATE(4426)] = 189716, + [SMALL_STATE(4427)] = 189726, + [SMALL_STATE(4428)] = 189736, + [SMALL_STATE(4429)] = 189746, + [SMALL_STATE(4430)] = 189756, + [SMALL_STATE(4431)] = 189766, + [SMALL_STATE(4432)] = 189776, + [SMALL_STATE(4433)] = 189786, + [SMALL_STATE(4434)] = 189796, + [SMALL_STATE(4435)] = 189806, + [SMALL_STATE(4436)] = 189816, + [SMALL_STATE(4437)] = 189826, + [SMALL_STATE(4438)] = 189836, + [SMALL_STATE(4439)] = 189846, + [SMALL_STATE(4440)] = 189856, + [SMALL_STATE(4441)] = 189866, + [SMALL_STATE(4442)] = 189876, + [SMALL_STATE(4443)] = 189886, + [SMALL_STATE(4444)] = 189896, + [SMALL_STATE(4445)] = 189906, + [SMALL_STATE(4446)] = 189916, + [SMALL_STATE(4447)] = 189926, + [SMALL_STATE(4448)] = 189936, + [SMALL_STATE(4449)] = 189946, + [SMALL_STATE(4450)] = 189956, + [SMALL_STATE(4451)] = 189966, + [SMALL_STATE(4452)] = 189976, + [SMALL_STATE(4453)] = 189986, + [SMALL_STATE(4454)] = 189996, + [SMALL_STATE(4455)] = 190006, + [SMALL_STATE(4456)] = 190016, + [SMALL_STATE(4457)] = 190026, + [SMALL_STATE(4458)] = 190036, + [SMALL_STATE(4459)] = 190046, + [SMALL_STATE(4460)] = 190056, + [SMALL_STATE(4461)] = 190066, + [SMALL_STATE(4462)] = 190076, + [SMALL_STATE(4463)] = 190086, + [SMALL_STATE(4464)] = 190096, + [SMALL_STATE(4465)] = 190106, + [SMALL_STATE(4466)] = 190116, + [SMALL_STATE(4467)] = 190126, + [SMALL_STATE(4468)] = 190136, + [SMALL_STATE(4469)] = 190142, + [SMALL_STATE(4470)] = 190152, + [SMALL_STATE(4471)] = 190162, + [SMALL_STATE(4472)] = 190172, + [SMALL_STATE(4473)] = 190180, + [SMALL_STATE(4474)] = 190190, + [SMALL_STATE(4475)] = 190200, + [SMALL_STATE(4476)] = 190210, + [SMALL_STATE(4477)] = 190220, + [SMALL_STATE(4478)] = 190230, + [SMALL_STATE(4479)] = 190240, + [SMALL_STATE(4480)] = 190250, + [SMALL_STATE(4481)] = 190260, + [SMALL_STATE(4482)] = 190270, + [SMALL_STATE(4483)] = 190280, + [SMALL_STATE(4484)] = 190290, + [SMALL_STATE(4485)] = 190300, + [SMALL_STATE(4486)] = 190310, + [SMALL_STATE(4487)] = 190320, + [SMALL_STATE(4488)] = 190330, + [SMALL_STATE(4489)] = 190340, + [SMALL_STATE(4490)] = 190350, + [SMALL_STATE(4491)] = 190360, + [SMALL_STATE(4492)] = 190370, + [SMALL_STATE(4493)] = 190380, + [SMALL_STATE(4494)] = 190390, + [SMALL_STATE(4495)] = 190400, + [SMALL_STATE(4496)] = 190410, + [SMALL_STATE(4497)] = 190420, + [SMALL_STATE(4498)] = 190430, + [SMALL_STATE(4499)] = 190440, + [SMALL_STATE(4500)] = 190450, + [SMALL_STATE(4501)] = 190460, + [SMALL_STATE(4502)] = 190470, + [SMALL_STATE(4503)] = 190480, + [SMALL_STATE(4504)] = 190490, + [SMALL_STATE(4505)] = 190500, + [SMALL_STATE(4506)] = 190510, + [SMALL_STATE(4507)] = 190520, + [SMALL_STATE(4508)] = 190530, + [SMALL_STATE(4509)] = 190540, + [SMALL_STATE(4510)] = 190550, + [SMALL_STATE(4511)] = 190560, + [SMALL_STATE(4512)] = 190570, + [SMALL_STATE(4513)] = 190580, + [SMALL_STATE(4514)] = 190590, + [SMALL_STATE(4515)] = 190600, + [SMALL_STATE(4516)] = 190610, + [SMALL_STATE(4517)] = 190620, + [SMALL_STATE(4518)] = 190630, + [SMALL_STATE(4519)] = 190640, + [SMALL_STATE(4520)] = 190650, + [SMALL_STATE(4521)] = 190660, + [SMALL_STATE(4522)] = 190666, + [SMALL_STATE(4523)] = 190676, + [SMALL_STATE(4524)] = 190686, + [SMALL_STATE(4525)] = 190696, + [SMALL_STATE(4526)] = 190706, + [SMALL_STATE(4527)] = 190716, + [SMALL_STATE(4528)] = 190726, + [SMALL_STATE(4529)] = 190736, + [SMALL_STATE(4530)] = 190746, + [SMALL_STATE(4531)] = 190756, + [SMALL_STATE(4532)] = 190766, + [SMALL_STATE(4533)] = 190776, + [SMALL_STATE(4534)] = 190786, + [SMALL_STATE(4535)] = 190796, + [SMALL_STATE(4536)] = 190806, + [SMALL_STATE(4537)] = 190816, + [SMALL_STATE(4538)] = 190826, + [SMALL_STATE(4539)] = 190836, + [SMALL_STATE(4540)] = 190846, + [SMALL_STATE(4541)] = 190856, + [SMALL_STATE(4542)] = 190866, + [SMALL_STATE(4543)] = 190876, + [SMALL_STATE(4544)] = 190884, + [SMALL_STATE(4545)] = 190894, + [SMALL_STATE(4546)] = 190904, + [SMALL_STATE(4547)] = 190914, + [SMALL_STATE(4548)] = 190924, + [SMALL_STATE(4549)] = 190934, + [SMALL_STATE(4550)] = 190944, + [SMALL_STATE(4551)] = 190954, + [SMALL_STATE(4552)] = 190964, + [SMALL_STATE(4553)] = 190974, + [SMALL_STATE(4554)] = 190984, + [SMALL_STATE(4555)] = 190994, + [SMALL_STATE(4556)] = 191004, + [SMALL_STATE(4557)] = 191014, + [SMALL_STATE(4558)] = 191024, + [SMALL_STATE(4559)] = 191034, + [SMALL_STATE(4560)] = 191044, + [SMALL_STATE(4561)] = 191054, + [SMALL_STATE(4562)] = 191064, + [SMALL_STATE(4563)] = 191074, + [SMALL_STATE(4564)] = 191084, + [SMALL_STATE(4565)] = 191094, + [SMALL_STATE(4566)] = 191104, + [SMALL_STATE(4567)] = 191114, + [SMALL_STATE(4568)] = 191124, + [SMALL_STATE(4569)] = 191134, + [SMALL_STATE(4570)] = 191144, + [SMALL_STATE(4571)] = 191154, + [SMALL_STATE(4572)] = 191164, + [SMALL_STATE(4573)] = 191174, + [SMALL_STATE(4574)] = 191184, + [SMALL_STATE(4575)] = 191194, + [SMALL_STATE(4576)] = 191204, + [SMALL_STATE(4577)] = 191214, + [SMALL_STATE(4578)] = 191224, + [SMALL_STATE(4579)] = 191234, + [SMALL_STATE(4580)] = 191244, + [SMALL_STATE(4581)] = 191254, + [SMALL_STATE(4582)] = 191264, + [SMALL_STATE(4583)] = 191274, + [SMALL_STATE(4584)] = 191284, + [SMALL_STATE(4585)] = 191294, + [SMALL_STATE(4586)] = 191304, + [SMALL_STATE(4587)] = 191314, + [SMALL_STATE(4588)] = 191324, + [SMALL_STATE(4589)] = 191334, + [SMALL_STATE(4590)] = 191344, + [SMALL_STATE(4591)] = 191354, + [SMALL_STATE(4592)] = 191364, + [SMALL_STATE(4593)] = 191374, + [SMALL_STATE(4594)] = 191384, + [SMALL_STATE(4595)] = 191394, + [SMALL_STATE(4596)] = 191404, + [SMALL_STATE(4597)] = 191414, + [SMALL_STATE(4598)] = 191424, + [SMALL_STATE(4599)] = 191434, + [SMALL_STATE(4600)] = 191444, + [SMALL_STATE(4601)] = 191454, + [SMALL_STATE(4602)] = 191464, + [SMALL_STATE(4603)] = 191474, + [SMALL_STATE(4604)] = 191484, + [SMALL_STATE(4605)] = 191494, + [SMALL_STATE(4606)] = 191504, + [SMALL_STATE(4607)] = 191514, + [SMALL_STATE(4608)] = 191524, + [SMALL_STATE(4609)] = 191534, + [SMALL_STATE(4610)] = 191544, + [SMALL_STATE(4611)] = 191554, + [SMALL_STATE(4612)] = 191564, + [SMALL_STATE(4613)] = 191574, + [SMALL_STATE(4614)] = 191584, + [SMALL_STATE(4615)] = 191594, + [SMALL_STATE(4616)] = 191604, + [SMALL_STATE(4617)] = 191614, + [SMALL_STATE(4618)] = 191624, + [SMALL_STATE(4619)] = 191634, + [SMALL_STATE(4620)] = 191644, + [SMALL_STATE(4621)] = 191654, + [SMALL_STATE(4622)] = 191664, + [SMALL_STATE(4623)] = 191674, + [SMALL_STATE(4624)] = 191684, + [SMALL_STATE(4625)] = 191694, + [SMALL_STATE(4626)] = 191704, + [SMALL_STATE(4627)] = 191714, + [SMALL_STATE(4628)] = 191724, + [SMALL_STATE(4629)] = 191734, + [SMALL_STATE(4630)] = 191744, + [SMALL_STATE(4631)] = 191754, + [SMALL_STATE(4632)] = 191764, + [SMALL_STATE(4633)] = 191774, + [SMALL_STATE(4634)] = 191784, + [SMALL_STATE(4635)] = 191794, + [SMALL_STATE(4636)] = 191804, + [SMALL_STATE(4637)] = 191814, + [SMALL_STATE(4638)] = 191824, + [SMALL_STATE(4639)] = 191834, + [SMALL_STATE(4640)] = 191844, + [SMALL_STATE(4641)] = 191854, + [SMALL_STATE(4642)] = 191864, + [SMALL_STATE(4643)] = 191874, + [SMALL_STATE(4644)] = 191884, + [SMALL_STATE(4645)] = 191894, + [SMALL_STATE(4646)] = 191904, + [SMALL_STATE(4647)] = 191914, + [SMALL_STATE(4648)] = 191924, + [SMALL_STATE(4649)] = 191934, + [SMALL_STATE(4650)] = 191944, + [SMALL_STATE(4651)] = 191954, + [SMALL_STATE(4652)] = 191964, + [SMALL_STATE(4653)] = 191974, + [SMALL_STATE(4654)] = 191984, + [SMALL_STATE(4655)] = 191994, + [SMALL_STATE(4656)] = 192004, + [SMALL_STATE(4657)] = 192014, + [SMALL_STATE(4658)] = 192024, + [SMALL_STATE(4659)] = 192034, + [SMALL_STATE(4660)] = 192044, + [SMALL_STATE(4661)] = 192054, + [SMALL_STATE(4662)] = 192064, + [SMALL_STATE(4663)] = 192074, + [SMALL_STATE(4664)] = 192084, + [SMALL_STATE(4665)] = 192094, + [SMALL_STATE(4666)] = 192104, + [SMALL_STATE(4667)] = 192114, + [SMALL_STATE(4668)] = 192124, + [SMALL_STATE(4669)] = 192134, + [SMALL_STATE(4670)] = 192144, + [SMALL_STATE(4671)] = 192154, + [SMALL_STATE(4672)] = 192164, + [SMALL_STATE(4673)] = 192174, + [SMALL_STATE(4674)] = 192184, + [SMALL_STATE(4675)] = 192194, + [SMALL_STATE(4676)] = 192204, + [SMALL_STATE(4677)] = 192214, + [SMALL_STATE(4678)] = 192224, + [SMALL_STATE(4679)] = 192234, + [SMALL_STATE(4680)] = 192244, + [SMALL_STATE(4681)] = 192254, + [SMALL_STATE(4682)] = 192264, + [SMALL_STATE(4683)] = 192274, + [SMALL_STATE(4684)] = 192284, + [SMALL_STATE(4685)] = 192294, + [SMALL_STATE(4686)] = 192304, + [SMALL_STATE(4687)] = 192314, + [SMALL_STATE(4688)] = 192324, + [SMALL_STATE(4689)] = 192334, + [SMALL_STATE(4690)] = 192344, + [SMALL_STATE(4691)] = 192354, + [SMALL_STATE(4692)] = 192364, + [SMALL_STATE(4693)] = 192374, + [SMALL_STATE(4694)] = 192384, + [SMALL_STATE(4695)] = 192394, + [SMALL_STATE(4696)] = 192404, + [SMALL_STATE(4697)] = 192414, + [SMALL_STATE(4698)] = 192424, + [SMALL_STATE(4699)] = 192434, + [SMALL_STATE(4700)] = 192444, + [SMALL_STATE(4701)] = 192454, + [SMALL_STATE(4702)] = 192464, + [SMALL_STATE(4703)] = 192474, + [SMALL_STATE(4704)] = 192484, + [SMALL_STATE(4705)] = 192494, + [SMALL_STATE(4706)] = 192504, + [SMALL_STATE(4707)] = 192514, + [SMALL_STATE(4708)] = 192524, + [SMALL_STATE(4709)] = 192534, + [SMALL_STATE(4710)] = 192544, + [SMALL_STATE(4711)] = 192554, + [SMALL_STATE(4712)] = 192564, + [SMALL_STATE(4713)] = 192574, + [SMALL_STATE(4714)] = 192584, + [SMALL_STATE(4715)] = 192594, + [SMALL_STATE(4716)] = 192604, + [SMALL_STATE(4717)] = 192614, + [SMALL_STATE(4718)] = 192624, + [SMALL_STATE(4719)] = 192634, + [SMALL_STATE(4720)] = 192644, + [SMALL_STATE(4721)] = 192654, + [SMALL_STATE(4722)] = 192664, + [SMALL_STATE(4723)] = 192674, + [SMALL_STATE(4724)] = 192684, + [SMALL_STATE(4725)] = 192694, + [SMALL_STATE(4726)] = 192704, + [SMALL_STATE(4727)] = 192714, + [SMALL_STATE(4728)] = 192724, + [SMALL_STATE(4729)] = 192734, + [SMALL_STATE(4730)] = 192744, + [SMALL_STATE(4731)] = 192754, + [SMALL_STATE(4732)] = 192764, + [SMALL_STATE(4733)] = 192774, + [SMALL_STATE(4734)] = 192784, + [SMALL_STATE(4735)] = 192794, + [SMALL_STATE(4736)] = 192804, + [SMALL_STATE(4737)] = 192814, + [SMALL_STATE(4738)] = 192824, + [SMALL_STATE(4739)] = 192834, + [SMALL_STATE(4740)] = 192844, + [SMALL_STATE(4741)] = 192854, + [SMALL_STATE(4742)] = 192864, + [SMALL_STATE(4743)] = 192874, + [SMALL_STATE(4744)] = 192884, + [SMALL_STATE(4745)] = 192894, + [SMALL_STATE(4746)] = 192904, + [SMALL_STATE(4747)] = 192914, + [SMALL_STATE(4748)] = 192924, + [SMALL_STATE(4749)] = 192934, + [SMALL_STATE(4750)] = 192944, + [SMALL_STATE(4751)] = 192954, + [SMALL_STATE(4752)] = 192964, + [SMALL_STATE(4753)] = 192974, + [SMALL_STATE(4754)] = 192984, + [SMALL_STATE(4755)] = 192994, + [SMALL_STATE(4756)] = 193004, + [SMALL_STATE(4757)] = 193014, + [SMALL_STATE(4758)] = 193024, + [SMALL_STATE(4759)] = 193034, + [SMALL_STATE(4760)] = 193044, + [SMALL_STATE(4761)] = 193054, + [SMALL_STATE(4762)] = 193064, + [SMALL_STATE(4763)] = 193074, + [SMALL_STATE(4764)] = 193084, + [SMALL_STATE(4765)] = 193094, + [SMALL_STATE(4766)] = 193104, + [SMALL_STATE(4767)] = 193114, + [SMALL_STATE(4768)] = 193124, + [SMALL_STATE(4769)] = 193134, + [SMALL_STATE(4770)] = 193144, + [SMALL_STATE(4771)] = 193154, + [SMALL_STATE(4772)] = 193164, + [SMALL_STATE(4773)] = 193174, + [SMALL_STATE(4774)] = 193184, + [SMALL_STATE(4775)] = 193194, + [SMALL_STATE(4776)] = 193204, + [SMALL_STATE(4777)] = 193214, + [SMALL_STATE(4778)] = 193224, + [SMALL_STATE(4779)] = 193234, + [SMALL_STATE(4780)] = 193244, + [SMALL_STATE(4781)] = 193254, + [SMALL_STATE(4782)] = 193264, + [SMALL_STATE(4783)] = 193274, + [SMALL_STATE(4784)] = 193284, + [SMALL_STATE(4785)] = 193294, + [SMALL_STATE(4786)] = 193304, + [SMALL_STATE(4787)] = 193314, + [SMALL_STATE(4788)] = 193324, + [SMALL_STATE(4789)] = 193334, + [SMALL_STATE(4790)] = 193344, + [SMALL_STATE(4791)] = 193354, + [SMALL_STATE(4792)] = 193364, + [SMALL_STATE(4793)] = 193374, + [SMALL_STATE(4794)] = 193384, + [SMALL_STATE(4795)] = 193394, + [SMALL_STATE(4796)] = 193404, + [SMALL_STATE(4797)] = 193414, + [SMALL_STATE(4798)] = 193424, + [SMALL_STATE(4799)] = 193434, + [SMALL_STATE(4800)] = 193444, + [SMALL_STATE(4801)] = 193454, + [SMALL_STATE(4802)] = 193464, + [SMALL_STATE(4803)] = 193474, + [SMALL_STATE(4804)] = 193484, + [SMALL_STATE(4805)] = 193494, + [SMALL_STATE(4806)] = 193504, + [SMALL_STATE(4807)] = 193514, + [SMALL_STATE(4808)] = 193524, + [SMALL_STATE(4809)] = 193534, + [SMALL_STATE(4810)] = 193544, + [SMALL_STATE(4811)] = 193554, + [SMALL_STATE(4812)] = 193564, + [SMALL_STATE(4813)] = 193574, + [SMALL_STATE(4814)] = 193584, + [SMALL_STATE(4815)] = 193594, + [SMALL_STATE(4816)] = 193604, + [SMALL_STATE(4817)] = 193614, + [SMALL_STATE(4818)] = 193624, + [SMALL_STATE(4819)] = 193634, + [SMALL_STATE(4820)] = 193644, + [SMALL_STATE(4821)] = 193654, + [SMALL_STATE(4822)] = 193664, + [SMALL_STATE(4823)] = 193674, + [SMALL_STATE(4824)] = 193684, + [SMALL_STATE(4825)] = 193694, + [SMALL_STATE(4826)] = 193704, + [SMALL_STATE(4827)] = 193714, + [SMALL_STATE(4828)] = 193724, + [SMALL_STATE(4829)] = 193734, + [SMALL_STATE(4830)] = 193744, + [SMALL_STATE(4831)] = 193754, + [SMALL_STATE(4832)] = 193764, + [SMALL_STATE(4833)] = 193774, + [SMALL_STATE(4834)] = 193784, + [SMALL_STATE(4835)] = 193794, + [SMALL_STATE(4836)] = 193804, + [SMALL_STATE(4837)] = 193814, + [SMALL_STATE(4838)] = 193824, + [SMALL_STATE(4839)] = 193834, + [SMALL_STATE(4840)] = 193844, + [SMALL_STATE(4841)] = 193854, + [SMALL_STATE(4842)] = 193864, + [SMALL_STATE(4843)] = 193874, + [SMALL_STATE(4844)] = 193884, + [SMALL_STATE(4845)] = 193894, + [SMALL_STATE(4846)] = 193904, + [SMALL_STATE(4847)] = 193914, + [SMALL_STATE(4848)] = 193924, + [SMALL_STATE(4849)] = 193934, + [SMALL_STATE(4850)] = 193944, + [SMALL_STATE(4851)] = 193954, + [SMALL_STATE(4852)] = 193964, + [SMALL_STATE(4853)] = 193974, + [SMALL_STATE(4854)] = 193984, + [SMALL_STATE(4855)] = 193994, + [SMALL_STATE(4856)] = 194004, + [SMALL_STATE(4857)] = 194014, + [SMALL_STATE(4858)] = 194024, + [SMALL_STATE(4859)] = 194034, + [SMALL_STATE(4860)] = 194044, + [SMALL_STATE(4861)] = 194054, + [SMALL_STATE(4862)] = 194064, + [SMALL_STATE(4863)] = 194074, + [SMALL_STATE(4864)] = 194084, + [SMALL_STATE(4865)] = 194094, + [SMALL_STATE(4866)] = 194104, + [SMALL_STATE(4867)] = 194114, + [SMALL_STATE(4868)] = 194124, + [SMALL_STATE(4869)] = 194134, + [SMALL_STATE(4870)] = 194144, + [SMALL_STATE(4871)] = 194154, + [SMALL_STATE(4872)] = 194164, + [SMALL_STATE(4873)] = 194174, + [SMALL_STATE(4874)] = 194184, + [SMALL_STATE(4875)] = 194194, + [SMALL_STATE(4876)] = 194204, + [SMALL_STATE(4877)] = 194214, + [SMALL_STATE(4878)] = 194224, + [SMALL_STATE(4879)] = 194234, + [SMALL_STATE(4880)] = 194244, + [SMALL_STATE(4881)] = 194254, + [SMALL_STATE(4882)] = 194264, + [SMALL_STATE(4883)] = 194274, + [SMALL_STATE(4884)] = 194284, + [SMALL_STATE(4885)] = 194294, + [SMALL_STATE(4886)] = 194304, + [SMALL_STATE(4887)] = 194314, + [SMALL_STATE(4888)] = 194324, + [SMALL_STATE(4889)] = 194334, + [SMALL_STATE(4890)] = 194344, + [SMALL_STATE(4891)] = 194354, + [SMALL_STATE(4892)] = 194364, + [SMALL_STATE(4893)] = 194374, + [SMALL_STATE(4894)] = 194384, + [SMALL_STATE(4895)] = 194394, + [SMALL_STATE(4896)] = 194404, + [SMALL_STATE(4897)] = 194414, + [SMALL_STATE(4898)] = 194424, + [SMALL_STATE(4899)] = 194434, + [SMALL_STATE(4900)] = 194444, + [SMALL_STATE(4901)] = 194454, + [SMALL_STATE(4902)] = 194464, + [SMALL_STATE(4903)] = 194474, + [SMALL_STATE(4904)] = 194484, + [SMALL_STATE(4905)] = 194494, + [SMALL_STATE(4906)] = 194504, + [SMALL_STATE(4907)] = 194514, + [SMALL_STATE(4908)] = 194524, + [SMALL_STATE(4909)] = 194534, + [SMALL_STATE(4910)] = 194544, + [SMALL_STATE(4911)] = 194554, + [SMALL_STATE(4912)] = 194564, + [SMALL_STATE(4913)] = 194574, + [SMALL_STATE(4914)] = 194584, + [SMALL_STATE(4915)] = 194594, + [SMALL_STATE(4916)] = 194604, + [SMALL_STATE(4917)] = 194614, + [SMALL_STATE(4918)] = 194624, + [SMALL_STATE(4919)] = 194634, + [SMALL_STATE(4920)] = 194644, + [SMALL_STATE(4921)] = 194654, + [SMALL_STATE(4922)] = 194664, + [SMALL_STATE(4923)] = 194674, + [SMALL_STATE(4924)] = 194684, + [SMALL_STATE(4925)] = 194694, + [SMALL_STATE(4926)] = 194704, + [SMALL_STATE(4927)] = 194714, + [SMALL_STATE(4928)] = 194724, + [SMALL_STATE(4929)] = 194734, + [SMALL_STATE(4930)] = 194744, + [SMALL_STATE(4931)] = 194754, + [SMALL_STATE(4932)] = 194764, + [SMALL_STATE(4933)] = 194774, + [SMALL_STATE(4934)] = 194784, + [SMALL_STATE(4935)] = 194794, + [SMALL_STATE(4936)] = 194804, + [SMALL_STATE(4937)] = 194814, + [SMALL_STATE(4938)] = 194824, + [SMALL_STATE(4939)] = 194834, + [SMALL_STATE(4940)] = 194844, + [SMALL_STATE(4941)] = 194854, + [SMALL_STATE(4942)] = 194864, + [SMALL_STATE(4943)] = 194874, + [SMALL_STATE(4944)] = 194884, + [SMALL_STATE(4945)] = 194894, + [SMALL_STATE(4946)] = 194904, + [SMALL_STATE(4947)] = 194914, + [SMALL_STATE(4948)] = 194924, + [SMALL_STATE(4949)] = 194934, + [SMALL_STATE(4950)] = 194944, + [SMALL_STATE(4951)] = 194954, + [SMALL_STATE(4952)] = 194964, + [SMALL_STATE(4953)] = 194974, + [SMALL_STATE(4954)] = 194984, + [SMALL_STATE(4955)] = 194994, + [SMALL_STATE(4956)] = 195004, + [SMALL_STATE(4957)] = 195014, + [SMALL_STATE(4958)] = 195024, + [SMALL_STATE(4959)] = 195034, + [SMALL_STATE(4960)] = 195044, + [SMALL_STATE(4961)] = 195054, + [SMALL_STATE(4962)] = 195064, + [SMALL_STATE(4963)] = 195074, + [SMALL_STATE(4964)] = 195084, + [SMALL_STATE(4965)] = 195094, + [SMALL_STATE(4966)] = 195104, + [SMALL_STATE(4967)] = 195114, + [SMALL_STATE(4968)] = 195124, + [SMALL_STATE(4969)] = 195134, + [SMALL_STATE(4970)] = 195144, + [SMALL_STATE(4971)] = 195154, + [SMALL_STATE(4972)] = 195164, + [SMALL_STATE(4973)] = 195174, + [SMALL_STATE(4974)] = 195184, + [SMALL_STATE(4975)] = 195194, + [SMALL_STATE(4976)] = 195204, + [SMALL_STATE(4977)] = 195214, + [SMALL_STATE(4978)] = 195224, + [SMALL_STATE(4979)] = 195234, + [SMALL_STATE(4980)] = 195244, + [SMALL_STATE(4981)] = 195254, + [SMALL_STATE(4982)] = 195264, + [SMALL_STATE(4983)] = 195274, + [SMALL_STATE(4984)] = 195284, + [SMALL_STATE(4985)] = 195294, + [SMALL_STATE(4986)] = 195304, + [SMALL_STATE(4987)] = 195314, + [SMALL_STATE(4988)] = 195324, + [SMALL_STATE(4989)] = 195334, + [SMALL_STATE(4990)] = 195344, + [SMALL_STATE(4991)] = 195354, + [SMALL_STATE(4992)] = 195364, + [SMALL_STATE(4993)] = 195374, + [SMALL_STATE(4994)] = 195384, + [SMALL_STATE(4995)] = 195394, + [SMALL_STATE(4996)] = 195404, + [SMALL_STATE(4997)] = 195414, + [SMALL_STATE(4998)] = 195424, + [SMALL_STATE(4999)] = 195434, + [SMALL_STATE(5000)] = 195444, + [SMALL_STATE(5001)] = 195454, + [SMALL_STATE(5002)] = 195464, + [SMALL_STATE(5003)] = 195474, + [SMALL_STATE(5004)] = 195484, + [SMALL_STATE(5005)] = 195494, + [SMALL_STATE(5006)] = 195504, + [SMALL_STATE(5007)] = 195514, + [SMALL_STATE(5008)] = 195524, + [SMALL_STATE(5009)] = 195534, + [SMALL_STATE(5010)] = 195544, + [SMALL_STATE(5011)] = 195554, + [SMALL_STATE(5012)] = 195564, + [SMALL_STATE(5013)] = 195574, + [SMALL_STATE(5014)] = 195584, + [SMALL_STATE(5015)] = 195594, + [SMALL_STATE(5016)] = 195604, + [SMALL_STATE(5017)] = 195614, + [SMALL_STATE(5018)] = 195624, + [SMALL_STATE(5019)] = 195634, + [SMALL_STATE(5020)] = 195644, + [SMALL_STATE(5021)] = 195654, + [SMALL_STATE(5022)] = 195664, + [SMALL_STATE(5023)] = 195674, + [SMALL_STATE(5024)] = 195684, + [SMALL_STATE(5025)] = 195694, + [SMALL_STATE(5026)] = 195704, + [SMALL_STATE(5027)] = 195714, + [SMALL_STATE(5028)] = 195724, + [SMALL_STATE(5029)] = 195734, + [SMALL_STATE(5030)] = 195744, + [SMALL_STATE(5031)] = 195754, + [SMALL_STATE(5032)] = 195764, + [SMALL_STATE(5033)] = 195774, + [SMALL_STATE(5034)] = 195784, + [SMALL_STATE(5035)] = 195794, + [SMALL_STATE(5036)] = 195804, + [SMALL_STATE(5037)] = 195814, + [SMALL_STATE(5038)] = 195824, + [SMALL_STATE(5039)] = 195834, + [SMALL_STATE(5040)] = 195844, + [SMALL_STATE(5041)] = 195854, + [SMALL_STATE(5042)] = 195864, + [SMALL_STATE(5043)] = 195874, + [SMALL_STATE(5044)] = 195884, + [SMALL_STATE(5045)] = 195894, + [SMALL_STATE(5046)] = 195904, + [SMALL_STATE(5047)] = 195914, + [SMALL_STATE(5048)] = 195924, + [SMALL_STATE(5049)] = 195934, + [SMALL_STATE(5050)] = 195944, + [SMALL_STATE(5051)] = 195954, + [SMALL_STATE(5052)] = 195964, + [SMALL_STATE(5053)] = 195974, + [SMALL_STATE(5054)] = 195984, + [SMALL_STATE(5055)] = 195994, + [SMALL_STATE(5056)] = 196004, + [SMALL_STATE(5057)] = 196014, + [SMALL_STATE(5058)] = 196024, + [SMALL_STATE(5059)] = 196034, + [SMALL_STATE(5060)] = 196044, + [SMALL_STATE(5061)] = 196054, + [SMALL_STATE(5062)] = 196064, + [SMALL_STATE(5063)] = 196074, + [SMALL_STATE(5064)] = 196084, + [SMALL_STATE(5065)] = 196094, + [SMALL_STATE(5066)] = 196104, + [SMALL_STATE(5067)] = 196114, + [SMALL_STATE(5068)] = 196124, + [SMALL_STATE(5069)] = 196134, + [SMALL_STATE(5070)] = 196144, + [SMALL_STATE(5071)] = 196154, + [SMALL_STATE(5072)] = 196164, + [SMALL_STATE(5073)] = 196174, + [SMALL_STATE(5074)] = 196184, + [SMALL_STATE(5075)] = 196194, + [SMALL_STATE(5076)] = 196204, + [SMALL_STATE(5077)] = 196214, + [SMALL_STATE(5078)] = 196224, + [SMALL_STATE(5079)] = 196234, + [SMALL_STATE(5080)] = 196244, + [SMALL_STATE(5081)] = 196254, + [SMALL_STATE(5082)] = 196264, + [SMALL_STATE(5083)] = 196274, + [SMALL_STATE(5084)] = 196284, + [SMALL_STATE(5085)] = 196294, + [SMALL_STATE(5086)] = 196304, + [SMALL_STATE(5087)] = 196314, + [SMALL_STATE(5088)] = 196324, + [SMALL_STATE(5089)] = 196334, + [SMALL_STATE(5090)] = 196344, + [SMALL_STATE(5091)] = 196354, + [SMALL_STATE(5092)] = 196364, + [SMALL_STATE(5093)] = 196374, + [SMALL_STATE(5094)] = 196384, + [SMALL_STATE(5095)] = 196394, + [SMALL_STATE(5096)] = 196404, + [SMALL_STATE(5097)] = 196414, + [SMALL_STATE(5098)] = 196424, + [SMALL_STATE(5099)] = 196434, + [SMALL_STATE(5100)] = 196444, + [SMALL_STATE(5101)] = 196454, + [SMALL_STATE(5102)] = 196464, + [SMALL_STATE(5103)] = 196474, + [SMALL_STATE(5104)] = 196484, + [SMALL_STATE(5105)] = 196494, + [SMALL_STATE(5106)] = 196504, + [SMALL_STATE(5107)] = 196514, + [SMALL_STATE(5108)] = 196524, + [SMALL_STATE(5109)] = 196534, + [SMALL_STATE(5110)] = 196544, + [SMALL_STATE(5111)] = 196554, + [SMALL_STATE(5112)] = 196564, + [SMALL_STATE(5113)] = 196574, + [SMALL_STATE(5114)] = 196584, + [SMALL_STATE(5115)] = 196594, + [SMALL_STATE(5116)] = 196604, + [SMALL_STATE(5117)] = 196614, + [SMALL_STATE(5118)] = 196624, + [SMALL_STATE(5119)] = 196634, + [SMALL_STATE(5120)] = 196644, + [SMALL_STATE(5121)] = 196654, + [SMALL_STATE(5122)] = 196664, + [SMALL_STATE(5123)] = 196674, + [SMALL_STATE(5124)] = 196684, + [SMALL_STATE(5125)] = 196694, + [SMALL_STATE(5126)] = 196704, + [SMALL_STATE(5127)] = 196714, + [SMALL_STATE(5128)] = 196724, + [SMALL_STATE(5129)] = 196734, + [SMALL_STATE(5130)] = 196744, + [SMALL_STATE(5131)] = 196754, + [SMALL_STATE(5132)] = 196764, + [SMALL_STATE(5133)] = 196774, + [SMALL_STATE(5134)] = 196784, + [SMALL_STATE(5135)] = 196794, + [SMALL_STATE(5136)] = 196804, + [SMALL_STATE(5137)] = 196814, + [SMALL_STATE(5138)] = 196824, + [SMALL_STATE(5139)] = 196834, + [SMALL_STATE(5140)] = 196844, + [SMALL_STATE(5141)] = 196854, + [SMALL_STATE(5142)] = 196864, + [SMALL_STATE(5143)] = 196874, + [SMALL_STATE(5144)] = 196884, + [SMALL_STATE(5145)] = 196894, + [SMALL_STATE(5146)] = 196904, + [SMALL_STATE(5147)] = 196914, + [SMALL_STATE(5148)] = 196924, + [SMALL_STATE(5149)] = 196934, + [SMALL_STATE(5150)] = 196944, + [SMALL_STATE(5151)] = 196954, + [SMALL_STATE(5152)] = 196964, + [SMALL_STATE(5153)] = 196974, + [SMALL_STATE(5154)] = 196984, + [SMALL_STATE(5155)] = 196994, + [SMALL_STATE(5156)] = 197004, + [SMALL_STATE(5157)] = 197014, + [SMALL_STATE(5158)] = 197024, + [SMALL_STATE(5159)] = 197034, + [SMALL_STATE(5160)] = 197044, + [SMALL_STATE(5161)] = 197054, + [SMALL_STATE(5162)] = 197064, + [SMALL_STATE(5163)] = 197074, + [SMALL_STATE(5164)] = 197084, + [SMALL_STATE(5165)] = 197094, + [SMALL_STATE(5166)] = 197104, + [SMALL_STATE(5167)] = 197114, + [SMALL_STATE(5168)] = 197120, + [SMALL_STATE(5169)] = 197130, + [SMALL_STATE(5170)] = 197140, + [SMALL_STATE(5171)] = 197150, + [SMALL_STATE(5172)] = 197160, + [SMALL_STATE(5173)] = 197170, + [SMALL_STATE(5174)] = 197180, + [SMALL_STATE(5175)] = 197190, + [SMALL_STATE(5176)] = 197200, + [SMALL_STATE(5177)] = 197210, + [SMALL_STATE(5178)] = 197220, + [SMALL_STATE(5179)] = 197230, + [SMALL_STATE(5180)] = 197240, + [SMALL_STATE(5181)] = 197250, + [SMALL_STATE(5182)] = 197260, + [SMALL_STATE(5183)] = 197270, + [SMALL_STATE(5184)] = 197280, + [SMALL_STATE(5185)] = 197290, + [SMALL_STATE(5186)] = 197300, + [SMALL_STATE(5187)] = 197310, + [SMALL_STATE(5188)] = 197320, + [SMALL_STATE(5189)] = 197330, + [SMALL_STATE(5190)] = 197340, + [SMALL_STATE(5191)] = 197350, + [SMALL_STATE(5192)] = 197360, + [SMALL_STATE(5193)] = 197370, + [SMALL_STATE(5194)] = 197380, + [SMALL_STATE(5195)] = 197390, + [SMALL_STATE(5196)] = 197400, + [SMALL_STATE(5197)] = 197410, + [SMALL_STATE(5198)] = 197420, + [SMALL_STATE(5199)] = 197430, + [SMALL_STATE(5200)] = 197440, + [SMALL_STATE(5201)] = 197450, + [SMALL_STATE(5202)] = 197460, + [SMALL_STATE(5203)] = 197470, + [SMALL_STATE(5204)] = 197480, + [SMALL_STATE(5205)] = 197490, + [SMALL_STATE(5206)] = 197500, + [SMALL_STATE(5207)] = 197510, + [SMALL_STATE(5208)] = 197520, + [SMALL_STATE(5209)] = 197530, + [SMALL_STATE(5210)] = 197540, + [SMALL_STATE(5211)] = 197550, + [SMALL_STATE(5212)] = 197560, + [SMALL_STATE(5213)] = 197570, + [SMALL_STATE(5214)] = 197580, + [SMALL_STATE(5215)] = 197590, + [SMALL_STATE(5216)] = 197600, + [SMALL_STATE(5217)] = 197610, + [SMALL_STATE(5218)] = 197620, + [SMALL_STATE(5219)] = 197630, + [SMALL_STATE(5220)] = 197640, + [SMALL_STATE(5221)] = 197650, + [SMALL_STATE(5222)] = 197660, + [SMALL_STATE(5223)] = 197670, + [SMALL_STATE(5224)] = 197680, + [SMALL_STATE(5225)] = 197690, + [SMALL_STATE(5226)] = 197700, + [SMALL_STATE(5227)] = 197710, + [SMALL_STATE(5228)] = 197720, + [SMALL_STATE(5229)] = 197730, + [SMALL_STATE(5230)] = 197740, + [SMALL_STATE(5231)] = 197750, + [SMALL_STATE(5232)] = 197760, + [SMALL_STATE(5233)] = 197770, + [SMALL_STATE(5234)] = 197780, + [SMALL_STATE(5235)] = 197790, + [SMALL_STATE(5236)] = 197800, + [SMALL_STATE(5237)] = 197810, + [SMALL_STATE(5238)] = 197820, + [SMALL_STATE(5239)] = 197830, + [SMALL_STATE(5240)] = 197840, + [SMALL_STATE(5241)] = 197848, + [SMALL_STATE(5242)] = 197858, + [SMALL_STATE(5243)] = 197868, + [SMALL_STATE(5244)] = 197878, + [SMALL_STATE(5245)] = 197888, + [SMALL_STATE(5246)] = 197898, + [SMALL_STATE(5247)] = 197908, + [SMALL_STATE(5248)] = 197918, + [SMALL_STATE(5249)] = 197928, + [SMALL_STATE(5250)] = 197938, + [SMALL_STATE(5251)] = 197948, + [SMALL_STATE(5252)] = 197958, + [SMALL_STATE(5253)] = 197968, + [SMALL_STATE(5254)] = 197978, + [SMALL_STATE(5255)] = 197988, + [SMALL_STATE(5256)] = 197998, + [SMALL_STATE(5257)] = 198008, + [SMALL_STATE(5258)] = 198018, + [SMALL_STATE(5259)] = 198028, + [SMALL_STATE(5260)] = 198038, + [SMALL_STATE(5261)] = 198048, + [SMALL_STATE(5262)] = 198058, + [SMALL_STATE(5263)] = 198068, + [SMALL_STATE(5264)] = 198078, + [SMALL_STATE(5265)] = 198088, + [SMALL_STATE(5266)] = 198098, + [SMALL_STATE(5267)] = 198108, + [SMALL_STATE(5268)] = 198118, + [SMALL_STATE(5269)] = 198128, + [SMALL_STATE(5270)] = 198138, + [SMALL_STATE(5271)] = 198148, + [SMALL_STATE(5272)] = 198158, + [SMALL_STATE(5273)] = 198168, + [SMALL_STATE(5274)] = 198178, + [SMALL_STATE(5275)] = 198188, + [SMALL_STATE(5276)] = 198198, + [SMALL_STATE(5277)] = 198208, + [SMALL_STATE(5278)] = 198218, + [SMALL_STATE(5279)] = 198228, + [SMALL_STATE(5280)] = 198238, + [SMALL_STATE(5281)] = 198248, + [SMALL_STATE(5282)] = 198258, + [SMALL_STATE(5283)] = 198268, + [SMALL_STATE(5284)] = 198278, + [SMALL_STATE(5285)] = 198288, + [SMALL_STATE(5286)] = 198298, + [SMALL_STATE(5287)] = 198308, + [SMALL_STATE(5288)] = 198318, + [SMALL_STATE(5289)] = 198328, + [SMALL_STATE(5290)] = 198338, + [SMALL_STATE(5291)] = 198345, + [SMALL_STATE(5292)] = 198352, + [SMALL_STATE(5293)] = 198359, + [SMALL_STATE(5294)] = 198366, + [SMALL_STATE(5295)] = 198373, + [SMALL_STATE(5296)] = 198380, + [SMALL_STATE(5297)] = 198387, + [SMALL_STATE(5298)] = 198394, + [SMALL_STATE(5299)] = 198399, + [SMALL_STATE(5300)] = 198406, + [SMALL_STATE(5301)] = 198413, + [SMALL_STATE(5302)] = 198420, + [SMALL_STATE(5303)] = 198427, + [SMALL_STATE(5304)] = 198432, + [SMALL_STATE(5305)] = 198439, + [SMALL_STATE(5306)] = 198446, + [SMALL_STATE(5307)] = 198453, + [SMALL_STATE(5308)] = 198458, + [SMALL_STATE(5309)] = 198465, + [SMALL_STATE(5310)] = 198472, + [SMALL_STATE(5311)] = 198479, + [SMALL_STATE(5312)] = 198486, + [SMALL_STATE(5313)] = 198493, + [SMALL_STATE(5314)] = 198500, + [SMALL_STATE(5315)] = 198507, + [SMALL_STATE(5316)] = 198514, + [SMALL_STATE(5317)] = 198521, + [SMALL_STATE(5318)] = 198528, + [SMALL_STATE(5319)] = 198535, + [SMALL_STATE(5320)] = 198542, + [SMALL_STATE(5321)] = 198549, + [SMALL_STATE(5322)] = 198556, + [SMALL_STATE(5323)] = 198563, + [SMALL_STATE(5324)] = 198570, + [SMALL_STATE(5325)] = 198577, + [SMALL_STATE(5326)] = 198584, + [SMALL_STATE(5327)] = 198591, + [SMALL_STATE(5328)] = 198598, + [SMALL_STATE(5329)] = 198605, + [SMALL_STATE(5330)] = 198612, + [SMALL_STATE(5331)] = 198619, + [SMALL_STATE(5332)] = 198626, + [SMALL_STATE(5333)] = 198633, + [SMALL_STATE(5334)] = 198640, + [SMALL_STATE(5335)] = 198647, + [SMALL_STATE(5336)] = 198652, + [SMALL_STATE(5337)] = 198659, + [SMALL_STATE(5338)] = 198666, + [SMALL_STATE(5339)] = 198673, + [SMALL_STATE(5340)] = 198680, + [SMALL_STATE(5341)] = 198687, + [SMALL_STATE(5342)] = 198694, + [SMALL_STATE(5343)] = 198701, + [SMALL_STATE(5344)] = 198708, + [SMALL_STATE(5345)] = 198715, + [SMALL_STATE(5346)] = 198722, + [SMALL_STATE(5347)] = 198729, + [SMALL_STATE(5348)] = 198736, + [SMALL_STATE(5349)] = 198743, + [SMALL_STATE(5350)] = 198750, + [SMALL_STATE(5351)] = 198757, + [SMALL_STATE(5352)] = 198764, + [SMALL_STATE(5353)] = 198771, + [SMALL_STATE(5354)] = 198778, + [SMALL_STATE(5355)] = 198785, + [SMALL_STATE(5356)] = 198792, + [SMALL_STATE(5357)] = 198799, + [SMALL_STATE(5358)] = 198806, + [SMALL_STATE(5359)] = 198813, + [SMALL_STATE(5360)] = 198820, + [SMALL_STATE(5361)] = 198827, + [SMALL_STATE(5362)] = 198834, + [SMALL_STATE(5363)] = 198841, + [SMALL_STATE(5364)] = 198848, + [SMALL_STATE(5365)] = 198855, + [SMALL_STATE(5366)] = 198862, + [SMALL_STATE(5367)] = 198869, + [SMALL_STATE(5368)] = 198876, + [SMALL_STATE(5369)] = 198883, + [SMALL_STATE(5370)] = 198890, + [SMALL_STATE(5371)] = 198897, + [SMALL_STATE(5372)] = 198904, + [SMALL_STATE(5373)] = 198911, + [SMALL_STATE(5374)] = 198918, + [SMALL_STATE(5375)] = 198925, + [SMALL_STATE(5376)] = 198932, + [SMALL_STATE(5377)] = 198939, + [SMALL_STATE(5378)] = 198946, + [SMALL_STATE(5379)] = 198953, + [SMALL_STATE(5380)] = 198960, + [SMALL_STATE(5381)] = 198967, + [SMALL_STATE(5382)] = 198974, + [SMALL_STATE(5383)] = 198981, + [SMALL_STATE(5384)] = 198988, + [SMALL_STATE(5385)] = 198995, + [SMALL_STATE(5386)] = 199002, + [SMALL_STATE(5387)] = 199009, + [SMALL_STATE(5388)] = 199016, + [SMALL_STATE(5389)] = 199023, + [SMALL_STATE(5390)] = 199030, + [SMALL_STATE(5391)] = 199037, + [SMALL_STATE(5392)] = 199044, + [SMALL_STATE(5393)] = 199051, + [SMALL_STATE(5394)] = 199058, + [SMALL_STATE(5395)] = 199065, + [SMALL_STATE(5396)] = 199072, + [SMALL_STATE(5397)] = 199079, + [SMALL_STATE(5398)] = 199086, + [SMALL_STATE(5399)] = 199093, + [SMALL_STATE(5400)] = 199100, + [SMALL_STATE(5401)] = 199107, + [SMALL_STATE(5402)] = 199114, + [SMALL_STATE(5403)] = 199121, + [SMALL_STATE(5404)] = 199128, + [SMALL_STATE(5405)] = 199135, + [SMALL_STATE(5406)] = 199142, + [SMALL_STATE(5407)] = 199149, + [SMALL_STATE(5408)] = 199156, + [SMALL_STATE(5409)] = 199163, + [SMALL_STATE(5410)] = 199168, + [SMALL_STATE(5411)] = 199175, + [SMALL_STATE(5412)] = 199182, + [SMALL_STATE(5413)] = 199189, + [SMALL_STATE(5414)] = 199196, + [SMALL_STATE(5415)] = 199203, + [SMALL_STATE(5416)] = 199210, + [SMALL_STATE(5417)] = 199217, + [SMALL_STATE(5418)] = 199224, + [SMALL_STATE(5419)] = 199231, + [SMALL_STATE(5420)] = 199238, + [SMALL_STATE(5421)] = 199245, + [SMALL_STATE(5422)] = 199252, + [SMALL_STATE(5423)] = 199259, + [SMALL_STATE(5424)] = 199266, + [SMALL_STATE(5425)] = 199273, + [SMALL_STATE(5426)] = 199280, + [SMALL_STATE(5427)] = 199287, + [SMALL_STATE(5428)] = 199294, + [SMALL_STATE(5429)] = 199301, + [SMALL_STATE(5430)] = 199308, + [SMALL_STATE(5431)] = 199315, + [SMALL_STATE(5432)] = 199322, + [SMALL_STATE(5433)] = 199329, + [SMALL_STATE(5434)] = 199336, + [SMALL_STATE(5435)] = 199343, + [SMALL_STATE(5436)] = 199350, + [SMALL_STATE(5437)] = 199357, + [SMALL_STATE(5438)] = 199364, + [SMALL_STATE(5439)] = 199371, + [SMALL_STATE(5440)] = 199378, + [SMALL_STATE(5441)] = 199385, + [SMALL_STATE(5442)] = 199392, + [SMALL_STATE(5443)] = 199399, + [SMALL_STATE(5444)] = 199403, + [SMALL_STATE(5445)] = 199407, + [SMALL_STATE(5446)] = 199411, + [SMALL_STATE(5447)] = 199415, + [SMALL_STATE(5448)] = 199419, + [SMALL_STATE(5449)] = 199423, + [SMALL_STATE(5450)] = 199427, + [SMALL_STATE(5451)] = 199431, + [SMALL_STATE(5452)] = 199435, + [SMALL_STATE(5453)] = 199439, + [SMALL_STATE(5454)] = 199443, + [SMALL_STATE(5455)] = 199447, + [SMALL_STATE(5456)] = 199451, + [SMALL_STATE(5457)] = 199455, + [SMALL_STATE(5458)] = 199459, + [SMALL_STATE(5459)] = 199463, + [SMALL_STATE(5460)] = 199467, + [SMALL_STATE(5461)] = 199471, + [SMALL_STATE(5462)] = 199475, + [SMALL_STATE(5463)] = 199479, + [SMALL_STATE(5464)] = 199483, + [SMALL_STATE(5465)] = 199487, + [SMALL_STATE(5466)] = 199491, + [SMALL_STATE(5467)] = 199495, + [SMALL_STATE(5468)] = 199499, + [SMALL_STATE(5469)] = 199503, + [SMALL_STATE(5470)] = 199507, + [SMALL_STATE(5471)] = 199511, + [SMALL_STATE(5472)] = 199515, + [SMALL_STATE(5473)] = 199519, + [SMALL_STATE(5474)] = 199523, + [SMALL_STATE(5475)] = 199527, + [SMALL_STATE(5476)] = 199531, + [SMALL_STATE(5477)] = 199535, + [SMALL_STATE(5478)] = 199539, + [SMALL_STATE(5479)] = 199543, + [SMALL_STATE(5480)] = 199547, + [SMALL_STATE(5481)] = 199551, + [SMALL_STATE(5482)] = 199555, + [SMALL_STATE(5483)] = 199559, + [SMALL_STATE(5484)] = 199563, + [SMALL_STATE(5485)] = 199567, + [SMALL_STATE(5486)] = 199571, + [SMALL_STATE(5487)] = 199575, + [SMALL_STATE(5488)] = 199579, + [SMALL_STATE(5489)] = 199583, + [SMALL_STATE(5490)] = 199587, + [SMALL_STATE(5491)] = 199591, + [SMALL_STATE(5492)] = 199595, + [SMALL_STATE(5493)] = 199599, + [SMALL_STATE(5494)] = 199603, + [SMALL_STATE(5495)] = 199607, + [SMALL_STATE(5496)] = 199611, + [SMALL_STATE(5497)] = 199615, + [SMALL_STATE(5498)] = 199619, + [SMALL_STATE(5499)] = 199623, + [SMALL_STATE(5500)] = 199627, + [SMALL_STATE(5501)] = 199631, + [SMALL_STATE(5502)] = 199635, + [SMALL_STATE(5503)] = 199639, + [SMALL_STATE(5504)] = 199643, + [SMALL_STATE(5505)] = 199647, + [SMALL_STATE(5506)] = 199651, + [SMALL_STATE(5507)] = 199655, + [SMALL_STATE(5508)] = 199659, + [SMALL_STATE(5509)] = 199663, + [SMALL_STATE(5510)] = 199667, + [SMALL_STATE(5511)] = 199671, + [SMALL_STATE(5512)] = 199675, + [SMALL_STATE(5513)] = 199679, + [SMALL_STATE(5514)] = 199683, + [SMALL_STATE(5515)] = 199687, + [SMALL_STATE(5516)] = 199691, + [SMALL_STATE(5517)] = 199695, + [SMALL_STATE(5518)] = 199699, + [SMALL_STATE(5519)] = 199703, + [SMALL_STATE(5520)] = 199707, + [SMALL_STATE(5521)] = 199711, + [SMALL_STATE(5522)] = 199715, + [SMALL_STATE(5523)] = 199719, + [SMALL_STATE(5524)] = 199723, + [SMALL_STATE(5525)] = 199727, + [SMALL_STATE(5526)] = 199731, + [SMALL_STATE(5527)] = 199735, + [SMALL_STATE(5528)] = 199739, + [SMALL_STATE(5529)] = 199743, + [SMALL_STATE(5530)] = 199747, + [SMALL_STATE(5531)] = 199751, + [SMALL_STATE(5532)] = 199755, + [SMALL_STATE(5533)] = 199759, + [SMALL_STATE(5534)] = 199763, + [SMALL_STATE(5535)] = 199767, + [SMALL_STATE(5536)] = 199771, + [SMALL_STATE(5537)] = 199775, + [SMALL_STATE(5538)] = 199779, + [SMALL_STATE(5539)] = 199783, + [SMALL_STATE(5540)] = 199787, + [SMALL_STATE(5541)] = 199791, + [SMALL_STATE(5542)] = 199795, + [SMALL_STATE(5543)] = 199799, + [SMALL_STATE(5544)] = 199803, + [SMALL_STATE(5545)] = 199807, + [SMALL_STATE(5546)] = 199811, + [SMALL_STATE(5547)] = 199815, + [SMALL_STATE(5548)] = 199819, + [SMALL_STATE(5549)] = 199823, + [SMALL_STATE(5550)] = 199827, + [SMALL_STATE(5551)] = 199831, + [SMALL_STATE(5552)] = 199835, + [SMALL_STATE(5553)] = 199839, + [SMALL_STATE(5554)] = 199843, + [SMALL_STATE(5555)] = 199847, + [SMALL_STATE(5556)] = 199851, + [SMALL_STATE(5557)] = 199855, + [SMALL_STATE(5558)] = 199859, + [SMALL_STATE(5559)] = 199863, + [SMALL_STATE(5560)] = 199867, + [SMALL_STATE(5561)] = 199871, + [SMALL_STATE(5562)] = 199875, + [SMALL_STATE(5563)] = 199879, + [SMALL_STATE(5564)] = 199883, + [SMALL_STATE(5565)] = 199887, + [SMALL_STATE(5566)] = 199891, + [SMALL_STATE(5567)] = 199895, + [SMALL_STATE(5568)] = 199899, + [SMALL_STATE(5569)] = 199903, + [SMALL_STATE(5570)] = 199907, + [SMALL_STATE(5571)] = 199911, + [SMALL_STATE(5572)] = 199915, + [SMALL_STATE(5573)] = 199919, + [SMALL_STATE(5574)] = 199923, + [SMALL_STATE(5575)] = 199927, + [SMALL_STATE(5576)] = 199931, + [SMALL_STATE(5577)] = 199935, + [SMALL_STATE(5578)] = 199939, + [SMALL_STATE(5579)] = 199943, + [SMALL_STATE(5580)] = 199947, + [SMALL_STATE(5581)] = 199951, + [SMALL_STATE(5582)] = 199955, + [SMALL_STATE(5583)] = 199959, + [SMALL_STATE(5584)] = 199963, + [SMALL_STATE(5585)] = 199967, + [SMALL_STATE(5586)] = 199971, + [SMALL_STATE(5587)] = 199975, + [SMALL_STATE(5588)] = 199979, + [SMALL_STATE(5589)] = 199983, + [SMALL_STATE(5590)] = 199987, + [SMALL_STATE(5591)] = 199991, + [SMALL_STATE(5592)] = 199995, + [SMALL_STATE(5593)] = 199999, + [SMALL_STATE(5594)] = 200003, + [SMALL_STATE(5595)] = 200007, + [SMALL_STATE(5596)] = 200011, + [SMALL_STATE(5597)] = 200015, + [SMALL_STATE(5598)] = 200019, + [SMALL_STATE(5599)] = 200023, + [SMALL_STATE(5600)] = 200027, + [SMALL_STATE(5601)] = 200031, + [SMALL_STATE(5602)] = 200035, + [SMALL_STATE(5603)] = 200039, + [SMALL_STATE(5604)] = 200043, + [SMALL_STATE(5605)] = 200047, + [SMALL_STATE(5606)] = 200051, + [SMALL_STATE(5607)] = 200055, + [SMALL_STATE(5608)] = 200059, + [SMALL_STATE(5609)] = 200063, + [SMALL_STATE(5610)] = 200067, + [SMALL_STATE(5611)] = 200071, + [SMALL_STATE(5612)] = 200075, + [SMALL_STATE(5613)] = 200079, + [SMALL_STATE(5614)] = 200083, + [SMALL_STATE(5615)] = 200087, + [SMALL_STATE(5616)] = 200091, + [SMALL_STATE(5617)] = 200095, + [SMALL_STATE(5618)] = 200099, + [SMALL_STATE(5619)] = 200103, + [SMALL_STATE(5620)] = 200107, + [SMALL_STATE(5621)] = 200111, + [SMALL_STATE(5622)] = 200115, + [SMALL_STATE(5623)] = 200119, + [SMALL_STATE(5624)] = 200123, + [SMALL_STATE(5625)] = 200127, + [SMALL_STATE(5626)] = 200131, + [SMALL_STATE(5627)] = 200135, + [SMALL_STATE(5628)] = 200139, + [SMALL_STATE(5629)] = 200143, + [SMALL_STATE(5630)] = 200147, + [SMALL_STATE(5631)] = 200151, + [SMALL_STATE(5632)] = 200155, + [SMALL_STATE(5633)] = 200159, + [SMALL_STATE(5634)] = 200163, + [SMALL_STATE(5635)] = 200167, + [SMALL_STATE(5636)] = 200171, + [SMALL_STATE(5637)] = 200175, + [SMALL_STATE(5638)] = 200179, + [SMALL_STATE(5639)] = 200183, + [SMALL_STATE(5640)] = 200187, + [SMALL_STATE(5641)] = 200191, + [SMALL_STATE(5642)] = 200195, + [SMALL_STATE(5643)] = 200199, + [SMALL_STATE(5644)] = 200203, + [SMALL_STATE(5645)] = 200207, + [SMALL_STATE(5646)] = 200211, + [SMALL_STATE(5647)] = 200215, + [SMALL_STATE(5648)] = 200219, + [SMALL_STATE(5649)] = 200223, + [SMALL_STATE(5650)] = 200227, + [SMALL_STATE(5651)] = 200231, + [SMALL_STATE(5652)] = 200235, + [SMALL_STATE(5653)] = 200239, + [SMALL_STATE(5654)] = 200243, + [SMALL_STATE(5655)] = 200247, + [SMALL_STATE(5656)] = 200251, + [SMALL_STATE(5657)] = 200255, + [SMALL_STATE(5658)] = 200259, + [SMALL_STATE(5659)] = 200263, + [SMALL_STATE(5660)] = 200267, + [SMALL_STATE(5661)] = 200271, + [SMALL_STATE(5662)] = 200275, + [SMALL_STATE(5663)] = 200279, + [SMALL_STATE(5664)] = 200283, + [SMALL_STATE(5665)] = 200287, + [SMALL_STATE(5666)] = 200291, + [SMALL_STATE(5667)] = 200295, + [SMALL_STATE(5668)] = 200299, + [SMALL_STATE(5669)] = 200303, + [SMALL_STATE(5670)] = 200307, + [SMALL_STATE(5671)] = 200311, + [SMALL_STATE(5672)] = 200315, + [SMALL_STATE(5673)] = 200319, + [SMALL_STATE(5674)] = 200323, + [SMALL_STATE(5675)] = 200327, + [SMALL_STATE(5676)] = 200331, + [SMALL_STATE(5677)] = 200335, + [SMALL_STATE(5678)] = 200339, + [SMALL_STATE(5679)] = 200343, + [SMALL_STATE(5680)] = 200347, + [SMALL_STATE(5681)] = 200351, + [SMALL_STATE(5682)] = 200355, + [SMALL_STATE(5683)] = 200359, + [SMALL_STATE(5684)] = 200363, + [SMALL_STATE(5685)] = 200367, + [SMALL_STATE(5686)] = 200371, + [SMALL_STATE(5687)] = 200375, + [SMALL_STATE(5688)] = 200379, + [SMALL_STATE(5689)] = 200383, + [SMALL_STATE(5690)] = 200387, + [SMALL_STATE(5691)] = 200391, + [SMALL_STATE(5692)] = 200395, + [SMALL_STATE(5693)] = 200399, + [SMALL_STATE(5694)] = 200403, + [SMALL_STATE(5695)] = 200407, + [SMALL_STATE(5696)] = 200411, + [SMALL_STATE(5697)] = 200415, + [SMALL_STATE(5698)] = 200419, + [SMALL_STATE(5699)] = 200423, + [SMALL_STATE(5700)] = 200427, + [SMALL_STATE(5701)] = 200431, + [SMALL_STATE(5702)] = 200435, + [SMALL_STATE(5703)] = 200439, + [SMALL_STATE(5704)] = 200443, + [SMALL_STATE(5705)] = 200447, + [SMALL_STATE(5706)] = 200451, + [SMALL_STATE(5707)] = 200455, + [SMALL_STATE(5708)] = 200459, + [SMALL_STATE(5709)] = 200463, + [SMALL_STATE(5710)] = 200467, + [SMALL_STATE(5711)] = 200471, + [SMALL_STATE(5712)] = 200475, + [SMALL_STATE(5713)] = 200479, + [SMALL_STATE(5714)] = 200483, + [SMALL_STATE(5715)] = 200487, + [SMALL_STATE(5716)] = 200491, + [SMALL_STATE(5717)] = 200495, + [SMALL_STATE(5718)] = 200499, + [SMALL_STATE(5719)] = 200503, + [SMALL_STATE(5720)] = 200507, + [SMALL_STATE(5721)] = 200511, + [SMALL_STATE(5722)] = 200515, + [SMALL_STATE(5723)] = 200519, + [SMALL_STATE(5724)] = 200523, + [SMALL_STATE(5725)] = 200527, + [SMALL_STATE(5726)] = 200531, + [SMALL_STATE(5727)] = 200535, + [SMALL_STATE(5728)] = 200539, + [SMALL_STATE(5729)] = 200543, + [SMALL_STATE(5730)] = 200547, + [SMALL_STATE(5731)] = 200551, + [SMALL_STATE(5732)] = 200555, + [SMALL_STATE(5733)] = 200559, + [SMALL_STATE(5734)] = 200563, + [SMALL_STATE(5735)] = 200567, + [SMALL_STATE(5736)] = 200571, + [SMALL_STATE(5737)] = 200575, + [SMALL_STATE(5738)] = 200579, + [SMALL_STATE(5739)] = 200583, + [SMALL_STATE(5740)] = 200587, + [SMALL_STATE(5741)] = 200591, + [SMALL_STATE(5742)] = 200595, + [SMALL_STATE(5743)] = 200599, + [SMALL_STATE(5744)] = 200603, + [SMALL_STATE(5745)] = 200607, + [SMALL_STATE(5746)] = 200611, + [SMALL_STATE(5747)] = 200615, + [SMALL_STATE(5748)] = 200619, + [SMALL_STATE(5749)] = 200623, + [SMALL_STATE(5750)] = 200627, + [SMALL_STATE(5751)] = 200631, + [SMALL_STATE(5752)] = 200635, + [SMALL_STATE(5753)] = 200639, + [SMALL_STATE(5754)] = 200643, + [SMALL_STATE(5755)] = 200647, + [SMALL_STATE(5756)] = 200651, + [SMALL_STATE(5757)] = 200655, + [SMALL_STATE(5758)] = 200659, + [SMALL_STATE(5759)] = 200663, + [SMALL_STATE(5760)] = 200667, + [SMALL_STATE(5761)] = 200671, + [SMALL_STATE(5762)] = 200675, + [SMALL_STATE(5763)] = 200679, + [SMALL_STATE(5764)] = 200683, + [SMALL_STATE(5765)] = 200687, + [SMALL_STATE(5766)] = 200691, + [SMALL_STATE(5767)] = 200695, + [SMALL_STATE(5768)] = 200699, + [SMALL_STATE(5769)] = 200703, + [SMALL_STATE(5770)] = 200707, + [SMALL_STATE(5771)] = 200711, + [SMALL_STATE(5772)] = 200715, + [SMALL_STATE(5773)] = 200719, + [SMALL_STATE(5774)] = 200723, + [SMALL_STATE(5775)] = 200727, + [SMALL_STATE(5776)] = 200731, + [SMALL_STATE(5777)] = 200735, + [SMALL_STATE(5778)] = 200739, + [SMALL_STATE(5779)] = 200743, + [SMALL_STATE(5780)] = 200747, + [SMALL_STATE(5781)] = 200751, + [SMALL_STATE(5782)] = 200755, + [SMALL_STATE(5783)] = 200759, + [SMALL_STATE(5784)] = 200763, + [SMALL_STATE(5785)] = 200767, + [SMALL_STATE(5786)] = 200771, + [SMALL_STATE(5787)] = 200775, + [SMALL_STATE(5788)] = 200779, + [SMALL_STATE(5789)] = 200783, + [SMALL_STATE(5790)] = 200787, + [SMALL_STATE(5791)] = 200791, + [SMALL_STATE(5792)] = 200795, + [SMALL_STATE(5793)] = 200799, + [SMALL_STATE(5794)] = 200803, + [SMALL_STATE(5795)] = 200807, + [SMALL_STATE(5796)] = 200811, + [SMALL_STATE(5797)] = 200815, + [SMALL_STATE(5798)] = 200819, + [SMALL_STATE(5799)] = 200823, + [SMALL_STATE(5800)] = 200827, + [SMALL_STATE(5801)] = 200831, + [SMALL_STATE(5802)] = 200835, + [SMALL_STATE(5803)] = 200839, + [SMALL_STATE(5804)] = 200843, + [SMALL_STATE(5805)] = 200847, + [SMALL_STATE(5806)] = 200851, + [SMALL_STATE(5807)] = 200855, + [SMALL_STATE(5808)] = 200859, + [SMALL_STATE(5809)] = 200863, + [SMALL_STATE(5810)] = 200867, + [SMALL_STATE(5811)] = 200871, + [SMALL_STATE(5812)] = 200875, + [SMALL_STATE(5813)] = 200879, + [SMALL_STATE(5814)] = 200883, + [SMALL_STATE(5815)] = 200887, + [SMALL_STATE(5816)] = 200891, + [SMALL_STATE(5817)] = 200895, + [SMALL_STATE(5818)] = 200899, + [SMALL_STATE(5819)] = 200903, + [SMALL_STATE(5820)] = 200907, + [SMALL_STATE(5821)] = 200911, + [SMALL_STATE(5822)] = 200915, + [SMALL_STATE(5823)] = 200919, + [SMALL_STATE(5824)] = 200923, + [SMALL_STATE(5825)] = 200927, + [SMALL_STATE(5826)] = 200931, + [SMALL_STATE(5827)] = 200935, + [SMALL_STATE(5828)] = 200939, + [SMALL_STATE(5829)] = 200943, + [SMALL_STATE(5830)] = 200947, + [SMALL_STATE(5831)] = 200951, + [SMALL_STATE(5832)] = 200955, + [SMALL_STATE(5833)] = 200959, + [SMALL_STATE(5834)] = 200963, + [SMALL_STATE(5835)] = 200967, + [SMALL_STATE(5836)] = 200971, + [SMALL_STATE(5837)] = 200975, + [SMALL_STATE(5838)] = 200979, + [SMALL_STATE(5839)] = 200983, + [SMALL_STATE(5840)] = 200987, + [SMALL_STATE(5841)] = 200991, + [SMALL_STATE(5842)] = 200995, + [SMALL_STATE(5843)] = 200999, + [SMALL_STATE(5844)] = 201003, + [SMALL_STATE(5845)] = 201007, + [SMALL_STATE(5846)] = 201011, + [SMALL_STATE(5847)] = 201015, + [SMALL_STATE(5848)] = 201019, + [SMALL_STATE(5849)] = 201023, + [SMALL_STATE(5850)] = 201027, + [SMALL_STATE(5851)] = 201031, + [SMALL_STATE(5852)] = 201035, + [SMALL_STATE(5853)] = 201039, + [SMALL_STATE(5854)] = 201043, + [SMALL_STATE(5855)] = 201047, + [SMALL_STATE(5856)] = 201051, + [SMALL_STATE(5857)] = 201055, + [SMALL_STATE(5858)] = 201059, + [SMALL_STATE(5859)] = 201063, + [SMALL_STATE(5860)] = 201067, + [SMALL_STATE(5861)] = 201071, + [SMALL_STATE(5862)] = 201075, + [SMALL_STATE(5863)] = 201079, + [SMALL_STATE(5864)] = 201083, + [SMALL_STATE(5865)] = 201087, + [SMALL_STATE(5866)] = 201091, + [SMALL_STATE(5867)] = 201095, + [SMALL_STATE(5868)] = 201099, + [SMALL_STATE(5869)] = 201103, + [SMALL_STATE(5870)] = 201107, + [SMALL_STATE(5871)] = 201111, + [SMALL_STATE(5872)] = 201115, + [SMALL_STATE(5873)] = 201119, + [SMALL_STATE(5874)] = 201123, + [SMALL_STATE(5875)] = 201127, + [SMALL_STATE(5876)] = 201131, + [SMALL_STATE(5877)] = 201135, + [SMALL_STATE(5878)] = 201139, + [SMALL_STATE(5879)] = 201143, + [SMALL_STATE(5880)] = 201147, + [SMALL_STATE(5881)] = 201151, + [SMALL_STATE(5882)] = 201155, + [SMALL_STATE(5883)] = 201159, + [SMALL_STATE(5884)] = 201163, + [SMALL_STATE(5885)] = 201167, + [SMALL_STATE(5886)] = 201171, + [SMALL_STATE(5887)] = 201175, + [SMALL_STATE(5888)] = 201179, + [SMALL_STATE(5889)] = 201183, + [SMALL_STATE(5890)] = 201187, + [SMALL_STATE(5891)] = 201191, + [SMALL_STATE(5892)] = 201195, + [SMALL_STATE(5893)] = 201199, + [SMALL_STATE(5894)] = 201203, + [SMALL_STATE(5895)] = 201207, + [SMALL_STATE(5896)] = 201211, + [SMALL_STATE(5897)] = 201215, + [SMALL_STATE(5898)] = 201219, + [SMALL_STATE(5899)] = 201223, + [SMALL_STATE(5900)] = 201227, + [SMALL_STATE(5901)] = 201231, + [SMALL_STATE(5902)] = 201235, + [SMALL_STATE(5903)] = 201239, + [SMALL_STATE(5904)] = 201243, + [SMALL_STATE(5905)] = 201247, + [SMALL_STATE(5906)] = 201251, + [SMALL_STATE(5907)] = 201255, + [SMALL_STATE(5908)] = 201259, + [SMALL_STATE(5909)] = 201263, + [SMALL_STATE(5910)] = 201267, + [SMALL_STATE(5911)] = 201271, + [SMALL_STATE(5912)] = 201275, + [SMALL_STATE(5913)] = 201279, + [SMALL_STATE(5914)] = 201283, + [SMALL_STATE(5915)] = 201287, + [SMALL_STATE(5916)] = 201291, + [SMALL_STATE(5917)] = 201295, + [SMALL_STATE(5918)] = 201299, + [SMALL_STATE(5919)] = 201303, + [SMALL_STATE(5920)] = 201307, + [SMALL_STATE(5921)] = 201311, + [SMALL_STATE(5922)] = 201315, + [SMALL_STATE(5923)] = 201319, + [SMALL_STATE(5924)] = 201323, + [SMALL_STATE(5925)] = 201327, + [SMALL_STATE(5926)] = 201331, + [SMALL_STATE(5927)] = 201335, + [SMALL_STATE(5928)] = 201339, + [SMALL_STATE(5929)] = 201343, + [SMALL_STATE(5930)] = 201347, + [SMALL_STATE(5931)] = 201351, + [SMALL_STATE(5932)] = 201355, + [SMALL_STATE(5933)] = 201359, + [SMALL_STATE(5934)] = 201363, + [SMALL_STATE(5935)] = 201367, + [SMALL_STATE(5936)] = 201371, + [SMALL_STATE(5937)] = 201375, + [SMALL_STATE(5938)] = 201379, + [SMALL_STATE(5939)] = 201383, + [SMALL_STATE(5940)] = 201387, + [SMALL_STATE(5941)] = 201391, + [SMALL_STATE(5942)] = 201395, + [SMALL_STATE(5943)] = 201399, + [SMALL_STATE(5944)] = 201403, + [SMALL_STATE(5945)] = 201407, + [SMALL_STATE(5946)] = 201411, + [SMALL_STATE(5947)] = 201415, + [SMALL_STATE(5948)] = 201419, + [SMALL_STATE(5949)] = 201423, + [SMALL_STATE(5950)] = 201427, + [SMALL_STATE(5951)] = 201431, + [SMALL_STATE(5952)] = 201435, + [SMALL_STATE(5953)] = 201439, + [SMALL_STATE(5954)] = 201443, + [SMALL_STATE(5955)] = 201447, + [SMALL_STATE(5956)] = 201451, + [SMALL_STATE(5957)] = 201455, + [SMALL_STATE(5958)] = 201459, + [SMALL_STATE(5959)] = 201463, + [SMALL_STATE(5960)] = 201467, + [SMALL_STATE(5961)] = 201471, + [SMALL_STATE(5962)] = 201475, + [SMALL_STATE(5963)] = 201479, + [SMALL_STATE(5964)] = 201483, + [SMALL_STATE(5965)] = 201487, + [SMALL_STATE(5966)] = 201491, + [SMALL_STATE(5967)] = 201495, + [SMALL_STATE(5968)] = 201499, + [SMALL_STATE(5969)] = 201503, + [SMALL_STATE(5970)] = 201507, + [SMALL_STATE(5971)] = 201511, + [SMALL_STATE(5972)] = 201515, + [SMALL_STATE(5973)] = 201519, + [SMALL_STATE(5974)] = 201523, + [SMALL_STATE(5975)] = 201527, + [SMALL_STATE(5976)] = 201531, + [SMALL_STATE(5977)] = 201535, + [SMALL_STATE(5978)] = 201539, + [SMALL_STATE(5979)] = 201543, + [SMALL_STATE(5980)] = 201547, + [SMALL_STATE(5981)] = 201551, + [SMALL_STATE(5982)] = 201555, + [SMALL_STATE(5983)] = 201559, + [SMALL_STATE(5984)] = 201563, + [SMALL_STATE(5985)] = 201567, + [SMALL_STATE(5986)] = 201571, + [SMALL_STATE(5987)] = 201575, + [SMALL_STATE(5988)] = 201579, + [SMALL_STATE(5989)] = 201583, + [SMALL_STATE(5990)] = 201587, + [SMALL_STATE(5991)] = 201591, + [SMALL_STATE(5992)] = 201595, + [SMALL_STATE(5993)] = 201599, + [SMALL_STATE(5994)] = 201603, + [SMALL_STATE(5995)] = 201607, + [SMALL_STATE(5996)] = 201611, + [SMALL_STATE(5997)] = 201615, + [SMALL_STATE(5998)] = 201619, + [SMALL_STATE(5999)] = 201623, + [SMALL_STATE(6000)] = 201627, + [SMALL_STATE(6001)] = 201631, + [SMALL_STATE(6002)] = 201635, + [SMALL_STATE(6003)] = 201639, + [SMALL_STATE(6004)] = 201643, + [SMALL_STATE(6005)] = 201647, + [SMALL_STATE(6006)] = 201651, + [SMALL_STATE(6007)] = 201655, + [SMALL_STATE(6008)] = 201659, + [SMALL_STATE(6009)] = 201663, + [SMALL_STATE(6010)] = 201667, + [SMALL_STATE(6011)] = 201671, + [SMALL_STATE(6012)] = 201675, + [SMALL_STATE(6013)] = 201679, + [SMALL_STATE(6014)] = 201683, + [SMALL_STATE(6015)] = 201687, + [SMALL_STATE(6016)] = 201691, + [SMALL_STATE(6017)] = 201695, + [SMALL_STATE(6018)] = 201699, + [SMALL_STATE(6019)] = 201703, + [SMALL_STATE(6020)] = 201707, + [SMALL_STATE(6021)] = 201711, + [SMALL_STATE(6022)] = 201715, + [SMALL_STATE(6023)] = 201719, + [SMALL_STATE(6024)] = 201723, + [SMALL_STATE(6025)] = 201727, + [SMALL_STATE(6026)] = 201731, + [SMALL_STATE(6027)] = 201735, + [SMALL_STATE(6028)] = 201739, + [SMALL_STATE(6029)] = 201743, + [SMALL_STATE(6030)] = 201747, + [SMALL_STATE(6031)] = 201751, + [SMALL_STATE(6032)] = 201755, + [SMALL_STATE(6033)] = 201759, + [SMALL_STATE(6034)] = 201763, + [SMALL_STATE(6035)] = 201767, + [SMALL_STATE(6036)] = 201771, + [SMALL_STATE(6037)] = 201775, + [SMALL_STATE(6038)] = 201779, + [SMALL_STATE(6039)] = 201783, + [SMALL_STATE(6040)] = 201787, + [SMALL_STATE(6041)] = 201791, + [SMALL_STATE(6042)] = 201795, + [SMALL_STATE(6043)] = 201799, + [SMALL_STATE(6044)] = 201803, + [SMALL_STATE(6045)] = 201807, + [SMALL_STATE(6046)] = 201811, + [SMALL_STATE(6047)] = 201815, + [SMALL_STATE(6048)] = 201819, + [SMALL_STATE(6049)] = 201823, + [SMALL_STATE(6050)] = 201827, + [SMALL_STATE(6051)] = 201831, + [SMALL_STATE(6052)] = 201835, + [SMALL_STATE(6053)] = 201839, + [SMALL_STATE(6054)] = 201843, + [SMALL_STATE(6055)] = 201847, + [SMALL_STATE(6056)] = 201851, + [SMALL_STATE(6057)] = 201855, + [SMALL_STATE(6058)] = 201859, + [SMALL_STATE(6059)] = 201863, + [SMALL_STATE(6060)] = 201867, + [SMALL_STATE(6061)] = 201871, + [SMALL_STATE(6062)] = 201875, + [SMALL_STATE(6063)] = 201879, + [SMALL_STATE(6064)] = 201883, + [SMALL_STATE(6065)] = 201887, + [SMALL_STATE(6066)] = 201891, + [SMALL_STATE(6067)] = 201895, + [SMALL_STATE(6068)] = 201899, + [SMALL_STATE(6069)] = 201903, + [SMALL_STATE(6070)] = 201907, + [SMALL_STATE(6071)] = 201911, + [SMALL_STATE(6072)] = 201915, + [SMALL_STATE(6073)] = 201919, + [SMALL_STATE(6074)] = 201923, + [SMALL_STATE(6075)] = 201927, + [SMALL_STATE(6076)] = 201931, + [SMALL_STATE(6077)] = 201935, + [SMALL_STATE(6078)] = 201939, + [SMALL_STATE(6079)] = 201943, + [SMALL_STATE(6080)] = 201947, + [SMALL_STATE(6081)] = 201951, + [SMALL_STATE(6082)] = 201955, + [SMALL_STATE(6083)] = 201959, + [SMALL_STATE(6084)] = 201963, + [SMALL_STATE(6085)] = 201967, + [SMALL_STATE(6086)] = 201971, + [SMALL_STATE(6087)] = 201975, + [SMALL_STATE(6088)] = 201979, + [SMALL_STATE(6089)] = 201983, + [SMALL_STATE(6090)] = 201987, + [SMALL_STATE(6091)] = 201991, + [SMALL_STATE(6092)] = 201995, + [SMALL_STATE(6093)] = 201999, + [SMALL_STATE(6094)] = 202003, + [SMALL_STATE(6095)] = 202007, + [SMALL_STATE(6096)] = 202011, + [SMALL_STATE(6097)] = 202015, + [SMALL_STATE(6098)] = 202019, + [SMALL_STATE(6099)] = 202023, + [SMALL_STATE(6100)] = 202027, + [SMALL_STATE(6101)] = 202031, + [SMALL_STATE(6102)] = 202035, + [SMALL_STATE(6103)] = 202039, + [SMALL_STATE(6104)] = 202043, + [SMALL_STATE(6105)] = 202047, + [SMALL_STATE(6106)] = 202051, + [SMALL_STATE(6107)] = 202055, + [SMALL_STATE(6108)] = 202059, + [SMALL_STATE(6109)] = 202063, + [SMALL_STATE(6110)] = 202067, + [SMALL_STATE(6111)] = 202071, + [SMALL_STATE(6112)] = 202075, + [SMALL_STATE(6113)] = 202079, + [SMALL_STATE(6114)] = 202083, + [SMALL_STATE(6115)] = 202087, + [SMALL_STATE(6116)] = 202091, + [SMALL_STATE(6117)] = 202095, + [SMALL_STATE(6118)] = 202099, + [SMALL_STATE(6119)] = 202103, + [SMALL_STATE(6120)] = 202107, + [SMALL_STATE(6121)] = 202111, + [SMALL_STATE(6122)] = 202115, + [SMALL_STATE(6123)] = 202119, + [SMALL_STATE(6124)] = 202123, + [SMALL_STATE(6125)] = 202127, + [SMALL_STATE(6126)] = 202131, + [SMALL_STATE(6127)] = 202135, + [SMALL_STATE(6128)] = 202139, + [SMALL_STATE(6129)] = 202143, + [SMALL_STATE(6130)] = 202147, + [SMALL_STATE(6131)] = 202151, + [SMALL_STATE(6132)] = 202155, + [SMALL_STATE(6133)] = 202159, + [SMALL_STATE(6134)] = 202163, + [SMALL_STATE(6135)] = 202167, + [SMALL_STATE(6136)] = 202171, + [SMALL_STATE(6137)] = 202175, + [SMALL_STATE(6138)] = 202179, + [SMALL_STATE(6139)] = 202183, + [SMALL_STATE(6140)] = 202187, + [SMALL_STATE(6141)] = 202191, + [SMALL_STATE(6142)] = 202195, + [SMALL_STATE(6143)] = 202199, + [SMALL_STATE(6144)] = 202203, + [SMALL_STATE(6145)] = 202207, + [SMALL_STATE(6146)] = 202211, + [SMALL_STATE(6147)] = 202215, + [SMALL_STATE(6148)] = 202219, + [SMALL_STATE(6149)] = 202223, + [SMALL_STATE(6150)] = 202227, + [SMALL_STATE(6151)] = 202231, + [SMALL_STATE(6152)] = 202235, + [SMALL_STATE(6153)] = 202239, + [SMALL_STATE(6154)] = 202243, + [SMALL_STATE(6155)] = 202247, + [SMALL_STATE(6156)] = 202251, + [SMALL_STATE(6157)] = 202255, + [SMALL_STATE(6158)] = 202259, + [SMALL_STATE(6159)] = 202263, + [SMALL_STATE(6160)] = 202267, + [SMALL_STATE(6161)] = 202271, + [SMALL_STATE(6162)] = 202275, + [SMALL_STATE(6163)] = 202279, + [SMALL_STATE(6164)] = 202283, + [SMALL_STATE(6165)] = 202287, + [SMALL_STATE(6166)] = 202291, + [SMALL_STATE(6167)] = 202295, + [SMALL_STATE(6168)] = 202299, + [SMALL_STATE(6169)] = 202303, + [SMALL_STATE(6170)] = 202307, + [SMALL_STATE(6171)] = 202311, + [SMALL_STATE(6172)] = 202315, + [SMALL_STATE(6173)] = 202319, + [SMALL_STATE(6174)] = 202323, + [SMALL_STATE(6175)] = 202327, + [SMALL_STATE(6176)] = 202331, + [SMALL_STATE(6177)] = 202335, + [SMALL_STATE(6178)] = 202339, + [SMALL_STATE(6179)] = 202343, + [SMALL_STATE(6180)] = 202347, + [SMALL_STATE(6181)] = 202351, + [SMALL_STATE(6182)] = 202355, + [SMALL_STATE(6183)] = 202359, + [SMALL_STATE(6184)] = 202363, + [SMALL_STATE(6185)] = 202367, + [SMALL_STATE(6186)] = 202371, + [SMALL_STATE(6187)] = 202375, + [SMALL_STATE(6188)] = 202379, + [SMALL_STATE(6189)] = 202383, + [SMALL_STATE(6190)] = 202387, + [SMALL_STATE(6191)] = 202391, + [SMALL_STATE(6192)] = 202395, + [SMALL_STATE(6193)] = 202399, + [SMALL_STATE(6194)] = 202403, + [SMALL_STATE(6195)] = 202407, + [SMALL_STATE(6196)] = 202411, + [SMALL_STATE(6197)] = 202415, + [SMALL_STATE(6198)] = 202419, + [SMALL_STATE(6199)] = 202423, + [SMALL_STATE(6200)] = 202427, + [SMALL_STATE(6201)] = 202431, + [SMALL_STATE(6202)] = 202435, + [SMALL_STATE(6203)] = 202439, + [SMALL_STATE(6204)] = 202443, + [SMALL_STATE(6205)] = 202447, + [SMALL_STATE(6206)] = 202451, + [SMALL_STATE(6207)] = 202455, + [SMALL_STATE(6208)] = 202459, + [SMALL_STATE(6209)] = 202463, + [SMALL_STATE(6210)] = 202467, + [SMALL_STATE(6211)] = 202471, + [SMALL_STATE(6212)] = 202475, + [SMALL_STATE(6213)] = 202479, + [SMALL_STATE(6214)] = 202483, + [SMALL_STATE(6215)] = 202487, + [SMALL_STATE(6216)] = 202491, + [SMALL_STATE(6217)] = 202495, + [SMALL_STATE(6218)] = 202499, + [SMALL_STATE(6219)] = 202503, + [SMALL_STATE(6220)] = 202507, + [SMALL_STATE(6221)] = 202511, + [SMALL_STATE(6222)] = 202515, + [SMALL_STATE(6223)] = 202519, + [SMALL_STATE(6224)] = 202523, + [SMALL_STATE(6225)] = 202527, + [SMALL_STATE(6226)] = 202531, + [SMALL_STATE(6227)] = 202535, + [SMALL_STATE(6228)] = 202539, + [SMALL_STATE(6229)] = 202543, + [SMALL_STATE(6230)] = 202547, + [SMALL_STATE(6231)] = 202551, + [SMALL_STATE(6232)] = 202555, + [SMALL_STATE(6233)] = 202559, + [SMALL_STATE(6234)] = 202563, + [SMALL_STATE(6235)] = 202567, + [SMALL_STATE(6236)] = 202571, + [SMALL_STATE(6237)] = 202575, + [SMALL_STATE(6238)] = 202579, + [SMALL_STATE(6239)] = 202583, + [SMALL_STATE(6240)] = 202587, + [SMALL_STATE(6241)] = 202591, + [SMALL_STATE(6242)] = 202595, + [SMALL_STATE(6243)] = 202599, + [SMALL_STATE(6244)] = 202603, + [SMALL_STATE(6245)] = 202607, + [SMALL_STATE(6246)] = 202611, + [SMALL_STATE(6247)] = 202615, + [SMALL_STATE(6248)] = 202619, + [SMALL_STATE(6249)] = 202623, + [SMALL_STATE(6250)] = 202627, + [SMALL_STATE(6251)] = 202631, + [SMALL_STATE(6252)] = 202635, + [SMALL_STATE(6253)] = 202639, + [SMALL_STATE(6254)] = 202643, + [SMALL_STATE(6255)] = 202647, + [SMALL_STATE(6256)] = 202651, + [SMALL_STATE(6257)] = 202655, + [SMALL_STATE(6258)] = 202659, + [SMALL_STATE(6259)] = 202663, + [SMALL_STATE(6260)] = 202667, + [SMALL_STATE(6261)] = 202671, + [SMALL_STATE(6262)] = 202675, + [SMALL_STATE(6263)] = 202679, + [SMALL_STATE(6264)] = 202683, + [SMALL_STATE(6265)] = 202687, + [SMALL_STATE(6266)] = 202691, + [SMALL_STATE(6267)] = 202695, + [SMALL_STATE(6268)] = 202699, + [SMALL_STATE(6269)] = 202703, + [SMALL_STATE(6270)] = 202707, + [SMALL_STATE(6271)] = 202711, + [SMALL_STATE(6272)] = 202715, + [SMALL_STATE(6273)] = 202719, + [SMALL_STATE(6274)] = 202723, + [SMALL_STATE(6275)] = 202727, + [SMALL_STATE(6276)] = 202731, + [SMALL_STATE(6277)] = 202735, + [SMALL_STATE(6278)] = 202739, + [SMALL_STATE(6279)] = 202743, + [SMALL_STATE(6280)] = 202747, + [SMALL_STATE(6281)] = 202751, + [SMALL_STATE(6282)] = 202755, + [SMALL_STATE(6283)] = 202759, + [SMALL_STATE(6284)] = 202763, + [SMALL_STATE(6285)] = 202767, + [SMALL_STATE(6286)] = 202771, + [SMALL_STATE(6287)] = 202775, + [SMALL_STATE(6288)] = 202779, + [SMALL_STATE(6289)] = 202783, + [SMALL_STATE(6290)] = 202787, + [SMALL_STATE(6291)] = 202791, + [SMALL_STATE(6292)] = 202795, + [SMALL_STATE(6293)] = 202799, + [SMALL_STATE(6294)] = 202803, + [SMALL_STATE(6295)] = 202807, + [SMALL_STATE(6296)] = 202811, + [SMALL_STATE(6297)] = 202815, + [SMALL_STATE(6298)] = 202819, + [SMALL_STATE(6299)] = 202823, + [SMALL_STATE(6300)] = 202827, + [SMALL_STATE(6301)] = 202831, + [SMALL_STATE(6302)] = 202835, + [SMALL_STATE(6303)] = 202839, + [SMALL_STATE(6304)] = 202843, + [SMALL_STATE(6305)] = 202847, + [SMALL_STATE(6306)] = 202851, + [SMALL_STATE(6307)] = 202855, + [SMALL_STATE(6308)] = 202859, + [SMALL_STATE(6309)] = 202863, + [SMALL_STATE(6310)] = 202867, + [SMALL_STATE(6311)] = 202871, + [SMALL_STATE(6312)] = 202875, + [SMALL_STATE(6313)] = 202879, + [SMALL_STATE(6314)] = 202883, + [SMALL_STATE(6315)] = 202887, + [SMALL_STATE(6316)] = 202891, + [SMALL_STATE(6317)] = 202895, + [SMALL_STATE(6318)] = 202899, + [SMALL_STATE(6319)] = 202903, + [SMALL_STATE(6320)] = 202907, + [SMALL_STATE(6321)] = 202911, + [SMALL_STATE(6322)] = 202915, + [SMALL_STATE(6323)] = 202919, + [SMALL_STATE(6324)] = 202923, + [SMALL_STATE(6325)] = 202927, + [SMALL_STATE(6326)] = 202931, + [SMALL_STATE(6327)] = 202935, + [SMALL_STATE(6328)] = 202939, + [SMALL_STATE(6329)] = 202943, + [SMALL_STATE(6330)] = 202947, + [SMALL_STATE(6331)] = 202951, + [SMALL_STATE(6332)] = 202955, + [SMALL_STATE(6333)] = 202959, + [SMALL_STATE(6334)] = 202963, + [SMALL_STATE(6335)] = 202967, + [SMALL_STATE(6336)] = 202971, + [SMALL_STATE(6337)] = 202975, + [SMALL_STATE(6338)] = 202979, + [SMALL_STATE(6339)] = 202983, + [SMALL_STATE(6340)] = 202987, + [SMALL_STATE(6341)] = 202991, + [SMALL_STATE(6342)] = 202995, + [SMALL_STATE(6343)] = 202999, + [SMALL_STATE(6344)] = 203003, + [SMALL_STATE(6345)] = 203007, + [SMALL_STATE(6346)] = 203011, + [SMALL_STATE(6347)] = 203015, + [SMALL_STATE(6348)] = 203019, + [SMALL_STATE(6349)] = 203023, + [SMALL_STATE(6350)] = 203027, + [SMALL_STATE(6351)] = 203031, + [SMALL_STATE(6352)] = 203035, + [SMALL_STATE(6353)] = 203039, + [SMALL_STATE(6354)] = 203043, + [SMALL_STATE(6355)] = 203047, + [SMALL_STATE(6356)] = 203051, + [SMALL_STATE(6357)] = 203055, + [SMALL_STATE(6358)] = 203059, + [SMALL_STATE(6359)] = 203063, + [SMALL_STATE(6360)] = 203067, + [SMALL_STATE(6361)] = 203071, + [SMALL_STATE(6362)] = 203075, + [SMALL_STATE(6363)] = 203079, + [SMALL_STATE(6364)] = 203083, + [SMALL_STATE(6365)] = 203087, + [SMALL_STATE(6366)] = 203091, + [SMALL_STATE(6367)] = 203095, + [SMALL_STATE(6368)] = 203099, + [SMALL_STATE(6369)] = 203103, + [SMALL_STATE(6370)] = 203107, + [SMALL_STATE(6371)] = 203111, + [SMALL_STATE(6372)] = 203115, + [SMALL_STATE(6373)] = 203119, + [SMALL_STATE(6374)] = 203123, + [SMALL_STATE(6375)] = 203127, + [SMALL_STATE(6376)] = 203131, + [SMALL_STATE(6377)] = 203135, + [SMALL_STATE(6378)] = 203139, + [SMALL_STATE(6379)] = 203143, + [SMALL_STATE(6380)] = 203147, + [SMALL_STATE(6381)] = 203151, + [SMALL_STATE(6382)] = 203155, + [SMALL_STATE(6383)] = 203159, + [SMALL_STATE(6384)] = 203163, + [SMALL_STATE(6385)] = 203167, + [SMALL_STATE(6386)] = 203171, + [SMALL_STATE(6387)] = 203175, + [SMALL_STATE(6388)] = 203179, + [SMALL_STATE(6389)] = 203183, + [SMALL_STATE(6390)] = 203187, + [SMALL_STATE(6391)] = 203191, + [SMALL_STATE(6392)] = 203195, + [SMALL_STATE(6393)] = 203199, + [SMALL_STATE(6394)] = 203203, + [SMALL_STATE(6395)] = 203207, + [SMALL_STATE(6396)] = 203211, + [SMALL_STATE(6397)] = 203215, + [SMALL_STATE(6398)] = 203219, + [SMALL_STATE(6399)] = 203223, + [SMALL_STATE(6400)] = 203227, + [SMALL_STATE(6401)] = 203231, + [SMALL_STATE(6402)] = 203235, + [SMALL_STATE(6403)] = 203239, + [SMALL_STATE(6404)] = 203243, + [SMALL_STATE(6405)] = 203247, + [SMALL_STATE(6406)] = 203251, + [SMALL_STATE(6407)] = 203255, + [SMALL_STATE(6408)] = 203259, + [SMALL_STATE(6409)] = 203263, + [SMALL_STATE(6410)] = 203267, + [SMALL_STATE(6411)] = 203271, + [SMALL_STATE(6412)] = 203275, + [SMALL_STATE(6413)] = 203279, + [SMALL_STATE(6414)] = 203283, + [SMALL_STATE(6415)] = 203287, + [SMALL_STATE(6416)] = 203291, + [SMALL_STATE(6417)] = 203295, + [SMALL_STATE(6418)] = 203299, + [SMALL_STATE(6419)] = 203303, + [SMALL_STATE(6420)] = 203307, + [SMALL_STATE(6421)] = 203311, + [SMALL_STATE(6422)] = 203315, + [SMALL_STATE(6423)] = 203319, + [SMALL_STATE(6424)] = 203323, + [SMALL_STATE(6425)] = 203327, + [SMALL_STATE(6426)] = 203331, + [SMALL_STATE(6427)] = 203335, + [SMALL_STATE(6428)] = 203339, + [SMALL_STATE(6429)] = 203343, + [SMALL_STATE(6430)] = 203347, + [SMALL_STATE(6431)] = 203351, + [SMALL_STATE(6432)] = 203355, + [SMALL_STATE(6433)] = 203359, + [SMALL_STATE(6434)] = 203363, + [SMALL_STATE(6435)] = 203367, + [SMALL_STATE(6436)] = 203371, + [SMALL_STATE(6437)] = 203375, + [SMALL_STATE(6438)] = 203379, + [SMALL_STATE(6439)] = 203383, + [SMALL_STATE(6440)] = 203387, + [SMALL_STATE(6441)] = 203391, + [SMALL_STATE(6442)] = 203395, + [SMALL_STATE(6443)] = 203399, + [SMALL_STATE(6444)] = 203403, + [SMALL_STATE(6445)] = 203407, + [SMALL_STATE(6446)] = 203411, + [SMALL_STATE(6447)] = 203415, + [SMALL_STATE(6448)] = 203419, + [SMALL_STATE(6449)] = 203423, + [SMALL_STATE(6450)] = 203427, + [SMALL_STATE(6451)] = 203431, + [SMALL_STATE(6452)] = 203435, + [SMALL_STATE(6453)] = 203439, + [SMALL_STATE(6454)] = 203443, + [SMALL_STATE(6455)] = 203447, + [SMALL_STATE(6456)] = 203451, + [SMALL_STATE(6457)] = 203455, + [SMALL_STATE(6458)] = 203459, + [SMALL_STATE(6459)] = 203463, + [SMALL_STATE(6460)] = 203467, + [SMALL_STATE(6461)] = 203471, + [SMALL_STATE(6462)] = 203475, + [SMALL_STATE(6463)] = 203479, + [SMALL_STATE(6464)] = 203483, + [SMALL_STATE(6465)] = 203487, + [SMALL_STATE(6466)] = 203491, + [SMALL_STATE(6467)] = 203495, + [SMALL_STATE(6468)] = 203499, + [SMALL_STATE(6469)] = 203503, + [SMALL_STATE(6470)] = 203507, + [SMALL_STATE(6471)] = 203511, + [SMALL_STATE(6472)] = 203515, + [SMALL_STATE(6473)] = 203519, + [SMALL_STATE(6474)] = 203523, + [SMALL_STATE(6475)] = 203527, + [SMALL_STATE(6476)] = 203531, + [SMALL_STATE(6477)] = 203535, + [SMALL_STATE(6478)] = 203539, + [SMALL_STATE(6479)] = 203543, + [SMALL_STATE(6480)] = 203547, + [SMALL_STATE(6481)] = 203551, + [SMALL_STATE(6482)] = 203555, + [SMALL_STATE(6483)] = 203559, + [SMALL_STATE(6484)] = 203563, + [SMALL_STATE(6485)] = 203567, + [SMALL_STATE(6486)] = 203571, + [SMALL_STATE(6487)] = 203575, + [SMALL_STATE(6488)] = 203579, + [SMALL_STATE(6489)] = 203583, + [SMALL_STATE(6490)] = 203587, + [SMALL_STATE(6491)] = 203591, + [SMALL_STATE(6492)] = 203595, + [SMALL_STATE(6493)] = 203599, + [SMALL_STATE(6494)] = 203603, + [SMALL_STATE(6495)] = 203607, + [SMALL_STATE(6496)] = 203611, + [SMALL_STATE(6497)] = 203615, + [SMALL_STATE(6498)] = 203619, + [SMALL_STATE(6499)] = 203623, + [SMALL_STATE(6500)] = 203627, + [SMALL_STATE(6501)] = 203631, + [SMALL_STATE(6502)] = 203635, + [SMALL_STATE(6503)] = 203639, + [SMALL_STATE(6504)] = 203643, + [SMALL_STATE(6505)] = 203647, + [SMALL_STATE(6506)] = 203651, + [SMALL_STATE(6507)] = 203655, + [SMALL_STATE(6508)] = 203659, + [SMALL_STATE(6509)] = 203663, + [SMALL_STATE(6510)] = 203667, + [SMALL_STATE(6511)] = 203671, + [SMALL_STATE(6512)] = 203675, + [SMALL_STATE(6513)] = 203679, + [SMALL_STATE(6514)] = 203683, + [SMALL_STATE(6515)] = 203687, + [SMALL_STATE(6516)] = 203691, + [SMALL_STATE(6517)] = 203695, + [SMALL_STATE(6518)] = 203699, + [SMALL_STATE(6519)] = 203703, + [SMALL_STATE(6520)] = 203707, + [SMALL_STATE(6521)] = 203711, + [SMALL_STATE(6522)] = 203715, + [SMALL_STATE(6523)] = 203719, + [SMALL_STATE(6524)] = 203723, + [SMALL_STATE(6525)] = 203727, + [SMALL_STATE(6526)] = 203731, + [SMALL_STATE(6527)] = 203735, + [SMALL_STATE(6528)] = 203739, + [SMALL_STATE(6529)] = 203743, + [SMALL_STATE(6530)] = 203747, + [SMALL_STATE(6531)] = 203751, + [SMALL_STATE(6532)] = 203755, + [SMALL_STATE(6533)] = 203759, + [SMALL_STATE(6534)] = 203763, + [SMALL_STATE(6535)] = 203767, + [SMALL_STATE(6536)] = 203771, + [SMALL_STATE(6537)] = 203775, + [SMALL_STATE(6538)] = 203779, + [SMALL_STATE(6539)] = 203783, + [SMALL_STATE(6540)] = 203787, + [SMALL_STATE(6541)] = 203791, + [SMALL_STATE(6542)] = 203795, + [SMALL_STATE(6543)] = 203799, + [SMALL_STATE(6544)] = 203803, + [SMALL_STATE(6545)] = 203807, + [SMALL_STATE(6546)] = 203811, + [SMALL_STATE(6547)] = 203815, + [SMALL_STATE(6548)] = 203819, + [SMALL_STATE(6549)] = 203823, + [SMALL_STATE(6550)] = 203827, + [SMALL_STATE(6551)] = 203831, + [SMALL_STATE(6552)] = 203835, + [SMALL_STATE(6553)] = 203839, + [SMALL_STATE(6554)] = 203843, + [SMALL_STATE(6555)] = 203847, + [SMALL_STATE(6556)] = 203851, + [SMALL_STATE(6557)] = 203855, + [SMALL_STATE(6558)] = 203859, + [SMALL_STATE(6559)] = 203863, + [SMALL_STATE(6560)] = 203867, + [SMALL_STATE(6561)] = 203871, + [SMALL_STATE(6562)] = 203875, + [SMALL_STATE(6563)] = 203879, + [SMALL_STATE(6564)] = 203883, + [SMALL_STATE(6565)] = 203887, + [SMALL_STATE(6566)] = 203891, + [SMALL_STATE(6567)] = 203895, + [SMALL_STATE(6568)] = 203899, + [SMALL_STATE(6569)] = 203903, + [SMALL_STATE(6570)] = 203907, + [SMALL_STATE(6571)] = 203911, + [SMALL_STATE(6572)] = 203915, + [SMALL_STATE(6573)] = 203919, + [SMALL_STATE(6574)] = 203923, + [SMALL_STATE(6575)] = 203927, + [SMALL_STATE(6576)] = 203931, + [SMALL_STATE(6577)] = 203935, + [SMALL_STATE(6578)] = 203939, + [SMALL_STATE(6579)] = 203943, + [SMALL_STATE(6580)] = 203947, + [SMALL_STATE(6581)] = 203951, + [SMALL_STATE(6582)] = 203955, + [SMALL_STATE(6583)] = 203959, + [SMALL_STATE(6584)] = 203963, + [SMALL_STATE(6585)] = 203967, + [SMALL_STATE(6586)] = 203971, + [SMALL_STATE(6587)] = 203975, + [SMALL_STATE(6588)] = 203979, + [SMALL_STATE(6589)] = 203983, + [SMALL_STATE(6590)] = 203987, + [SMALL_STATE(6591)] = 203991, + [SMALL_STATE(6592)] = 203995, + [SMALL_STATE(6593)] = 203999, + [SMALL_STATE(6594)] = 204003, + [SMALL_STATE(6595)] = 204007, + [SMALL_STATE(6596)] = 204011, + [SMALL_STATE(6597)] = 204015, + [SMALL_STATE(6598)] = 204019, + [SMALL_STATE(6599)] = 204023, + [SMALL_STATE(6600)] = 204027, + [SMALL_STATE(6601)] = 204031, + [SMALL_STATE(6602)] = 204035, + [SMALL_STATE(6603)] = 204039, + [SMALL_STATE(6604)] = 204043, + [SMALL_STATE(6605)] = 204047, + [SMALL_STATE(6606)] = 204051, + [SMALL_STATE(6607)] = 204055, + [SMALL_STATE(6608)] = 204059, + [SMALL_STATE(6609)] = 204063, + [SMALL_STATE(6610)] = 204067, + [SMALL_STATE(6611)] = 204071, + [SMALL_STATE(6612)] = 204075, + [SMALL_STATE(6613)] = 204079, + [SMALL_STATE(6614)] = 204083, + [SMALL_STATE(6615)] = 204087, + [SMALL_STATE(6616)] = 204091, + [SMALL_STATE(6617)] = 204095, + [SMALL_STATE(6618)] = 204099, + [SMALL_STATE(6619)] = 204103, + [SMALL_STATE(6620)] = 204107, + [SMALL_STATE(6621)] = 204111, + [SMALL_STATE(6622)] = 204115, + [SMALL_STATE(6623)] = 204119, + [SMALL_STATE(6624)] = 204123, + [SMALL_STATE(6625)] = 204127, + [SMALL_STATE(6626)] = 204131, + [SMALL_STATE(6627)] = 204135, + [SMALL_STATE(6628)] = 204139, + [SMALL_STATE(6629)] = 204143, + [SMALL_STATE(6630)] = 204147, + [SMALL_STATE(6631)] = 204151, + [SMALL_STATE(6632)] = 204155, + [SMALL_STATE(6633)] = 204159, + [SMALL_STATE(6634)] = 204163, + [SMALL_STATE(6635)] = 204167, + [SMALL_STATE(6636)] = 204171, + [SMALL_STATE(6637)] = 204175, + [SMALL_STATE(6638)] = 204179, + [SMALL_STATE(6639)] = 204183, + [SMALL_STATE(6640)] = 204187, + [SMALL_STATE(6641)] = 204191, + [SMALL_STATE(6642)] = 204195, + [SMALL_STATE(6643)] = 204199, + [SMALL_STATE(6644)] = 204203, + [SMALL_STATE(6645)] = 204207, + [SMALL_STATE(6646)] = 204211, + [SMALL_STATE(6647)] = 204215, + [SMALL_STATE(6648)] = 204219, + [SMALL_STATE(6649)] = 204223, + [SMALL_STATE(6650)] = 204227, + [SMALL_STATE(6651)] = 204231, + [SMALL_STATE(6652)] = 204235, + [SMALL_STATE(6653)] = 204239, + [SMALL_STATE(6654)] = 204243, + [SMALL_STATE(6655)] = 204247, + [SMALL_STATE(6656)] = 204251, + [SMALL_STATE(6657)] = 204255, + [SMALL_STATE(6658)] = 204259, + [SMALL_STATE(6659)] = 204263, + [SMALL_STATE(6660)] = 204267, + [SMALL_STATE(6661)] = 204271, + [SMALL_STATE(6662)] = 204275, + [SMALL_STATE(6663)] = 204279, + [SMALL_STATE(6664)] = 204283, + [SMALL_STATE(6665)] = 204287, + [SMALL_STATE(6666)] = 204291, + [SMALL_STATE(6667)] = 204295, + [SMALL_STATE(6668)] = 204299, + [SMALL_STATE(6669)] = 204303, + [SMALL_STATE(6670)] = 204307, + [SMALL_STATE(6671)] = 204311, + [SMALL_STATE(6672)] = 204315, + [SMALL_STATE(6673)] = 204319, + [SMALL_STATE(6674)] = 204323, + [SMALL_STATE(6675)] = 204327, + [SMALL_STATE(6676)] = 204331, + [SMALL_STATE(6677)] = 204335, + [SMALL_STATE(6678)] = 204339, + [SMALL_STATE(6679)] = 204343, + [SMALL_STATE(6680)] = 204347, + [SMALL_STATE(6681)] = 204351, + [SMALL_STATE(6682)] = 204355, + [SMALL_STATE(6683)] = 204359, + [SMALL_STATE(6684)] = 204363, + [SMALL_STATE(6685)] = 204367, + [SMALL_STATE(6686)] = 204371, + [SMALL_STATE(6687)] = 204375, + [SMALL_STATE(6688)] = 204379, + [SMALL_STATE(6689)] = 204383, + [SMALL_STATE(6690)] = 204387, + [SMALL_STATE(6691)] = 204391, + [SMALL_STATE(6692)] = 204395, + [SMALL_STATE(6693)] = 204399, + [SMALL_STATE(6694)] = 204403, + [SMALL_STATE(6695)] = 204407, + [SMALL_STATE(6696)] = 204411, + [SMALL_STATE(6697)] = 204415, + [SMALL_STATE(6698)] = 204419, + [SMALL_STATE(6699)] = 204423, + [SMALL_STATE(6700)] = 204427, + [SMALL_STATE(6701)] = 204431, + [SMALL_STATE(6702)] = 204435, + [SMALL_STATE(6703)] = 204439, + [SMALL_STATE(6704)] = 204443, + [SMALL_STATE(6705)] = 204447, + [SMALL_STATE(6706)] = 204451, + [SMALL_STATE(6707)] = 204455, + [SMALL_STATE(6708)] = 204459, + [SMALL_STATE(6709)] = 204463, + [SMALL_STATE(6710)] = 204467, + [SMALL_STATE(6711)] = 204471, + [SMALL_STATE(6712)] = 204475, + [SMALL_STATE(6713)] = 204479, + [SMALL_STATE(6714)] = 204483, + [SMALL_STATE(6715)] = 204487, + [SMALL_STATE(6716)] = 204491, + [SMALL_STATE(6717)] = 204495, + [SMALL_STATE(6718)] = 204499, + [SMALL_STATE(6719)] = 204503, + [SMALL_STATE(6720)] = 204507, + [SMALL_STATE(6721)] = 204511, + [SMALL_STATE(6722)] = 204515, + [SMALL_STATE(6723)] = 204519, + [SMALL_STATE(6724)] = 204523, + [SMALL_STATE(6725)] = 204527, + [SMALL_STATE(6726)] = 204531, + [SMALL_STATE(6727)] = 204535, + [SMALL_STATE(6728)] = 204539, + [SMALL_STATE(6729)] = 204543, + [SMALL_STATE(6730)] = 204547, + [SMALL_STATE(6731)] = 204551, + [SMALL_STATE(6732)] = 204555, + [SMALL_STATE(6733)] = 204559, + [SMALL_STATE(6734)] = 204563, + [SMALL_STATE(6735)] = 204567, + [SMALL_STATE(6736)] = 204571, + [SMALL_STATE(6737)] = 204575, + [SMALL_STATE(6738)] = 204579, + [SMALL_STATE(6739)] = 204583, }; 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_blade, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4193), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1712), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4189), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4187), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4045), - [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5423), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5422), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4976), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6864), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(386), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(385), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4975), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4974), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4973), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4972), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4971), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(926), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(722), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4970), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4969), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4968), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(668), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(62), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(61), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(176), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4967), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4966), - [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4965), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3661), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4964), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4963), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4962), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4961), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4960), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4960), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5472), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(675), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4959), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4958), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4957), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4956), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4178), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4955), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4954), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3850), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3849), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3848), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3846), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4953), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4952), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4951), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(717), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(717), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(76), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1761), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4075), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4071), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3988), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5436), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5435), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4747), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6723), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(372), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(371), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4745), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4744), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4743), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4741), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4740), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(998), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(721), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4739), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4737), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4736), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(665), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(59), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(58), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(174), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4735), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4734), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4733), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3585), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4732), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4731), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4730), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4729), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4728), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4728), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5376), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(726), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4726), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4725), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4724), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4722), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4088), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4721), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4720), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3873), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3872), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3871), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3870), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4719), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4718), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4717), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(725), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(725), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4249), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(849), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4239), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4240), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4099), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5518), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5517), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5315), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6851), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(573), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(572), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5314), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5313), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5312), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5311), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5310), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(757), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(686), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5309), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5308), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5307), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(660), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(19), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(21), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(157), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5306), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5305), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5304), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3673), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5303), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5302), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5301), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5300), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5299), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5299), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5521), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(713), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5298), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5297), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5296), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5295), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4245), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5294), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5293), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3773), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3772), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3771), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3769), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5292), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5291), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5290), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(704), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(704), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4150), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1797), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4149), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4144), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4033), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5403), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5404), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4950), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6865), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(370), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(369), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4949), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4948), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4947), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4946), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4945), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1019), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4944), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4943), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4942), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(663), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(59), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(57), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(167), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4941), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4940), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4939), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3665), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4938), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4937), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4936), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4935), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4934), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4934), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5466), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4933), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4932), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4931), - [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4930), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4254), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4929), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4928), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3812), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3811), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3810), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3809), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4927), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4926), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4925), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(676), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(676), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4289), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(963), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4284), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4281), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4082), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5491), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5490), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5289), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(6852), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(558), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(557), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5288), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5287), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5286), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5285), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5284), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(761), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(692), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5283), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5282), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5281), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(661), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(24), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(26), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(148), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5280), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5279), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5278), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3670), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5277), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5276), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5275), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5274), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5273), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5273), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5516), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(715), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5272), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5271), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5270), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5269), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4279), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5268), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5267), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3709), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3708), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3707), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3706), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5266), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5265), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5264), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(725), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(725), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4179), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(763), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4180), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4181), - [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4119), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5492), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5487), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5342), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6850), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(588), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(587), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5341), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5340), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5339), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5338), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5337), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(753), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(726), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5336), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5335), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5334), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(659), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(13), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(16), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(155), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5333), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5332), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5331), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3662), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5330), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5328), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5327), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5326), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5325), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5325), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5527), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(707), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5324), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5323), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5322), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5321), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4185), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5320), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5319), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3841), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3840), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3839), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3838), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5318), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5317), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5316), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(716), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(716), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4241), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1272), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4243), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4248), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4068), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5457), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5462), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5106), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6859), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(457), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(456), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5105), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5104), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5103), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5102), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5101), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(782), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(709), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5100), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5099), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5098), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(671), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(63), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(181), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5097), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5096), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5095), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3648), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5094), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5093), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5092), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5091), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5090), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5090), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5486), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(699), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5089), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5088), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5087), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5086), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4264), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5085), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5084), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4016), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4014), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4013), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4012), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5083), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5082), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5081), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(687), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(687), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4247), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1627), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4246), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4244), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4065), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5461), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5455), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5002), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6863), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(400), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(399), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5001), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5000), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4999), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4998), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4997), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(832), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(696), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4996), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4995), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4994), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(665), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(65), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(64), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(177), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4993), - [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4992), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4991), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3658), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4990), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4989), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4988), - [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4987), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4986), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4986), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5474), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(678), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4985), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4984), - [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4983), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4982), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4236), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4981), - [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4980), - [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3880), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3879), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3878), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3877), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4979), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4978), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4977), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(703), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(703), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4159), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1882), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4160), - [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4161), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4040), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5412), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5413), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4924), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6866), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(356), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(354), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4923), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4922), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4921), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4920), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4919), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1112), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4918), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4917), - [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4916), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(662), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(55), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(54), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(172), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4915), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4914), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4913), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3667), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4912), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4911), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4910), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4909), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4908), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4908), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5460), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(702), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4907), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4906), - [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4905), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4904), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4163), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4903), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4902), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3780), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3855), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3778), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3777), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4901), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4900), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4899), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), - [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4199), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1481), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4200), - [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4202), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4050), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5425), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5426), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4898), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6867), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(341), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(340), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4897), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4896), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4895), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4894), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4893), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1204), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(672), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4892), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4891), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4890), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(664), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(52), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(51), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(171), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4889), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4888), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4887), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3674), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4886), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4885), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4884), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4883), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4882), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4882), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5454), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(674), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4881), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4880), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4879), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4878), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4203), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4877), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4876), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3749), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3748), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3747), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3746), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4875), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4874), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4873), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(684), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(684), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4204), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1183), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4206), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4212), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4054), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5434), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5435), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4872), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6868), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(327), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(326), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4871), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4870), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4869), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4868), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4867), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1293), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(697), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4866), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4865), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4864), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(670), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4861), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4860), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4859), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3672), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4858), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4857), - [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4856), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4855), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4854), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4854), - [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5450), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4853), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4852), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4851), - [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4850), - [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4218), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4849), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4848), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3725), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3724), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3723), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3722), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4847), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4846), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4845), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(689), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(689), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4223), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1087), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4224), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4226), - [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4061), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5445), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5446), - [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4844), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6869), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(314), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(313), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4843), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4842), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4841), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4840), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4839), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1384), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4838), - [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4837), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4836), - [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(669), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(46), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(45), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(174), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4834), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4833), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4832), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3645), - [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4831), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4830), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4829), - [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4828), - [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4827), - [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4827), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5448), - [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(681), - [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4826), - [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4825), - [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4824), - [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4823), - [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4227), - [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4822), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4821), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3695), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3690), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3689), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3688), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4820), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4819), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4818), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(694), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(694), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4286), - [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1540), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4287), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4288), - [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4086), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5483), - [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5496), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5028), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6862), - [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(413), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(412), - [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5027), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5026), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5025), - [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5024), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5023), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(858), - [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(705), - [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5022), - [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5021), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5020), - [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(667), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(67), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(66), - [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(154), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5019), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5018), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5017), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3656), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5016), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5015), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5014), - [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5013), - [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5012), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5012), - [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5476), - [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), - [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5011), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5010), - [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5009), - [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5008), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4290), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5007), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5006), - [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3911), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3909), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3907), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3906), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5005), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5004), - [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5003), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(711), - [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(711), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4213), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1453), - [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4214), - [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4215), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4110), - [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5535), - [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5534), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5055), - [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6861), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(426), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(425), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5054), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5053), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5052), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5051), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5050), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(996), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(685), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5048), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5047), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5046), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(666), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(69), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(68), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(183), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5045), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5044), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5043), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3652), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5042), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5041), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5040), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5039), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5038), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5038), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5481), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5037), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5036), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5035), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5034), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4222), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5033), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5032), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3948), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3947), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3946), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3945), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5031), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5030), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5029), - [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4146), - [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1363), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4147), - [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4148), - [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4131), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5545), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5546), - [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5080), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6860), - [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(441), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(440), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5079), - [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5078), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5077), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5076), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5075), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(868), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(718), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5074), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5073), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5072), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(658), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(71), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(70), - [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(180), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5071), - [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5070), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5069), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3651), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5068), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5067), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5066), - [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5065), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5064), - [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5064), - [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5484), - [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(693), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5063), - [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5062), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5061), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5060), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4152), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4479), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5059), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3977), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3972), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3971), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3970), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5058), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5057), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5056), - [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(682), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(682), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4251), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2173), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4265), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4259), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4072), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5468), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5467), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5263), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), - [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6853), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(542), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(541), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5262), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5261), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5260), - [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5259), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5258), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5257), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5256), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5254), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(734), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(163), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5253), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5252), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5251), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3663), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5250), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5249), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5248), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5247), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5246), - [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5246), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5514), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1045), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5245), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5244), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5243), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5242), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4256), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5241), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5240), - [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3916), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3917), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3929), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3913), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5239), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5238), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5237), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(819), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(819), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4285), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2134), - [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4283), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4282), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4088), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5498), - [4814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5499), - [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5158), - [4820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6857), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(487), - [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(486), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5157), - [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5156), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5155), - [4838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5154), - [4841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5153), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5152), - [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5151), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5150), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(735), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(53), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(56), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(175), - [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5149), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5148), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5147), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3653), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5146), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5145), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5144), - [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5143), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5142), - [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5142), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5497), - [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1092), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5141), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5140), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5139), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5138), - [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4275), - [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5137), - [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5136), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3931), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3932), - [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3933), - [4931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3934), - [4934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5135), - [4937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5134), - [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5133), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1282), - [4946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1282), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4158), - [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3060), - [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4157), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4156), - [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4129), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5548), - [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5398), - [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4532), - [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6880), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(482), - [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(484), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4531), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4530), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4529), - [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4528), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4527), - [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4526), - [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4525), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4524), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(738), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(7), - [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(182), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4523), - [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4522), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4521), - [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3657), - [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4520), - [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4519), - [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4518), - [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4517), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4516), - [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4516), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5405), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(952), - [5068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4515), - [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4514), - [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4513), - [5077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4512), - [5080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4155), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4511), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4510), - [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3888), - [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3889), - [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3890), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3891), - [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4509), - [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4508), - [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4507), - [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(941), - [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(941), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4217), - [5137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3537), - [5140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4216), - [5143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4208), - [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4113), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5397), - [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5539), - [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5368), - [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6849), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(601), - [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(600), - [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5367), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5366), - [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5365), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5364), - [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5363), - [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5362), - [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5361), - [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5360), - [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(746), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(11), - [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(12), - [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(151), - [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5359), - [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5358), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5357), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3655), - [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5356), - [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5355), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5354), - [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5353), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5352), - [5230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5352), - [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5530), - [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(759), - [5239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5351), - [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5350), - [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5349), - [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5348), - [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4177), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5347), - [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5346), - [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3915), - [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3912), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3910), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3908), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5345), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5344), - [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5343), - [5281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(772), - [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(772), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4143), - [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2053), - [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4141), - [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4171), - [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4125), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5543), - [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5542), - [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5132), - [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6858), - [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(472), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(471), - [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5131), - [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5130), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5129), - [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5128), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5127), - [5819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5126), - [5822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5125), - [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5124), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(739), - [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(58), - [5834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(60), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(178), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5123), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5122), - [5846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5121), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3649), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5120), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5119), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5118), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5117), - [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5116), - [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5116), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5494), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1185), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5115), - [5879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5114), - [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5113), - [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5112), - [5888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4196), - [5891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5111), - [5894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5110), - [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4004), - [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4005), - [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4006), - [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4007), - [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5109), - [5912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5108), - [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5107), - [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1373), - [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1373), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4221), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3312), - [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4140), - [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4220), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4055), - [6105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5442), - [6108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5441), - [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5236), - [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6854), - [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(528), - [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(525), - [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5235), - [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5234), - [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5233), - [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5232), - [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5231), - [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5230), - [6141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5229), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5228), - [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(745), - [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(35), - [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(38), - [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(160), - [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5227), - [6162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5226), - [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5225), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3671), - [6171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5224), - [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5223), - [6177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5222), - [6180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5221), - [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5220), - [6186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5220), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5509), - [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(811), - [6195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5219), - [6198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5218), - [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5217), - [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5216), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4219), - [6210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5215), - [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5214), - [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3717), - [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3718), - [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3719), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3720), - [6228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5213), - [6231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5212), - [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5211), - [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1007), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1007), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4228), - [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3508), - [6261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4229), - [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4225), - [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4070), - [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5478), - [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5464), - [6276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5394), - [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6848), - [6282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(614), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(613), - [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5393), - [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5392), - [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5391), - [6297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5390), - [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5389), - [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5388), - [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5387), - [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5386), - [6312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(748), - [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5), - [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(8), - [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), - [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5385), - [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5384), - [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5383), - [6333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3650), - [6336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5382), - [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5381), - [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5380), - [6345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5379), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5378), - [6351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5378), - [6354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5536), - [6357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(756), - [6360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5377), - [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5376), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5375), - [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5374), - [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4258), - [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5373), - [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5372), - [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3988), - [6384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3987), - [6387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3986), - [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3985), - [6393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5371), - [6396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5370), - [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5369), - [6402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(760), - [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(760), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4183), - [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3407), - [6870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4172), - [6873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4170), - [6876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4042), - [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5417), - [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5414), - [6885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5210), - [6888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6855), - [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(513), - [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(512), - [6897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5209), - [6900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5208), - [6903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5207), - [6906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5206), - [6909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5205), - [6912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5204), - [6915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5203), - [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5202), - [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(733), - [6924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(41), - [6927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(44), - [6930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(170), - [6933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5201), - [6936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5200), - [6939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5199), - [6942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3668), - [6945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5198), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5197), - [6951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5196), - [6954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5195), - [6957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5194), - [6960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5194), - [6963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5506), - [6966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(905), - [6969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5193), - [6972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5192), - [6975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5191), - [6978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5190), - [6981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4164), - [6984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5189), - [6987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5188), - [6990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3785), - [6993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3786), - [6996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3787), - [6999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3788), - [7002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5187), - [7005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5186), - [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5185), - [7011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1100), - [7014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1100), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4230), - [7110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2220), - [7113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4232), - [7116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4237), - [7119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4064), - [7122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5452), - [7125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5453), - [7128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4817), - [7131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6870), - [7134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(301), - [7137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(300), - [7140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4816), - [7143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4815), - [7146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4814), - [7149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4813), - [7152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4812), - [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4811), - [7158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4810), - [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4809), - [7164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(747), - [7167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(43), - [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(42), - [7173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(147), - [7176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4806), - [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4805), - [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4804), - [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3643), - [7188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4803), - [7191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4802), - [7194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4801), - [7197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4800), - [7200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4799), - [7203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4799), - [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5444), - [7209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(997), - [7212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4798), - [7215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4797), - [7218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4796), - [7221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4795), - [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4242), - [7227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4794), - [7230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4793), - [7233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3864), - [7236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3882), - [7239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3887), - [7242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3782), - [7245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4792), - [7248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4791), - [7251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4790), - [7254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(989), - [7257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(989), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4260), - [7369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2304), - [7372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4261), - [7375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4262), - [7378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4073), - [7381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5469), - [7384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5470), - [7387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4789), - [7390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6871), - [7393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(286), - [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(285), - [7399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4788), - [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4787), - [7405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4786), - [7408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4785), - [7411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4784), - [7414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4783), - [7417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4782), - [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4781), - [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(744), - [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), - [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(39), - [7432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(164), - [7435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4778), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4777), - [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4776), - [7444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3644), - [7447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4775), - [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4774), - [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4773), - [7456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4772), - [7459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4771), - [7462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4771), - [7465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5440), - [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(993), - [7471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4770), - [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4769), - [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4768), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4767), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4266), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4766), - [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4765), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3856), - [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3851), - [7498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3842), - [7501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3836), - [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4764), - [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4763), - [7510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4762), - [7513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(984), - [7516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(984), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4271), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2388), - [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4272), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4273), - [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4078), - [7640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5477), - [7643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5479), - [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4761), - [7649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6872), - [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(270), - [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(269), - [7658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4760), - [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4759), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4758), - [7667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4757), - [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4756), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4755), - [7676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4754), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4753), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(742), - [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(37), - [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), - [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(162), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4749), - [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4748), - [7700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4747), - [7703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3646), - [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4746), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4745), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4744), - [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4743), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4742), - [7721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4742), - [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5437), - [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(990), - [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4741), - [7733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4740), - [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4739), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4738), - [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4274), - [7745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4737), - [7748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4736), - [7751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3697), - [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3698), - [7757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3699), - [7760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3700), - [7763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4735), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4734), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4733), - [7772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(980), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(980), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4276), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2472), - [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4277), - [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4278), - [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4081), - [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5488), - [7902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5489), - [7905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4732), - [7908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6873), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(257), - [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(256), - [7917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4731), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4730), - [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4729), - [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4728), - [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4727), - [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4726), - [7935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4725), - [7938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4724), - [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(741), - [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(34), - [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(33), - [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(161), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4722), - [7956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4721), - [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4720), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3676), - [7965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4719), - [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4718), - [7971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4717), - [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4716), - [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4715), - [7980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4715), - [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5431), - [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(985), - [7989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4714), - [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4713), - [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4712), - [7998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4711), - [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4280), - [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4710), - [8007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4709), - [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3715), - [8013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3716), - [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3721), - [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3726), - [8022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4708), - [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4707), - [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4706), - [8031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(976), - [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(976), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4269), - [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2556), - [8147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4268), - [8150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4267), - [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4093), - [8156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5502), - [8159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5503), - [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4705), - [8165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6874), - [8168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(243), - [8171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(242), - [8174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4704), - [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4703), - [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4702), - [8183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4701), - [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4700), - [8189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4699), - [8192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4698), - [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4697), - [8198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(740), - [8201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), - [8204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), - [8207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(159), - [8210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4693), - [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4692), - [8216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4691), - [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3675), - [8222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4690), - [8225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4689), - [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4688), - [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4687), - [8234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4686), - [8237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4686), - [8240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5429), - [8243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(981), - [8246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4685), - [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4684), - [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4683), - [8255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4682), - [8258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4263), - [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4681), - [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4680), - [8267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3738), - [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3742), - [8273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3744), - [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3745), - [8279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4679), - [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4678), - [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4677), - [8288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(972), - [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(972), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4139), - [8503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2640), - [8506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4253), - [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4252), - [8512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4096), - [8515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5511), - [8518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5512), - [8521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4676), - [8524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6875), - [8527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(230), - [8530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(228), - [8533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4675), - [8536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4674), - [8539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4673), - [8542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4672), - [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4671), - [8548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4670), - [8551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4669), - [8554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4668), - [8557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(728), - [8560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), - [8563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(27), - [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(158), - [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4665), - [8572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4664), - [8575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4663), - [8578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3642), - [8581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4662), - [8584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4661), - [8587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4660), - [8590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4659), - [8593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4658), - [8596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4658), - [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5427), - [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(977), - [8605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4657), - [8608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4656), - [8611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4655), - [8614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4654), - [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4250), - [8620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4653), - [8623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4651), - [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3760), - [8629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3761), - [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3763), - [8635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3765), - [8638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4650), - [8641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4649), - [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4648), - [8647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(968), - [8650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(968), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4235), - [8760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2724), - [8763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4234), - [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4233), - [8769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4103), - [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5523), - [8775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5524), - [8778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4647), - [8781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6876), - [8784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(214), - [8787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(213), - [8790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4646), - [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4645), - [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4644), - [8799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4643), - [8802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4642), - [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4641), - [8808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4640), - [8811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4639), - [8814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(737), - [8817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), - [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(20), - [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(153), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4635), - [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4634), - [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4633), - [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3669), - [8838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4632), - [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4631), - [8844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4630), - [8847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4629), - [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4628), - [8853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4628), - [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5420), - [8859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(973), - [8862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4627), - [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4626), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4625), - [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4624), - [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4231), - [8877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4623), - [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4622), - [8883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3789), - [8886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3790), - [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3791), - [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3792), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4621), - [8898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4620), - [8901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4619), - [8904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(964), - [8907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(964), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4211), - [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2808), - [9020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4210), - [9023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4209), - [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4111), - [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5537), - [9032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5538), - [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4618), - [9038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6877), - [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(200), - [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(199), - [9047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4617), - [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4616), - [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4615), - [9056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4614), - [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4613), - [9062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4612), - [9065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4611), - [9068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4610), - [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(736), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(18), - [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), - [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(152), - [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4606), - [9086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4605), - [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4604), - [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3666), - [9095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4603), - [9098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4602), - [9101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4601), - [9104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4600), - [9107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4599), - [9110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4599), - [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5416), - [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(969), - [9119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4598), - [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4597), - [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4596), - [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4595), - [9131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4205), - [9134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4594), - [9137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4593), - [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3808), - [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3815), - [9146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3817), - [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3818), - [9152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4592), - [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4591), - [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4590), - [9161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(958), - [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(958), - [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4154), - [9170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1966), - [9173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4142), - [9176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4145), - [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4038), - [9182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5406), - [9185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5407), - [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4550), - [9191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6762), - [9194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(643), - [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(334), - [9200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4551), - [9203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4579), - [9206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4580), - [9209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4696), - [9212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4607), - [9215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4608), - [9218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4609), - [9221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4636), - [9224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(743), - [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), - [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(23), - [9233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(156), - [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4637), - [9239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4638), - [9242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4666), - [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3647), - [9248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4667), - [9251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4694), - [9254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4695), - [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4808), - [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4723), - [9263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4723), - [9266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5433), - [9269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(751), - [9272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4750), - [9275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4751), - [9278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4752), - [9281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4779), - [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4197), - [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4780), - [9290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4807), - [9293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4001), - [9296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3991), - [9299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3996), - [9302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3995), - [9305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4835), - [9308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4862), - [9311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4863), - [9314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(752), - [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(752), - [9320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4194), - [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2892), - [9326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4192), - [9329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4191), - [9332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4118), - [9335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5458), - [9338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5459), - [9341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4589), - [9344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6878), - [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(187), - [9350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(186), - [9353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4588), - [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4587), - [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4586), - [9362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4585), - [9365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4584), - [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4583), - [9371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4582), - [9374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4581), - [9377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(732), - [9380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(15), - [9383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(14), - [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(150), - [9389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4578), - [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4577), - [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4576), - [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3664), - [9401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4575), - [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4574), - [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4573), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4572), - [9413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4571), - [9416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4571), - [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5411), - [9422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(965), - [9425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4570), - [9428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4569), - [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4568), - [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4567), - [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4188), - [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4566), - [9443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4565), - [9446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3825), - [9449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3826), - [9452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3835), - [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3837), - [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4564), - [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4563), - [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4562), - [9467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(951), - [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(951), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4169), - [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2976), - [9481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4168), - [9484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4167), - [9487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4127), - [9490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5531), - [9493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5532), - [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4560), - [9499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6879), - [9502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(281), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(374), - [9508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4559), - [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4558), - [9514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4557), - [9517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4556), - [9520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4555), - [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4554), - [9526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4553), - [9529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4552), - [9532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(730), - [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(10), - [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(9), - [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(166), - [9544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4549), - [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4548), - [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4547), - [9553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3659), - [9556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4546), - [9559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4545), - [9562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4544), - [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4543), - [9568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4542), - [9571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4542), - [9574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5409), - [9577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(959), - [9580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4541), - [9583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4540), - [9586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4539), - [9589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4538), - [9592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4165), - [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4537), - [9598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4536), - [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3865), - [9604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3866), - [9607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3867), - [9610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3869), - [9613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4535), - [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4534), - [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4533), - [9622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(945), - [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(945), - [9628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4173), - [9631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2230), - [9634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4174), - [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4175), - [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4043), - [9643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5419), - [9646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5421), - [9649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5184), - [9652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6856), - [9655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(500), - [9658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(499), - [9661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5183), - [9664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5182), - [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5181), - [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5180), - [9673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5179), - [9676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5178), - [9679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5177), - [9682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5176), - [9685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(729), - [9688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), - [9691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(50), - [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(173), - [9697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5175), - [9700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5174), - [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5173), - [9706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3660), - [9709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5172), - [9712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5171), - [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5170), - [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5169), - [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5168), - [9724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5168), - [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5504), - [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(999), - [9733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5167), - [9736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5166), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5165), - [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5164), - [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4184), - [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5163), - [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5162), - [9754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3858), - [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3859), - [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3860), - [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3861), - [9766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5161), - [9769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5160), - [9772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5159), - [9775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1193), - [9778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1193), - [9781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4182), - [9784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3144), - [9787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4190), - [9790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4198), - [9793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4116), - [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5541), - [9799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5540), - [9802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4506), - [9805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6881), - [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(554), - [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(653), - [9814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4505), - [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4504), - [9820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4503), - [9823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4502), - [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4501), - [9829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4500), - [9832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4499), - [9835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4498), - [9838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(731), - [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4), - [9844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3), - [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(179), - [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4497), - [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4496), - [9856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4495), - [9859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3654), - [9862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4494), - [9865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4493), - [9868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4492), - [9871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4491), - [9874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4490), - [9877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4490), - [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5400), - [9883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(946), - [9886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4489), - [9889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4488), - [9892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4487), - [9895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4486), - [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4207), - [9901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4485), - [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4484), - [9907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3918), - [9910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3919), - [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3920), - [9916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3921), - [9919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4483), - [9922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4482), - [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4481), - [9928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(938), - [9931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(938), - [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), - [9936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), - [9942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), - [9948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), - [9950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(673), - [9953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(673), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [9960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [10000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(690), - [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(690), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [10014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), - [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), - [10020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(698), - [10023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(698), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [10028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(700), - [10031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(700), - [10034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(701), - [10037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(701), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [10050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(706), - [10053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(706), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [10058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(708), - [10061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(708), - [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [10070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(714), - [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(714), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [10084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(719), - [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(719), - [10090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(721), - [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(721), - [10096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(723), - [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(723), - [10102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(724), - [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(724), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [10112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(727), - [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(727), - [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_authorization, 1), - [10120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_authorization, 1), - [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 5, .production_id = 4), - [10124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 5, .production_id = 4), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [10132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(754), - [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(754), - [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), - [10140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), - [10152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), - [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), - [10156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), - [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), - [10160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), - [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), - [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), - [10168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), - [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_envoy, 1), - [10172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_envoy, 1), - [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), - [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2), - [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), - [10188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), - [10190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), - [10192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), - [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), - [10196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), - [10200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), - [10202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), - [10204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), - [10206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), - [10208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), - [10210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), - [10212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), - [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), - [10216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), - [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 2), - [10220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 2), - [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), - [10224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), - [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 2), - [10228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 2), - [10230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 2), - [10232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 2), - [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 2), - [10236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 2), - [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 2), - [10240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 2), - [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 2), - [10244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 2), - [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [10248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 3), - [10250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), - [10252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), - [10254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), - [10256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), - [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), - [10260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), - [10262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), - [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), - [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), - [10268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), - [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), - [10272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), - [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), - [10276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), - [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), - [10280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), - [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), - [10284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), - [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), - [10288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), - [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), - [10292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), - [10294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), - [10296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), - [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), - [10300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), - [10302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), - [10304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), - [10308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), - [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), - [10312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), - [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), - [10316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), - [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), - [10320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), - [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), - [10324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [10328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), - [10330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), - [10332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), - [10334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), - [10336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 3), - [10338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 3), - [10340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__can, 3), - [10342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__can, 3), - [10344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cannot, 3), - [10346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cannot, 3), - [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), - [10350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), - [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__feature, 3), - [10354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__feature, 3), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [10360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), - [10362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), - [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), - [10366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), - [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), - [10370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), - [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), - [10374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), - [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), - [10378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), - [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), - [10382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), - [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 3), - [10386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 3), - [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__task, 3), - [10390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__task, 3), - [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__story, 3), - [10394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__story, 3), - [10396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 3), - [10398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 3), - [10400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 3), - [10402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 3), - [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 3), - [10406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 3), - [10408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(833), - [10411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(833), - [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 3), - [10416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 3), - [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), - [10420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), - [10422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), - [10424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), - [10426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), - [10428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), - [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__canany, 3), - [10432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__canany, 3), - [10434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 4, .production_id = 2), - [10436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 4, .production_id = 2), - [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 4, .production_id = 3), - [10440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 4, .production_id = 3), - [10442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), - [10444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), - [10446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 2), - [10448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 2), - [10450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 5), - [10452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 5), - [10454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), - [10456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), - [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), - [10460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), - [10462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 6, .production_id = 6), - [10464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 6, .production_id = 6), - [10466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), - [10468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), - [10470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 6, .production_id = 5), - [10472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 6, .production_id = 5), - [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), - [10476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [10480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(929), - [10483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(929), - [10486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(930), - [10489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(930), - [10492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(931), - [10495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(931), - [10498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(932), - [10501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(932), - [10504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(933), - [10507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(933), - [10510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(934), - [10513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(934), - [10516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(935), - [10519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(935), - [10522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(936), - [10525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(936), - [10528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(937), - [10531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(937), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [10538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), - [10541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), - [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [10548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(943), - [10551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(943), - [10554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), - [10557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [10632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1059), - [10635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1059), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [10644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1155), - [10647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1155), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [10656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1247), - [10659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1247), - [10662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1264), - [10665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1264), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [10676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1654), - [10679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1654), - [10682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1824), - [10685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1824), - [10688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1909), - [10691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1909), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), - [11082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5528), - [11085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4270), - [11088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4270), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [11135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5508), - [11138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4201), - [11141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4201), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [11204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5549), - [11207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4195), - [11210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4195), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [11291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5402), - [11294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4238), - [11297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4238), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [11368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5501), - [11371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4176), - [11374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4176), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [11841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4138), - [11844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4138), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4151), - [11886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4151), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [11895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4153), - [11898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4153), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [11917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4162), - [11920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4162), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [11929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4166), - [11932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4166), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_only, 1), - [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [12011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [12087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [12123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4255), - [12126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4255), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [12131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4257), - [12134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4257), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [12161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [12209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4293), - [12212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4293), - [12215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4294), - [12218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4294), - [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [12229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4297), - [12232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4297), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [12241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [12243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4301), - [12246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4301), - [12249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4302), - [12252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4302), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [12275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [12279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [12281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [12315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [12327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [12339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [12341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [12345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [12347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [12353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [12359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [12361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [12363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [12365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [12379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__notification, 2), - [12381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__notification, 2), - [12383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), - [12385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(5049), - [12388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [12400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [12406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [12410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [12416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [12418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [12422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), - [12424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(4480), - [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [12455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [12457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [12459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [12465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [12491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [12493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [12495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(5395), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [12504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [12510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [12514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [12522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [12530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [12536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [12538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [12540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [12542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [12548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [12552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [12554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [12562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [12564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [12580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [12582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [12588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [12590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [12592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [12594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [12596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [12598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [12610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [12614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [12616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [12618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [12622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [12624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [12626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [12646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [12648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [12650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [12654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [12662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [12664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [12666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), - [12668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [12670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), - [12672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 2), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [12676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [12678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 1), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [12722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), - [12724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 4), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [12730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), - [12732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 3), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [12822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 3), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [14514] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(86), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1678), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4110), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4109), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3975), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5408), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5410), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4789), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6722), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(387), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(386), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4787), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4786), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4785), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4646), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4784), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(907), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(715), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4783), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4782), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4781), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(670), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(62), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(61), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(176), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4779), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4778), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4777), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3581), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4776), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4775), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4774), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4773), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4772), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4772), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5372), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(675), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4770), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4769), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4768), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4766), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4105), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4765), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4764), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3922), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3921), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3920), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3917), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4761), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4759), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4750), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(710), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(90), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(835), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4157), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4158), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4018), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5311), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5309), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5265), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6709), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(576), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(575), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5263), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5262), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5261), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5260), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5259), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(864), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(685), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5258), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5256), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5255), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(662), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(19), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(20), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(157), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5251), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5248), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5247), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3593), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5245), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5244), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5243), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5242), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5241), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5241), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5297), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(713), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5234), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5233), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5232), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5231), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4160), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5230), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5229), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3764), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3763), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3757), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3755), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5228), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5227), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5226), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(720), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(101), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1595), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4155), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4154), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4014), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5361), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5362), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4822), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6721), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(400), + [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(399), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4821), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4820), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4819), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4818), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4817), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(815), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), + [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4816), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4815), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4814), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(667), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(65), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(64), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(177), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4810), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4808), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4807), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3579), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4806), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4805), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4804), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4803), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4802), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4802), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5290), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(678), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4800), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4799), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4798), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4797), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4147), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4796), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4795), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3954), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3949), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3948), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3947), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4793), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4792), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4791), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(674), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(674), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(102), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(926), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4145), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4143), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4046), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5312), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5316), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5224), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(6710), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(561), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(560), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5223), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5222), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5221), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5219), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5218), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(816), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(698), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5217), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5216), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5215), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(663), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(23), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(26), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(160), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5213), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5212), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5211), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3602), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5210), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5208), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5207), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5206), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5205), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5205), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5301), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(672), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5203), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5202), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5201), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5200), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(4092), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5199), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5198), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3679), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3677), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3673), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3668), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5197), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5195), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(5194), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(722), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(722), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(105), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(776), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4083), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4086), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3995), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5434), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5432), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5238), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6708), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(589), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(588), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5252), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5253), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5264), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5276), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5289), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(929), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(727), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5288), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5287), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5286), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(659), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(13), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(16), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(155), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5284), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5283), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5282), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3586), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5281), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5280), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5279), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5278), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5277), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5277), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5292), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(703), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5275), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5274), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5273), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5272), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4090), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5271), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5270), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3850), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3848), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3846), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3835), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5269), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5268), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5267), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(706), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(706), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(107), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1248), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4159), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4161), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3973), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5357), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5356), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4970), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6717), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(459), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(457), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4967), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4964), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4963), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4962), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4960), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(755), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(707), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4959), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4957), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4956), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(664), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(63), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(182), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4954), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4953), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4952), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3578), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4950), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4949), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4948), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4947), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4946), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4946), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5345), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(699), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4943), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4942), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4941), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4940), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4162), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4939), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4938), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3900), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3899), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3898), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3894), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4937), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4935), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4934), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(692), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(692), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(121), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1844), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4089), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4091), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3997), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5423), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5422), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4714), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6724), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(357), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(356), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4713), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4712), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4711), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4710), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4709), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1089), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(673), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4708), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4707), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4706), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(660), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(55), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(54), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(171), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4703), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4702), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4701), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3587), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4700), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4699), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4698), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4697), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4695), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4695), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5380), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(700), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4693), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4692), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4691), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4690), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4093), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4688), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4686), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3844), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3843), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3842), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3750), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4683), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4680), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4679), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(124), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1925), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4107), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4108), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4009), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5412), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5411), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4674), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6725), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(341), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(340), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4673), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4672), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4670), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4669), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4666), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1179), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(705), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4665), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4664), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4663), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(661), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(52), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(51), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(170), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4659), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4658), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4657), + [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3591), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4656), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4655), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4654), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4653), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4651), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4651), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5389), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(702), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4649), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4648), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4647), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4645), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4069), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4644), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4643), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3797), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3796), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3795), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3793), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4642), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4640), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4639), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(125), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1178), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4116), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4117), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4020), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5399), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5398), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4636), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6726), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(327), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(326), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4635), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4634), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4633), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4632), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4631), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1268), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(697), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4630), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4629), + [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4628), + [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(668), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4624), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4623), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4616), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3595), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4615), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4609), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4608), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4607), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4606), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4606), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5401), + [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(676), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4604), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4603), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4602), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4601), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4120), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4599), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4598), + [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3761), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3759), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3758), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3756), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4597), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4595), + [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4594), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), + [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(126), + [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1092), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4070), + [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4133), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4033), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5382), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5381), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4591), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6727), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(314), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(313), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4590), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4589), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4588), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4587), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4586), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1357), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(690), + [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4585), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4584), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4583), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(671), + [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(46), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(45), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(152), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4578), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4577), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4576), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3597), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4575), + [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4574), + [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4573), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4572), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4571), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4571), + [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5405), + [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(680), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4569), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4568), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4567), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4566), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4134), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4565), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4564), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3721), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3720), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3719), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3717), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4563), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4562), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4561), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(129), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1510), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4184), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4185), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4004), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5306), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5308), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4858), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6720), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(413), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(412), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4857), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4856), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4855), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4854), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4853), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(999), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(724), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4852), + [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4851), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4850), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(658), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(67), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(66), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(183), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4849), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4848), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4847), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3577), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4846), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4845), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4844), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4843), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4842), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4842), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5360), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(682), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4840), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4839), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4837), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4836), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4115), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4835), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4834), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3831), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3838), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3849), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3854), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4833), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4832), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4830), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(677), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(136), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1425), + [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4123), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4124), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4027), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5392), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5391), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4901), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6719), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(428), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(427), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4893), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4892), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4891), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4886), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4885), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(980), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(708), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4883), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4882), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4879), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(669), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(69), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(68), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(181), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4878), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4877), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4876), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3574), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4875), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4874), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4873), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4872), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4871), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4871), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5358), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(687), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4869), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4868), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4867), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4866), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4127), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4864), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4863), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3617), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3615), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3614), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3730), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4862), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4861), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4860), + [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(681), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(681), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(146), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1337), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4076), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4077), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4044), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5441), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5440), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4931), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(6718), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(445), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(443), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4930), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4929), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4928), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4927), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4926), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(853), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(723), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4925), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4924), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4923), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(666), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(71), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(70), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(154), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4922), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4921), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4920), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3575), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4919), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4918), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4917), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4916), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4915), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4915), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5348), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(693), + [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4913), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4912), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4911), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4910), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4081), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4908), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4373), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3655), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3653), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3652), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3651), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4906), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4905), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4904), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(686), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(686), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(257), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2992), + [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4082), + [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4080), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3987), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5428), + [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5429), + [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5114), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6738), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(470), + [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(474), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5111), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5077), + [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5023), + [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4983), + [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4958), + [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4829), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4826), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4825), + [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(730), + [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(7), + [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(166), + [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4716), + [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4715), + [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4694), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3584), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4685), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4684), + [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4678), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4677), + [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4675), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4675), + [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5386), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), + [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(958), + [4924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4668), + [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4662), + [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4650), + [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4637), + [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4078), + [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4620), + [4942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4619), + [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3884), + [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3885), + [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3887), + [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3890), + [4957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4617), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4614), + [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4613), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(949), + [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(949), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(268), + [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3409), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4112), + [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4111), + [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3970), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5403), + [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5404), + [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4966), + [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6707), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(602), + [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(601), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4968), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4969), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5001), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5012), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5024), + [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5025), + [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5039), + [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5040), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(742), + [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(10), + [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(11), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(151), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5046), + [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5058), + [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5088), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3580), + [5085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5097), + [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5100), + [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5110), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5128), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5143), + [5100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5143), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5315), + [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(821), + [5109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5157), + [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5174), + [5115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5181), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5182), + [5121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4106), + [5124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5184), + [5127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5192), + [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3933), + [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3931), + [5136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3930), + [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3929), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5225), + [5145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5236), + [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5237), + [5151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(818), + [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(818), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(350), + [5486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2026), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4072), + [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4073), + [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3979), + [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5438), + [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5291), + [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5000), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6716), + [5510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(475), + [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(473), + [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4999), + [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4998), + [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4997), + [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4996), + [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4995), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4994), + [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4993), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4992), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(737), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(57), + [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(60), + [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(178), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4991), + [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4990), + [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4989), + [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3583), + [5564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4988), + [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4987), + [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4986), + [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4985), + [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4984), + [5579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4984), + [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5338), + [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1161), + [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4982), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4981), + [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4979), + [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4978), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4087), + [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4977), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4976), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3909), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3910), + [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3911), + [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3912), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4975), + [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4974), + [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4972), + [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1258), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1258), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(366), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1943), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4179), + [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4177), + [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4065), + [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5333), + [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5334), + [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5191), + [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6711), + [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(546), + [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(545), + [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5190), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5189), + [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5188), + [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5187), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5185), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5180), + [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5177), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5176), + [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(740), + [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), + [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), + [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(163), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5175), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5173), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5172), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3605), + [5759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5171), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5170), + [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5169), + [5768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5165), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5163), + [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5163), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5310), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1209), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5161), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5160), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5156), + [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5155), + [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4176), + [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5154), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5153), + [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3609), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3704), + [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3824), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3836), + [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5152), + [5819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5151), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5150), + [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1106), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1106), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(422), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2112), + [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4104), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4103), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3999), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5417), + [6007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5419), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5045), + [6013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6715), + [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(488), + [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(487), + [6022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5043), + [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5042), + [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5041), + [6031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5038), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5035), + [6037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5034), + [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5031), + [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5030), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(733), + [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(53), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(56), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(175), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5028), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5021), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5020), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3588), + [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5019), + [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5017), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5016), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5014), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5013), + [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5013), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5336), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1070), + [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5011), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5010), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5009), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5008), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4094), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5006), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5005), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3779), + [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3752), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3840), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3841), + [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5004), + [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5003), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5002), + [6136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1169), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1169), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(460), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3278), + [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4164), + [6553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4163), + [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4056), + [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5353), + [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5355), + [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5147), + [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6712), + [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(530), + [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(529), + [6577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5146), + [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5145), + [6583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5144), + [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5142), + [6589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5141), + [6592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5140), + [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5139), + [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5137), + [6601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(747), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(35), + [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(38), + [6610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(148), + [6613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5136), + [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5135), + [6619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5134), + [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3601), + [6625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5133), + [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5132), + [6631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5131), + [6634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5130), + [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5129), + [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5129), + [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5318), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(795), + [6649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5127), + [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5126), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5125), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5124), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4144), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5123), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5121), + [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3630), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3631), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3632), + [6679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3633), + [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5120), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5118), + [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5117), + [6691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(895), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(895), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(510), + [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3495), + [6841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4130), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4131), + [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4032), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5388), + [6853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5383), + [6856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4727), + [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6706), + [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(617), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(616), + [6868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4748), + [6871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4751), + [6874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4754), + [6877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4755), + [6880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4756), + [6883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4760), + [6886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4771), + [6889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4790), + [6892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(748), + [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5), + [6898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(8), + [6901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), + [6904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4827), + [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4831), + [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4841), + [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3576), + [6916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4859), + [6919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4870), + [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4881), + [6925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4884), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4887), + [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4887), + [6934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5354), + [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(873), + [6940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4888), + [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4896), + [6946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4897), + [6949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4898), + [6952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4135), + [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4903), + [6958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4914), + [6961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3732), + [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3777), + [6967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3778), + [6970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3780), + [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4932), + [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4933), + [6979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4944), + [6982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(871), + [6985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(871), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(538), + [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2172), + [7268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4137), + [7271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4138), + [7274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4043), + [7277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5368), + [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5371), + [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4557), + [7286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6728), + [7289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(301), + [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(300), + [7295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4556), + [7298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4555), + [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4553), + [7304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4552), + [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4551), + [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4550), + [7313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4549), + [7316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4548), + [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(746), + [7322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(43), + [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(42), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(147), + [7331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4538), + [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4537), + [7337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4536), + [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3572), + [7343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4535), + [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4534), + [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4533), + [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4532), + [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4531), + [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4531), + [7361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5413), + [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1005), + [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4528), + [7370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4527), + [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4524), + [7376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4523), + [7379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4142), + [7382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4522), + [7385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4520), + [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3680), + [7391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3676), + [7394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3675), + [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3674), + [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4519), + [7403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4517), + [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4516), + [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1001), + [7412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1001), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(554), + [7458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3465), + [7461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4141), + [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4139), + [7467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4041), + [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5373), + [7473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5374), + [7476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5113), + [7479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6713), + [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(514), + [7485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(513), + [7488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5112), + [7491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5109), + [7494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5106), + [7497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5105), + [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5104), + [7503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5103), + [7506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5102), + [7509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5101), + [7512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(736), + [7515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(41), + [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(44), + [7521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(169), + [7524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4372), + [7527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5096), + [7530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5095), + [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3599), + [7536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5094), + [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5092), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5091), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5090), + [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5089), + [7551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5089), + [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5327), + [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(887), + [7560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5087), + [7563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5086), + [7566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5085), + [7569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5084), + [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4136), + [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5083), + [7578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5082), + [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3696), + [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3697), + [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3698), + [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3699), + [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5081), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5080), + [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5079), + [7602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(987), + [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(987), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(622), + [7897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2254), + [7900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4146), + [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4148), + [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4054), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5364), + [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5363), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4513), + [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6729), + [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(288), + [7924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(287), + [7927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4512), + [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4511), + [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4509), + [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4508), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4507), + [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4506), + [7945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4505), + [7948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4503), + [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(744), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(39), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(164), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4498), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4497), + [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4496), + [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3603), + [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4495), + [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4494), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4493), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4492), + [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4491), + [7990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4491), + [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5418), + [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1002), + [7999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4489), + [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4488), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4485), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4484), + [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4153), + [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4482), + [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4481), + [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3649), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3648), + [8026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3647), + [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3646), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4480), + [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4479), + [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4477), + [8041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(995), + [8044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(995), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(629), + [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2336), + [8267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4165), + [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4167), + [8273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3990), + [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5351), + [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5350), + [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4470), + [8285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6730), + [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(272), + [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(271), + [8294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4467), + [8297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4466), + [8300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4465), + [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4464), + [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4463), + [8309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4462), + [8312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4461), + [8315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4460), + [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(743), + [8321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(37), + [8324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), + [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(162), + [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4455), + [8333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4453), + [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4452), + [8339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3600), + [8342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4451), + [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4450), + [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4449), + [8351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4448), + [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4447), + [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4447), + [8360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5426), + [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(996), + [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4445), + [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4444), + [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4443), + [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4442), + [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4171), + [8381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4441), + [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4440), + [8387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3839), + [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3766), + [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3791), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3798), + [8399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4438), + [8402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4437), + [8405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4436), + [8408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(991), + [8411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(991), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(635), + [8531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2418), + [8534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4173), + [8537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4174), + [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3967), + [8543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5341), + [8546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5340), + [8549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4434), + [8552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6731), + [8555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(256), + [8558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(255), + [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4433), + [8564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4432), + [8567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4431), + [8570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4430), + [8573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4429), + [8576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4428), + [8579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4427), + [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4426), + [8585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(741), + [8588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(34), + [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(33), + [8594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(161), + [8597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4423), + [8600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4422), + [8603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4421), + [8606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3590), + [8609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4420), + [8612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4419), + [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4418), + [8618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4417), + [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4416), + [8624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4416), + [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5433), + [8630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(992), + [8633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4414), + [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4413), + [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4412), + [8642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4411), + [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4175), + [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4410), + [8651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4409), + [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3616), + [8657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3634), + [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3660), + [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3729), + [8666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4408), + [8669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4407), + [8672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4404), + [8675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(986), + [8678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(986), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [8789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(639), + [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2500), + [8795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4180), + [8798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4182), + [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4059), + [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5332), + [8807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5331), + [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4402), + [8813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6732), + [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(242), + [8819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(241), + [8822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4401), + [8825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4400), + [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4399), + [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4398), + [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4397), + [8837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4396), + [8840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4395), + [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4392), + [8846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(739), + [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), + [8852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), + [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(159), + [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4388), + [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4387), + [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4386), + [8867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3606), + [8870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4385), + [8873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4384), + [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4383), + [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4382), + [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4381), + [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4381), + [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5442), + [8891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(988), + [8894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4379), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4378), + [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4377), + [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4376), + [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4156), + [8909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4375), + [8912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4374), + [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3627), + [8918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3628), + [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3629), + [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3635), + [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4907), + [8930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4454), + [8933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4458), + [8936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(982), + [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(982), + [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(640), + [8945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2000), + [8948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4100), + [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4101), + [8954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3981), + [8957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5377), + [8960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5370), + [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4801), + [8966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(6621), + [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(630), + [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(230), + [8975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5214), + [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5209), + [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5033), + [8984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5032), + [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4391), + [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4824), + [8993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4823), + [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4813), + [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(745), + [9002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(21), + [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), + [9008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(156), + [9011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4671), + [9014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4667), + [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4661), + [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3573), + [9023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4518), + [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4515), + [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4389), + [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4390), + [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4546), + [9038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4546), + [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(5431), + [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(951), + [9047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4425), + [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4456), + [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4457), + [9056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4459), + [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4096), + [9062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4501), + [9065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4502), + [9068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3692), + [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3693), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3783), + [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3703), + [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4580), + [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4582), + [9086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(4626), + [9089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(934), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(934), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(643), + [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2582), + [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4149), + [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4095), + [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4051), + [9214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5322), + [9217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5321), + [9220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4473), + [9223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6733), + [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(229), + [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(228), + [9232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4475), + [9235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4476), + [9238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4478), + [9241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4483), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4486), + [9247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4500), + [9250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4504), + [9253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4510), + [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(728), + [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), + [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(27), + [9265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(158), + [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4525), + [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4526), + [9274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4529), + [9277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3604), + [9280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4539), + [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4540), + [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4541), + [9289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4439), + [9292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4554), + [9295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4554), + [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5407), + [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(983), + [9304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4560), + [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4579), + [9310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4581), + [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4593), + [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4132), + [9319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4596), + [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4600), + [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3658), + [9328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3659), + [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3661), + [9334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3667), + [9337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4610), + [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4611), + [9343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4612), + [9346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(977), + [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(977), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(647), + [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2664), + [9464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4170), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4183), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4035), + [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5305), + [9476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5304), + [9479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4618), + [9482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6734), + [9485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(215), + [9488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(214), + [9491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4621), + [9494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4622), + [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4625), + [9500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4627), + [9503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4638), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4641), + [9509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4652), + [9512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4660), + [9515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(735), + [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), + [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(24), + [9524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(153), + [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4547), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4681), + [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4682), + [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3598), + [9539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4687), + [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4689), + [9545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4696), + [9548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4704), + [9551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4705), + [9554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4705), + [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5378), + [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(978), + [9563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4723), + [9566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4738), + [9569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4742), + [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4746), + [9575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4181), + [9578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4749), + [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4752), + [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3705), + [9587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3706), + [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3708), + [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3714), + [9596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4753), + [9599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4757), + [9602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4758), + [9605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(973), + [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(973), + [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(648), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2690), + [9617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4128), + [9620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4126), + [9623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4016), + [9626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5393), + [9629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5396), + [9632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5076), + [9635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6714), + [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(501), + [9641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(500), + [9644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5075), + [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5074), + [9650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5073), + [9653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5072), + [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5071), + [9659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5070), + [9662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5069), + [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5068), + [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(738), + [9671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), + [9674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(50), + [9677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(173), + [9680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5066), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5065), + [9686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5064), + [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3594), + [9692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5063), + [9695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5062), + [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5061), + [9701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5060), + [9704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5059), + [9707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5059), + [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5329), + [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(979), + [9716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5057), + [9719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5056), + [9722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5054), + [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5053), + [9728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4119), + [9731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5052), + [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5050), + [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3767), + [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3768), + [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3769), + [9746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3770), + [9749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5049), + [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5048), + [9755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5047), + [9758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1078), + [9761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1078), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [9868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(651), + [9871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2746), + [9874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4169), + [9877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4168), + [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4025), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5294), + [9886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5293), + [9889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4762), + [9892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6735), + [9895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(199), + [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(198), + [9901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4763), + [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4767), + [9907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4780), + [9910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4788), + [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4794), + [9916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4676), + [9919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4811), + [9922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4812), + [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(734), + [9928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(18), + [9931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), + [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(167), + [9937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4828), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4838), + [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4865), + [9946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3596), + [9949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4880), + [9952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4889), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4890), + [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4894), + [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4895), + [9964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4895), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5352), + [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(974), + [9973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4899), + [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4900), + [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4902), + [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4909), + [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4166), + [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4809), + [9991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4945), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3744), + [9997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3745), + [10000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3747), + [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3748), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4951), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4955), + [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4965), + [10015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(969), + [10018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(969), + [10021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(652), + [10024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2828), + [10027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4152), + [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4151), + [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4012), + [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5323), + [10039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5324), + [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4973), + [10045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6736), + [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(187), + [10051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(186), + [10054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4980), + [10057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5007), + [10060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5015), + [10063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5018), + [10066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5022), + [10069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5026), + [10072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5027), + [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5029), + [10078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(732), + [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(15), + [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(14), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(150), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5036), + [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5037), + [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5044), + [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3592), + [10102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5051), + [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5055), + [10108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4936), + [10111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5078), + [10114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5093), + [10117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5093), + [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5326), + [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(970), + [10126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5098), + [10129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5099), + [10132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5107), + [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5108), + [10138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4150), + [10141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5115), + [10144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5067), + [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3792), + [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3799), + [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3800), + [10156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3802), + [10159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5119), + [10162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5122), + [10165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5138), + [10168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(963), + [10171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(963), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(654), + [10179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2910), + [10182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4125), + [10185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4122), + [10188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4002), + [10191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5394), + [10194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5395), + [10197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5158), + [10200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6737), + [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(267), + [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(373), + [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5159), + [10212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5164), + [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5166), + [10218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5179), + [10221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5183), + [10224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5186), + [10227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5116), + [10230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5196), + [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(731), + [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(12), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(9), + [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(165), + [10245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5220), + [10248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5235), + [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5239), + [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3589), + [10257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5246), + [10260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5249), + [10263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5250), + [10266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5254), + [10269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5257), + [10272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5257), + [10275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5366), + [10278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(964), + [10281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5285), + [10284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5266), + [10287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5204), + [10290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5178), + [10293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4113), + [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5168), + [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5162), + [10302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3825), + [10305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3826), + [10308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3828), + [10311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3830), + [10314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5149), + [10317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5148), + [10320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5193), + [10323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(957), + [10326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(957), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [10335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(657), + [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3074), + [10341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4097), + [10344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4098), + [10347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3977), + [10350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5415), + [10353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5414), + [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4605), + [10359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6739), + [10362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(562), + [10365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(656), + [10368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4592), + [10371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4570), + [10374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4559), + [10377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4558), + [10380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4545), + [10383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4544), + [10386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4542), + [10389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4530), + [10392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(729), + [10395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4), + [10398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3), + [10401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(180), + [10404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4514), + [10407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4499), + [10410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4490), + [10413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3582), + [10416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4487), + [10419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4474), + [10422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4471), + [10425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4469), + [10428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4446), + [10431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4446), + [10434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(5427), + [10437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(952), + [10440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4435), + [10443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4424), + [10446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4415), + [10449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4406), + [10452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4099), + [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4405), + [10458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4403), + [10461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3915), + [10464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3916), + [10467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3918), + [10470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3919), + [10473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4394), + [10476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4393), + [10479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(4380), + [10482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(947), + [10485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(947), + [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [10490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), + [10498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [10504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), + [10536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), + [10538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(684), + [10541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(684), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [10556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(689), + [10559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(689), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [10568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(694), + [10571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(694), + [10574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), + [10577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(695), + [10580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(696), + [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(696), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [10588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(701), + [10591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(701), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [10598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(704), + [10601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(704), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [10608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(709), + [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(709), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [10618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(711), + [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(711), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [10628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(714), + [10631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(714), + [10634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(716), + [10637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(716), + [10640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(717), + [10643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(717), + [10646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(718), + [10649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(718), + [10652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(719), + [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(719), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [10674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), + [10678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), + [10680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), + [10682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), + [10684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), + [10686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), + [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), + [10690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), + [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), + [10694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), + [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), + [10698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), + [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), + [10702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), + [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [10706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 2), + [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 2), + [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [10714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), + [10718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 2), + [10722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 2), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), + [10726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), + [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 2), + [10730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 2), + [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 2), + [10734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 2), + [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 2), + [10738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 2), + [10740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 2), + [10742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 2), + [10744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_envoy, 1), + [10746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_envoy, 1), + [10748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), + [10750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), + [10752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), + [10754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), + [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), + [10758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), + [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), + [10762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), + [10764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), + [10766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), + [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), + [10770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), + [10772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_authorization, 1), + [10774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_authorization, 1), + [10776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), + [10778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), + [10780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), + [10782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), + [10784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), + [10786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), + [10788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), + [10790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), + [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), + [10794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), + [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), + [10798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), + [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), + [10802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), + [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), + [10806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), + [10808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), + [10810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), + [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), + [10814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), + [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), + [10818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), + [10820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), + [10822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), + [10824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), + [10826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), + [10828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), + [10830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), + [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), + [10834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), + [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), + [10838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), + [10844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), + [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), + [10848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), + [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), + [10852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), + [10854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), + [10856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), + [10858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__envoy_error, 3), + [10860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__envoy_error, 3), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cannot, 3), + [10864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cannot, 3), + [10866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__canany, 3), + [10868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__canany, 3), + [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__feature, 3), + [10872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__feature, 3), + [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), + [10876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), + [10878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), + [10880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), + [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), + [10884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), + [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), + [10888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), + [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), + [10892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), + [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), + [10896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), + [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setup, 3), + [10900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setup, 3), + [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__task, 3), + [10904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__task, 3), + [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__story, 3), + [10908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__story, 3), + [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__before, 3), + [10912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__before, 3), + [10914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__after, 3), + [10916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__after, 3), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__success, 3), + [10924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__success, 3), + [10926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__finished, 3), + [10928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__finished, 3), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [10932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), + [10934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), + [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), + [10938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), + [10940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), + [10942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), + [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 4, .production_id = 2), + [10946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 4, .production_id = 2), + [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 4, .production_id = 3), + [10950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 4, .production_id = 3), + [10952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), + [10954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), + [10956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), + [10958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), + [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 2), + [10962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 2), + [10964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 5, .production_id = 4), + [10966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 5, .production_id = 4), + [10968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), + [10970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), + [10972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 6, .production_id = 5), + [10974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 6, .production_id = 5), + [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inlineSection, 6, .production_id = 6), + [10978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inlineSection, 6, .production_id = 6), + [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 5, .production_id = 5), + [10982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 5, .production_id = 5), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), + [10986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), + [10988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(861), + [10991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(861), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), + [11002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [11006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__can, 3), + [11008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__can, 3), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [11014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(920), + [11017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(920), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [11024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(938), + [11027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(938), + [11030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(939), + [11033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(939), + [11036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), + [11039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(940), + [11042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(941), + [11045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(941), + [11048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(942), + [11051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(942), + [11054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(943), + [11057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(943), + [11060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), + [11063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(944), + [11066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(945), + [11069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(945), + [11072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(946), + [11075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(946), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [11082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(948), + [11085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(948), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [11092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(950), + [11095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(950), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [11102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(956), + [11105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(956), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [11174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1003), + [11177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1003), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [11192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1150), + [11195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1150), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [11206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1238), + [11209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1238), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [11216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1537), + [11219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1537), + [11222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1704), + [11225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1704), + [11228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1787), + [11231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1787), + [11234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1870), + [11237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(1870), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [11316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), + [11318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5325), + [11321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4121), + [11324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4121), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [11459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5346), + [11462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4084), + [11465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4084), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [11720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5295), + [11723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4074), + [11726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4074), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [11989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5299), + [11992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4102), + [11995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4102), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [12078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(5424), + [12081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4178), + [12084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__before_repeat1, 2), SHIFT_REPEAT(4178), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [12169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [12181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [12383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4067), + [12386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4067), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [12391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [12415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_only, 1), + [12417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [12429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4079), + [12432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4079), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [12483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [12509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4114), + [12512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4114), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [12521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4118), + [12524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4118), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [12549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4129), + [12552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4129), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [12575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4140), + [12578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4140), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [12643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4172), + [12646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4172), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [12659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [12677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4186), + [12680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4186), + [12683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4187), + [12686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4187), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [12691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [12693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [12699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [12701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [12705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4194), + [12708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4194), + [12711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4195), + [12714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_php_only_repeat1, 2), SHIFT_REPEAT(4195), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [12721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [12723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [12725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [12727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [12729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [12731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [12741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [12745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [12755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [12757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [12763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [12767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [12771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [12773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), + [12775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(4971), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [12782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__notification, 2), + [12784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__notification, 2), + [12786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [12792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [12798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [12818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [12828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [12832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [12834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(4543), + [12837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [12841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [12843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [12845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [12847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [12859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [12861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [12863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [12865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [12881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [12885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [12887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [12891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [12895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [12901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [12907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [12915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [12917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [12921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [12927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [12929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [12931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [12937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [12941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [12947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [12949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [12953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [12955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__text_with_parenthesis_repeat1, 2), SHIFT_REPEAT(4961), + [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [12960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [12972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [12974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [12976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [12984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [12992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [12994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [12996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [12998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [13000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [13002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [13012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [13018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [13020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [13022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [13032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [13034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [13042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [13048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [13126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 1), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [13132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), + [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [13136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [13138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), + [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 2), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [13162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), + [13164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_parameter, 3), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [13248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 3), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [13254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_with_parenthesis, 4), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [14912] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..d210325 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; @@ -140,7 +139,8 @@ struct TSLanguage { lexer->advance(lexer, skip); \ start: \ skip = false; \ - lookahead = lexer->lookahead; + lookahead = lexer->lookahead; \ + eof = lexer->eof(lexer); #define ADVANCE(state_value) \ { \ @@ -166,7 +166,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 +176,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +184,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} From ab9f9c767a7b83ef5a4156da18bdf5c629b53e54 Mon Sep 17 00:00:00 2001 From: Caleb White Date: Tue, 5 Dec 2023 19:28:32 -0600 Subject: [PATCH 2/2] Move tests under `test` --- {corpus => test/corpus}/attributes.txt | 0 {corpus => test/corpus}/comment.txt | 0 {corpus => test/corpus}/conditionals.txt | 0 {corpus => test/corpus}/conflicts.txt | 0 {corpus => test/corpus}/envoy.txt | 0 {corpus => test/corpus}/inline-directives.txt | 0 {corpus => test/corpus}/keywords.txt | 0 {corpus => test/corpus}/livewire.txt | 0 {corpus => test/corpus}/loops.txt | 0 {corpus => test/corpus}/nested-directives.txt | 0 {corpus => test/corpus}/php-statements.txt | 0 {corpus => test/corpus}/stacks.txt | 0 {corpus => test/corpus}/switch-statements.txt | 0 13 files changed, 0 insertions(+), 0 deletions(-) rename {corpus => test/corpus}/attributes.txt (100%) rename {corpus => test/corpus}/comment.txt (100%) rename {corpus => test/corpus}/conditionals.txt (100%) rename {corpus => test/corpus}/conflicts.txt (100%) rename {corpus => test/corpus}/envoy.txt (100%) rename {corpus => test/corpus}/inline-directives.txt (100%) rename {corpus => test/corpus}/keywords.txt (100%) rename {corpus => test/corpus}/livewire.txt (100%) rename {corpus => test/corpus}/loops.txt (100%) rename {corpus => test/corpus}/nested-directives.txt (100%) rename {corpus => test/corpus}/php-statements.txt (100%) rename {corpus => test/corpus}/stacks.txt (100%) rename {corpus => test/corpus}/switch-statements.txt (100%) diff --git a/corpus/attributes.txt b/test/corpus/attributes.txt similarity index 100% rename from corpus/attributes.txt rename to test/corpus/attributes.txt diff --git a/corpus/comment.txt b/test/corpus/comment.txt similarity index 100% rename from corpus/comment.txt rename to test/corpus/comment.txt diff --git a/corpus/conditionals.txt b/test/corpus/conditionals.txt similarity index 100% rename from corpus/conditionals.txt rename to test/corpus/conditionals.txt diff --git a/corpus/conflicts.txt b/test/corpus/conflicts.txt similarity index 100% rename from corpus/conflicts.txt rename to test/corpus/conflicts.txt diff --git a/corpus/envoy.txt b/test/corpus/envoy.txt similarity index 100% rename from corpus/envoy.txt rename to test/corpus/envoy.txt diff --git a/corpus/inline-directives.txt b/test/corpus/inline-directives.txt similarity index 100% rename from corpus/inline-directives.txt rename to test/corpus/inline-directives.txt diff --git a/corpus/keywords.txt b/test/corpus/keywords.txt similarity index 100% rename from corpus/keywords.txt rename to test/corpus/keywords.txt diff --git a/corpus/livewire.txt b/test/corpus/livewire.txt similarity index 100% rename from corpus/livewire.txt rename to test/corpus/livewire.txt diff --git a/corpus/loops.txt b/test/corpus/loops.txt similarity index 100% rename from corpus/loops.txt rename to test/corpus/loops.txt diff --git a/corpus/nested-directives.txt b/test/corpus/nested-directives.txt similarity index 100% rename from corpus/nested-directives.txt rename to test/corpus/nested-directives.txt diff --git a/corpus/php-statements.txt b/test/corpus/php-statements.txt similarity index 100% rename from corpus/php-statements.txt rename to test/corpus/php-statements.txt diff --git a/corpus/stacks.txt b/test/corpus/stacks.txt similarity index 100% rename from corpus/stacks.txt rename to test/corpus/stacks.txt diff --git a/corpus/switch-statements.txt b/test/corpus/switch-statements.txt similarity index 100% rename from corpus/switch-statements.txt rename to test/corpus/switch-statements.txt